����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.148.243.252 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/payflow/tests/ |
Upload File : |
<?php namespace Omnipay\Payflow; use Omnipay\Common\CreditCard; use Omnipay\Tests\GatewayTestCase; class ProGatewayTest extends GatewayTestCase { public function setUp() { parent::setUp(); $this->gateway = new ProGateway($this->getHttpClient(), $this->getHttpRequest()); $this->options = array( 'amount' => '10.00', 'card' => new CreditCard(array( 'firstName' => 'Example', 'lastName' => 'User', 'number' => '4111111111111111', 'expiryMonth' => '12', 'expiryYear' => '2020', 'cvv' => '123', )), ); } public function testAuthorizeSuccess() { $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->authorize($this->options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testAuthorizeError() { $this->setMockHttpResponse('PurchaseFailure.txt'); $response = $this->gateway->authorize($this->options)->send(); $this->assertFalse($response->isSuccessful()); $this->assertSame('User authentication failed', $response->getMessage()); } public function testCapture() { $options = array( 'amount' => '10.00', 'transactionReference' => 'abc123', ); $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->capture($options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testPurchaseSuccess() { $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->purchase($this->options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testReferencePurchaseSuccess() { $options = array( 'amount' => '10.00', 'cardReference' => 'abc123', ); $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->purchase($options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testReferencePurchaseWithCvvSuccess() { $options = array( 'amount' => '10.00', 'cardReference' => 'abc123', 'card' => new CreditCard(array( 'cvv' => '123', )), ); $this->setMockHttpResponse('PurchaseSuccess.txt'); $request = $this->gateway->purchase($options); $response = $request->send(); $this->assertArrayHasKey('CVV2', $request->getData()); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testPurchaseError() { $this->setMockHttpResponse('PurchaseFailure.txt'); $response = $this->gateway->purchase($this->options)->send(); $this->assertFalse($response->isSuccessful()); $this->assertSame('User authentication failed', $response->getMessage()); } public function testRefund() { $options = array( 'amount' => '10.00', 'transactionReference' => 'abc123', ); $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->refund($options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } public function testVoid() { $options = array( 'transactionReference' => 'abc123', ); $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->void($options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertEquals('A10A6AE7042E', $response->getTransactionReference()); } }