73 lines
2.6 KiB
PHP
73 lines
2.6 KiB
PHP
<?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());
|
|
}
|
|
}
|