42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\SagePay\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class SharedRefundRequestTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->request = new SharedRefundRequest($this->getHttpClient(), $this->getHttpRequest());
|
|
$this->request->initialize(
|
|
array(
|
|
'amount' => '12.00',
|
|
'transactionReference' => '{"SecurityKey":"JEUPDN1N7E","TxAuthNo":"4255","VPSTxId":"{F955C22E-F67B-4DA3-8EA3-6DAC68FA59D2}","VendorTxCode":"438791"}',
|
|
'testMode' => true,
|
|
)
|
|
);
|
|
}
|
|
|
|
public function testGetData()
|
|
{
|
|
$data = $this->request->getData();
|
|
|
|
$this->assertSame('REFUND', $data['TxType']);
|
|
$this->assertSame('12.00', $data['Amount']);
|
|
$this->assertSame('438791', $data['RelatedVendorTxCode']);
|
|
$this->assertSame('{F955C22E-F67B-4DA3-8EA3-6DAC68FA59D2}', $data['RelatedVPSTxId']);
|
|
$this->assertSame('JEUPDN1N7E', $data['RelatedSecurityKey']);
|
|
$this->assertSame('4255', $data['RelatedTxAuthNo']);
|
|
}
|
|
|
|
public function testGetEndpoint()
|
|
{
|
|
$url = $this->request->getEndpoint();
|
|
|
|
$this->assertSame('https://test.sagepay.com/gateway/service/refund.vsp', $url);
|
|
}
|
|
}
|