1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
from tests.test_helper import *
import base64
import json
import urllib
import datetime
import braintree
from braintree.util import Http
from base64 import b64decode
class TestClientTokenGenerate(unittest.TestCase):
def test_allows_client_token_version_to_be_specified(self):
client_token = ClientToken.generate({"version": 1})
version = json.loads(client_token)["version"]
self.assertEqual(version, 1)
def test_error_in_generate_raises_value_error(self):
self.assertRaises(ValueError, ClientToken.generate, {
"customer_id": "i_am_not_a_real_customer"
})
class TestClientToken(unittest.TestCase):
def test_is_authorized_with_authorization_fingerprint(self):
config = Configuration.instantiate()
client_token = TestHelper.generate_decoded_client_token()
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
http = ClientApiHttp(config, {
"authorization_fingerprint": authorization_fingerprint,
"shared_customer_identifier": "fake_identifier",
"shared_customer_identifier_type": "testing"
})
status_code, response = http.get_cards()
self.assertEqual(status_code, 200)
def test_client_token_version_defaults_to_two(self):
client_token = TestHelper.generate_decoded_client_token()
version = json.loads(client_token)["version"]
self.assertEqual(version, 2)
def test_can_pass_verify_card(self):
config = Configuration.instantiate()
result = braintree.Customer.create()
customer_id = result.customer.id
client_token = TestHelper.generate_decoded_client_token({
"customer_id": customer_id,
"options": {
"verify_card": True
}
})
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
http = ClientApiHttp(config, {
"authorization_fingerprint": authorization_fingerprint,
"shared_customer_identifier": "fake_identifier",
"shared_customer_identifier_type": "testing"
})
status_code, response = http.add_card({
"credit_card": {
"number": "4000111111111115",
"expiration_month": "11",
"expiration_year": "2099",
}
})
self.assertEqual(status_code, 422)
def test_can_pass_make_default(self):
config = Configuration.instantiate()
result = braintree.Customer.create()
customer_id = result.customer.id
client_token = TestHelper.generate_decoded_client_token({
"customer_id": customer_id,
"options": {
"make_default": True
}
})
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
http = ClientApiHttp(config, {
"authorization_fingerprint": authorization_fingerprint,
"shared_customer_identifier": "fake_identifier",
"shared_customer_identifier_type": "testing"
})
status_code, response = http.add_card({
"credit_card": {
"number": "4111111111111111",
"expiration_month": "11",
"expiration_year": "2099",
}
})
self.assertEqual(status_code, 201)
status_code, response = http.add_card({
"credit_card": {
"number": "4005519200000004",
"expiration_month": "11",
"expiration_year": "2099",
}
})
self.assertEqual(status_code, 201)
customer = braintree.Customer.find(customer_id)
self.assertEqual(len(customer.credit_cards), 2)
for credit_card in customer.credit_cards:
if credit_card.bin == "400551":
self.assertTrue(credit_card.default)
def test_can_pass_fail_on_duplicate_payment_method(self):
config = Configuration.instantiate()
result = braintree.Customer.create()
customer_id = result.customer.id
client_token = TestHelper.generate_decoded_client_token({
"customer_id": customer_id,
})
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
http = ClientApiHttp(config, {
"authorization_fingerprint": authorization_fingerprint,
"shared_customer_identifier": "fake_identifier",
"shared_customer_identifier_type": "testing"
})
status_code, response = http.add_card({
"credit_card": {
"number": "4111111111111111",
"expiration_month": "11",
"expiration_year": "2099",
}
})
self.assertEqual(status_code, 201)
client_token = TestHelper.generate_decoded_client_token({
"customer_id": customer_id,
"options": {
"fail_on_duplicate_payment_method": True
}
})
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
http.set_authorization_fingerprint(authorization_fingerprint)
status_code, response = http.add_card({
"credit_card": {
"number": "4111111111111111",
"expiration_month": "11",
"expiration_year": "2099",
}
})
self.assertEqual(status_code, 422)
customer = braintree.Customer.find(customer_id)
self.assertEqual(len(customer.credit_cards), 1)
def test_can_pass_sepa_params(self):
result = braintree.Customer.create()
customer_id = result.customer.id
client_token = TestHelper.generate_decoded_client_token({
"customer_id": customer_id,
"sepa_mandate_acceptance_location": "Hamburg, Germany",
"sepa_mandate_type": SEPABankAccount.MandateType.Business
})
authorization_fingerprint = json.loads(client_token)["authorizationFingerprint"]
self.assertNotEqual(authorization_fingerprint, None)
def test_can_pass_merchant_account_id(self):
client_token = TestHelper.generate_decoded_client_token({
"merchant_account_id": "my_merchant_account"
})
merchant_account_id = json.loads(client_token)["merchantAccountId"]
self.assertEqual(merchant_account_id, "my_merchant_account")
def test_required_data_cannot_be_overridden(self):
try:
client_token = TestHelper.generate_decoded_client_token({
"merchant_id": "1234"
})
self.fail("Should have raised exception!")
except Exception as e:
self.assertEqual("'Invalid keys: merchant_id'", str(e))
|