58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Buckaroo\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class PurchaseRequestTest extends TestCase
|
|
{
|
|
/**
|
|
* @var PurchaseRequest
|
|
*/
|
|
protected $request;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->request = new PurchaseRequest($this->getHttpClient(), $this->getHttpRequest());
|
|
$this->request->initialize(
|
|
array(
|
|
'websiteKey' => 'web',
|
|
'secretKey' => 'secret',
|
|
'amount' => '12.00',
|
|
'returnUrl' => 'https://www.example.com/return',
|
|
)
|
|
);
|
|
}
|
|
|
|
public function testGetData()
|
|
{
|
|
$this->request->initialize(array(
|
|
'websiteKey' => 'web',
|
|
'secretKey' => 'secret',
|
|
'amount' => '12.00',
|
|
'currency' => 'EUR',
|
|
'testMode' => true,
|
|
'transactionId' => 13,
|
|
'returnUrl' => 'https://www.example.com/return',
|
|
'cancelUrl' => 'https://www.example.com/cancel',
|
|
'culture' => 'nl-NL',
|
|
'paymentMethod' => 'mastercard',
|
|
'issuer' => 'RABONL2U',
|
|
));
|
|
|
|
$data = $this->request->getData();
|
|
|
|
$this->assertSame('web', $data['Brq_websitekey']);
|
|
$this->assertSame('12.00', $data['Brq_amount']);
|
|
$this->assertSame('EUR', $data['Brq_currency']);
|
|
$this->assertSame(13, $data['Brq_invoicenumber']);
|
|
$this->assertSame('https://www.example.com/return', $data['Brq_return']);
|
|
$this->assertSame('https://www.example.com/cancel', $data['Brq_returncancel']);
|
|
$this->assertSame('nl-NL', $data['Brq_culture']);
|
|
|
|
$this->assertNotContains('Brq_payment_method', $data);
|
|
$this->assertNotContains('Brq_service_ideal_issuer', $data);
|
|
$this->assertNotContains('Brq_requestedservices', $data);
|
|
}
|
|
}
|