/
home
/
desid573
/
public_html
/
app
/
braintree
/
tests
/
integration
/
Error
/
/home/desid573/public_html/app/braintree/tests/integration/Error
mkdir
upload
Name
Size
Mode
Actions
ErrorCollectionTest.php
3551
0644
edit
dl
rm
ValidationErrorCollectionTest.php
2903
0644
edit
dl
rm
Edit:
/home/desid573/public_html/app/braintree/tests/integration/Error/ValidationErrorCollectionTest.php
(2903B)
<?php namespace Test\Integration\Error; require_once dirname(dirname(__DIR__)) . '/Setup.php'; use Test\Setup; use Braintree; class ValidationErrorCollectionTest extends Setup { public function mapValidationErrorsToCodes($validationErrors) { $codes = array_map(create_function('$validationError', 'return $validationError->code;'), $validationErrors); sort($codes); return $codes; } public function test_shallowAll_givesAllErrorsShallowly() { $result = Braintree\Customer::create([ 'email' => 'invalid', 'creditCard' => [ 'number' => '1234123412341234', 'expirationDate' => 'invalid', 'billingAddress' => [ 'countryName' => 'invalid' ] ] ]); $this->assertEquals([], $result->errors->shallowAll()); $expectedCustomerErrors = [Braintree\Error\Codes::CUSTOMER_EMAIL_IS_INVALID]; $actualCustomerErrors = $result->errors->forKey('customer')->shallowAll(); $this->assertEquals($expectedCustomerErrors, self::mapValidationErrorsToCodes($actualCustomerErrors)); $expectedCreditCardErrors = [ Braintree\Error\Codes::CREDIT_CARD_EXPIRATION_DATE_IS_INVALID, Braintree\Error\Codes::CREDIT_CARD_NUMBER_IS_INVALID, ]; $actualCreditCardErrors = $result->errors->forKey('customer')->forKey('creditCard')->shallowAll(); $this->assertEquals($expectedCreditCardErrors, self::mapValidationErrorsToCodes($actualCreditCardErrors)); } public function test_deepAll_givesAllErrorsDeeply() { $result = Braintree\Customer::create([ 'email' => 'invalid', 'creditCard' => [ 'number' => '1234123412341234', 'expirationDate' => 'invalid', 'billingAddress' => [ 'countryName' => 'invalid' ] ] ]); $expectedErrors = [ Braintree\Error\Codes::CUSTOMER_EMAIL_IS_INVALID, Braintree\Error\Codes::CREDIT_CARD_EXPIRATION_DATE_IS_INVALID, Braintree\Error\Codes::CREDIT_CARD_NUMBER_IS_INVALID, Braintree\Error\Codes::ADDRESS_COUNTRY_NAME_IS_NOT_ACCEPTED, ]; $actualErrors = $result->errors->deepAll(); $this->assertEquals($expectedErrors, self::mapValidationErrorsToCodes($actualErrors)); $expectedErrors = [ Braintree\Error\Codes::CREDIT_CARD_EXPIRATION_DATE_IS_INVALID, Braintree\Error\Codes::CREDIT_CARD_NUMBER_IS_INVALID, Braintree\Error\Codes::ADDRESS_COUNTRY_NAME_IS_NOT_ACCEPTED, ]; $actualErrors = $result->errors->forKey('customer')->forKey('creditCard')->deepAll(); $this->assertEquals($expectedErrors, self::mapValidationErrorsToCodes($actualErrors)); } }
Save
cmd:
run