50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Buckaroo;
|
|
|
|
use Omnipay\Buckaroo\Message\IdealPurchaseRequest;
|
|
use Omnipay\Tests\GatewayTestCase;
|
|
|
|
class IdealGatewayTest extends GatewayTestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->gateway = new IdealGateway($this->getHttpClient(), $this->getHttpRequest());
|
|
}
|
|
|
|
public function testPurchase()
|
|
{
|
|
$request = $this->gateway->purchase(array('amount' => '10.00'));
|
|
|
|
$this->assertInstanceOf('Omnipay\Buckaroo\Message\IdealPurchaseRequest', $request);
|
|
$this->assertSame('10.00', $request->getAmount());
|
|
}
|
|
|
|
public function testIdealIssuerChosen()
|
|
{
|
|
/** @var IdealPurchaseRequest $request */
|
|
$request = $this->gateway->purchase(array(
|
|
'amount' => '10.00',
|
|
'returnUrl' => 'https://www.example.com/return',
|
|
'issuer' => 'TRIONL2U'
|
|
));
|
|
|
|
$data = $request->getData();
|
|
|
|
$this->assertSame('TRIONL2U', $data['Brq_service_ideal_issuer']);
|
|
}
|
|
|
|
public function testIdealIssuerIsNotRequired()
|
|
{
|
|
/** @var IdealPurchaseRequest $request */
|
|
$request = $this->gateway->purchase(array(
|
|
'amount' => '10.00',
|
|
'returnUrl' => 'https://www.example.com/return',
|
|
));
|
|
|
|
$this->assertNotContains('Brq_service_ideal_issuer', $request->getData());
|
|
}
|
|
}
|