1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
from tests.test_helper import *
class TestClientToken(unittest.TestCase):
def test_credit_card_options_require_customer_id(self):
for option in ["fail_on_duplicate_payment_method", "fail_on_duplicate_payment_method_for_customer", "make_default", "verify_card"]:
with self.assertRaisesRegex(InvalidSignatureError, option):
ClientToken.generate({
"options": {option: True}
})
def test_generate_delegates_client_token_generation_to_gateway(self):
class MockGateway:
def generate(self, _):
return "mock_client_token"
mock_gateway = MockGateway()
client_token = ClientToken.generate({}, mock_gateway)
self.assertEqual("mock_client_token", client_token)
|