Current Path : /var/www/storage/vendor/braintree/braintree_php/tests/integration/ |
Current File : /var/www/storage/vendor/braintree/braintree_php/tests/integration/PaymentMethodNonceTest.php |
<?php require_once realpath(dirname(__FILE__)) . '/../TestHelper.php'; require_once realpath(dirname(__FILE__)) . '/HttpClientApi.php'; class Braintree_PaymentMethodNonceTest extends PHPUnit_Framework_TestCase { function testCreate_fromPaymentMethodToken() { $customer = Braintree_Customer::createNoValidate(); $card = Braintree_CreditCard::create(array( 'customerId' => $customer->id, 'cardholderName' => 'Cardholder', 'number' => '5105105105105100', 'expirationDate' => '05/12' ))->creditCard; $result = Braintree_PaymentMethodNonce::create($card->token); $this->assertTrue($result->success); $this->assertNotNull($result->paymentMethodNonce); $this->assertNotNull($result->paymentMethodNonce->nonce); } function testCreate_fromNonExistentPaymentMethodToken() { $this->setExpectedException('Braintree_Exception_NotFound'); Braintree_PaymentMethodNonce::create('not_a_token'); } function testFind_exposesThreeDSecureInfo() { $nonce = Braintree_PaymentMethodNonce::find('threedsecurednonce'); $info = $nonce->threeDSecureInfo; $this->assertEquals('threedsecurednonce', $nonce->nonce); $this->assertEquals('CreditCard', $nonce->type); $this->assertEquals('Y', $info->enrolled); $this->assertEquals('authenticate_successful', $info->status); $this->assertTrue($info->liabilityShifted); $this->assertTrue($info->liabilityShiftPossible); } function testFind_exposesNullThreeDSecureInfoIfNoneExists() { $http = new Braintree_HttpClientApi(Braintree_Configuration::$global); $nonce = $http->nonce_for_new_card(array( "creditCard" => array( "number" => "4111111111111111", "expirationMonth" => "11", "expirationYear" => "2099" ) )); $foundNonce = Braintree_PaymentMethodNonce::find($nonce); $info = $foundNonce->threeDSecureInfo; $this->assertEquals($nonce, $foundNonce->nonce); $this->assertNull($info); } function testFind_nonExistantNonce() { $this->setExpectedException('Braintree_Exception_NotFound'); Braintree_PaymentMethodNonce::find('not_a_nonce'); } }