riainvoice/vendor_old/omnipay/buckaroo/tests/Message/CompletePurchaseResponseTest.php
2021-10-01 23:56:38 +05:30

37 lines
1.1 KiB
PHP

<?php
namespace Omnipay\Buckaroo\Message;
use Omnipay\Tests\TestCase;
class CompletePurchaseResponseTest extends TestCase
{
public function testSuccess()
{
$data = array(
'BRQ_STATUSCODE' => '190',
'BRQ_STATUSMESSAGE' => 'hi!',
'BRQ_PAYMENT' => '5',
'BRQ_INVOICENUMBER' => 'website-reference',
);
$response = new CompletePurchaseResponse($this->getMockRequest(), $data);
$this->assertTrue($response->isSuccessful());
$this->assertSame('190', $response->getCode());
$this->assertSame('hi!', $response->getMessage());
$this->assertSame('5', $response->getTransactionReference());
$this->assertSame('website-reference', $response->getTransactionId());
}
public function testEmpty()
{
$response = new CompletePurchaseResponse($this->getMockRequest(), array());
$this->assertFalse($response->isSuccessful());
$this->assertNull($response->getCode());
$this->assertNull($response->getMessage());
$this->assertNull($response->getTransactionReference());
}
}