riainvoice/vendor_old/omnipay/authorizenet/tests/Message/CIMCreateCardResponseTest.php
2021-10-01 23:56:38 +05:30

47 lines
1.7 KiB
PHP

<?php
namespace Omnipay\AuthorizeNet\Message;
use Omnipay\Tests\TestCase;
class CIMCreateCardResponseTest extends TestCase
{
/**
* @expectedException Omnipay\Common\Exception\InvalidResponseException
*/
public function testConstructEmpty()
{
new CIMCreateCardResponse($this->getMockRequest(), '');
}
public function testCreateCardSuccess()
{
$httpResponse = $this->getMockHttpResponse('CIMCreateCardSuccess.txt');
$response = new CIMCreateCardResponse($this->getMockRequest(), $httpResponse->getBody());
$this->assertTrue($response->isSuccessful());
$this->assertEquals('I00001', $response->getReasonCode());
$this->assertEquals("1", $response->getResultCode());
$this->assertEquals("Successful.", $response->getMessage());
$this->assertEquals('28972084', $response->getCustomerProfileId());
$this->assertEquals('26317840', $response->getCustomerPaymentProfileId());
}
public function testCreateCardFailure()
{
$httpResponse = $this->getMockHttpResponse('CIMCreateCardFailure.txt');
$response = new CIMCreateCardResponse($this->getMockRequest(), $httpResponse->getBody());
$this->assertFalse($response->isSuccessful());
$this->assertEquals('E00041', $response->getReasonCode());
$this->assertEquals("3", $response->getResultCode());
$this->assertEquals("One or more fields in the profile must contain a value.", $response->getMessage());
$this->assertNull($response->getCustomerProfileId());
$this->assertNull($response->getCustomerPaymentProfileId());
$this->assertNull($response->getCardReference());
}
}