����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.142.237.38 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/libraries/vendor/omnipay/2checkout/tests/ |
Upload File : |
<?php namespace Omnipay\TwoCheckout; use Omnipay\Tests\GatewayTestCase; use Omnipay\Common\CreditCard; class GatewayTest extends GatewayTestCase { public function setUp() { parent::setUp(); $this->gateway = new Gateway($this->getHttpClient(), $this->getHttpRequest()); $this->gateway->setAccountNumber('123456'); $this->gateway->setSecretWord('secret'); $this->options = array( 'amount' => '10.00', 'returnUrl' => 'https://www.example.com/return', ); } public function testPurchase() { $source = new CreditCard; $response = $this->gateway->purchase($this->options)->send(); $this->assertFalse($response->isSuccessful()); $this->assertTrue($response->isRedirect()); $this->assertNull($response->getTransactionReference()); $this->assertNull($response->getMessage()); $this->assertContains('https://www.2checkout.com/checkout/purchase?', $response->getRedirectUrl()); $this->assertSame('GET', $response->getRedirectMethod()); $this->assertNull($response->getRedirectData()); } /** * @expectedException Omnipay\Common\Exception\InvalidResponseException */ public function testCompletePurchaseError() { $this->getHttpRequest()->request->replace(array('order_number' => '5', 'key' => 'ZZZ')); $response = $this->gateway->completePurchase($this->options)->send(); } public function testCompletePurchaseSuccess() { $this->getHttpRequest()->request->replace( array( 'order_number' => '5', 'key' => md5('secret123456510.00'), ) ); $response = $this->gateway->completePurchase($this->options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertSame('5', $response->getTransactionReference()); $this->assertNull($response->getMessage()); } }