32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\AuthorizeNet\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class CIMRefundRequestTest extends TestCase
|
|
{
|
|
/** @var CIMRefundRequest */
|
|
protected $request;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->request = new CIMRefundRequest($this->getHttpClient(), $this->getHttpRequest());
|
|
$this->request->initialize(
|
|
array(
|
|
'transactionReference' => '{"approvalCode":"V7DO8Q","transId":"2220001612","cardReference":"{\"customerProfileId\":\"28972085\",\"customerPaymentProfileId\":\"26317841\",\"customerShippingAddressId\":\"27057151\"}"}',
|
|
'amount' => 12.00,
|
|
'description' => 'Test refund transaction'
|
|
)
|
|
);
|
|
}
|
|
|
|
public function testGetData()
|
|
{
|
|
$data = $this->request->getData();
|
|
$this->assertEquals('12.00', $data->transactionRequest->amount);
|
|
$this->assertEquals('28972085', $data->transactionRequest->profile->customerProfileId);
|
|
$this->assertEquals('26317841', $data->transactionRequest->profile->paymentProfile->paymentProfileId);
|
|
$this->assertEquals('2220001612', $data->transactionRequest->refTransId);
|
|
}
|
|
} |