97 lines
3.2 KiB
PHP
97 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Manual;
|
|
|
|
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' => 1000
|
|
);
|
|
}
|
|
|
|
public function testAuthorize()
|
|
{
|
|
$response = $this->gateway->authorize($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testCapture()
|
|
{
|
|
$response = $this->gateway->capture($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testVoid()
|
|
{
|
|
$response = $this->gateway->void($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testRefund()
|
|
{
|
|
$response = $this->gateway->refund($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testPurchase()
|
|
{
|
|
$response = $this->gateway->purchase($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testCompletePurchase()
|
|
{
|
|
$response = $this->gateway->completePurchase($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
public function testCompleteAuthorise()
|
|
{
|
|
$response = $this->gateway->completeAuthorise($this->options)->send();
|
|
|
|
$this->assertInstanceOf('\Omnipay\Manual\Message\Response', $response);
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
}
|