41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Coinbase\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class ResponseTest extends TestCase
|
|
{
|
|
public function testSuccess()
|
|
{
|
|
$httpResponse = $this->getMockHttpResponse('FetchTransactionSuccess.txt');
|
|
$response = new Response($this->getMockRequest(), $httpResponse->json());
|
|
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertSame('completed', $response->getMessage());
|
|
$this->assertSame('9XMWP4YG', $response->getTransactionReference());
|
|
}
|
|
|
|
public function testFailure()
|
|
{
|
|
$httpResponse = $this->getMockHttpResponse('FetchTransactionFailure.txt');
|
|
$response = new Response($this->getMockRequest(), $httpResponse->json());
|
|
|
|
$this->assertFalse($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertSame('Order not found with that id', $response->getMessage());
|
|
$this->assertNull($response->getTransactionReference());
|
|
}
|
|
|
|
public function testEmpty()
|
|
{
|
|
$response = new Response($this->getMockRequest(), array());
|
|
|
|
$this->assertFalse($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
}
|