58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php namespace Omnipay\MultiSafepay\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class RestFetchIssuersRequestTest extends TestCase
|
|
{
|
|
/**
|
|
* @var FetchIssuersRequest
|
|
*/
|
|
private $request;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->request = new RestFetchIssuersRequest(
|
|
$this->getHttpClient(),
|
|
$this->getHttpRequest()
|
|
);
|
|
|
|
$this->request->initialize(
|
|
array(
|
|
'api_key' => '123456789',
|
|
'paymentMethod' => 'IDEAL'
|
|
)
|
|
);
|
|
}
|
|
|
|
public function testSendSuccess()
|
|
{
|
|
$this->setMockHttpResponse('RestFetchIssuersSuccess.txt');
|
|
|
|
$response = $this->request->send();
|
|
|
|
$issuers = $response->getIssuers();
|
|
|
|
$this->assertContainsOnlyInstancesOf('Omnipay\Common\Issuer', $issuers);
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertInstanceOf('Omnipay\MultiSafepay\Message\RestFetchIssuersResponse', $response);
|
|
$this->assertInternalType('array', $issuers);
|
|
|
|
$this->assertNull($response->getTransactionReference());
|
|
$this->assertTrue($response->isSuccessful());
|
|
}
|
|
|
|
public function testIssuerNotFound()
|
|
{
|
|
$this->setMockHttpResponse('RestFetchIssuersFailure.txt');
|
|
|
|
$response = $this->request->send();
|
|
|
|
$this->assertEquals('Not found', $response->getMessage());
|
|
$this->assertEquals(404, $response->getCode());
|
|
$this->assertFalse($response->isRedirect());
|
|
|
|
$this->assertFalse($response->isSuccessful());
|
|
$this->assertInstanceOf('Omnipay\MultiSafepay\Message\RestFetchIssuersResponse', $response);
|
|
}
|
|
}
|