예제 #1
0
 function test_ClientTokenAuthorizesRequest()
 {
     $clientToken = Braintree_ClientToken::generate();
     $authorizationFingerprint = json_decode($clientToken)->authorizationFingerprint;
     $response = Braintree_HttpClientApi::get_cards(array("authorization_fingerprint" => $authorizationFingerprint, "shared_customer_identifier" => "fake_identifier", "shared_customer_identifier_type" => "testing"));
     $this->assertEquals(200, $response["status"]);
 }
예제 #2
0
 function test_ClientTokenAuthorizesRequest()
 {
     $clientToken = Braintree_TestHelper::decodedClientToken();
     $authorizationFingerprint = json_decode($clientToken)->authorizationFingerprint;
     $http = new Braintree_HttpClientApi(Braintree_Configuration::$global);
     $response = $http->get_cards(array("authorization_fingerprint" => $authorizationFingerprint, "shared_customer_identifier" => "fake_identifier", "shared_customer_identifier_type" => "testing"));
     $this->assertEquals(200, $response["status"]);
 }
예제 #3
0
 function testFromNonce_ReturnsErrorWhenNonceIsLocked()
 {
     $customer = Braintree_Customer::createNoValidate();
     $clientTokenOptions = array();
     $clientToken = json_decode(Braintree_TestHelper::decodedClientToken($clientTokenOptions));
     $sharedCustomerIdentifier = "fake_identifier_" . rand();
     $options = array("credit_card" => array("number" => "4009348888881881", "expirationMonth" => "11", "expirationYear" => "2099"), "share" => true);
     $options["authorization_fingerprint"] = $clientToken->authorizationFingerprint;
     $options["shared_customer_identifier"] = $sharedCustomerIdentifier;
     $options["shared_customer_identifier_type"] = "testing";
     $response = Braintree_HttpClientApi::post('/client_api/v1/payment_methods/credit_cards.json', json_encode($options));
     $this->assertEquals(201, $response["status"]);
     unset($options["credit_card"]);
     $response = Braintree_HttpClientApi::get_cards($options);
     $body = json_decode($response["body"]);
     $nonce = $body->paymentMethods[0]->nonce;
     $this->setExpectedException('Braintree_Exception_NotFound', "locked");
     Braintree_CreditCard::fromNonce($nonce);
 }