File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/dummy/tests/GatewayTest.php
Back
<?php namespace Omnipay\Dummy; use Omnipay\Tests\GatewayTestCase; class GatewayTest extends GatewayTestCase { public function setUp() { parent::setUp(); $this->gateway = new Gateway($this->getHttpClient(), $this->getHttpRequest()); $this->options = array( 'amount' => '10.00', 'card' => $this->getValidCard(), ); } public function testAuthorizeSuccess() { // card numbers ending in even number should be successful $this->options['card']['number'] = '4242424242424242'; $response = $this->gateway->authorize($this->options)->send(); $this->assertInstanceOf('\Omnipay\Dummy\Message\Response', $response); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertNotEmpty($response->getTransactionReference()); $this->assertSame('Success', $response->getMessage()); } public function testAuthorizeFailure() { // card numbers ending in odd number should be declined $this->options['card']['number'] = '4111111111111111'; $response = $this->gateway->authorize($this->options)->send(); $this->assertInstanceOf('\Omnipay\Dummy\Message\Response', $response); $this->assertFalse($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertNotEmpty($response->getTransactionReference()); $this->assertSame('Failure', $response->getMessage()); } public function testPurchaseSuccess() { // card numbers ending in even number should be successful $this->options['card']['number'] = '4242424242424242'; $response = $this->gateway->purchase($this->options)->send(); $this->assertInstanceOf('\Omnipay\Dummy\Message\Response', $response); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertNotEmpty($response->getTransactionReference()); $this->assertSame('Success', $response->getMessage()); } public function testPurcahseFailure() { // card numbers ending in odd number should be declined $this->options['card']['number'] = '4111111111111111'; $response = $this->gateway->purchase($this->options)->send(); $this->assertInstanceOf('\Omnipay\Dummy\Message\Response', $response); $this->assertFalse($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertNotEmpty($response->getTransactionReference()); $this->assertSame('Failure', $response->getMessage()); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.08 |
proxy
|
phpinfo
|
Settings