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
|
from tests.test_helper import *
import time
from braintree.test.nonces import Nonces
import braintree.test.venmo_sdk as venmo_sdk
class TestPayPalAccount(unittest.TestCase):
def test_find_returns_paypal_account(self):
customer_id = Customer.create().customer.id
result = PaymentMethod.create({
"customer_id": customer_id,
"payment_method_nonce": Nonces.PayPalFuturePayment
})
self.assertTrue(result.is_success)
found_account = PayPalAccount.find(result.payment_method.token)
self.assertNotEqual(None, found_account)
self.assertEquals(found_account.__class__, PayPalAccount)
self.assertEquals(found_account.token, result.payment_method.token)
self.assertNotEqual(None, found_account.image_url)
self.assertNotEqual(None, found_account.created_at)
self.assertNotEqual(None, found_account.updated_at)
def test_find_raises_on_not_found_token(self):
self.assertRaises(NotFoundError, PayPalAccount.find, "non-existant-token")
def test_find_will_not_return_credit_card(self):
credit_card = CreditCard.create({
"customer_id": Customer.create().customer.id,
"number": "4111111111111111",
"expiration_date": "12/2099"
}).credit_card
self.assertRaises(NotFoundError, PayPalAccount.find, credit_card.token)
def test_find_returns_subscriptions_associated_with_a_paypal_account(self):
customer_id = Customer.create().customer.id
payment_method_token = "paypal-account-" + str(int(time.time()))
nonce = Nonces.nonce_for_paypal_account({
"consent_code": "consent-code",
"token": payment_method_token
})
result = PaymentMethod.create({
"payment_method_nonce": nonce,
"customer_id": customer_id
})
self.assertTrue(result.is_success)
token = result.payment_method.token
subscription1 = Subscription.create({
"payment_method_token": token,
"plan_id": TestHelper.trialless_plan["id"]
}).subscription
subscription2 = Subscription.create({
"payment_method_token": token,
"plan_id": TestHelper.trialless_plan["id"]
}).subscription
paypal_account = PayPalAccount.find(result.payment_method.token)
self.assertTrue(subscription1.id in [s.id for s in paypal_account.subscriptions])
self.assertTrue(subscription2.id in [s.id for s in paypal_account.subscriptions])
def test_delete_deletes_paypal_account(self):
result = PaymentMethod.create({
"customer_id": Customer.create().customer.id,
"payment_method_nonce": Nonces.PayPalFuturePayment
})
self.assertTrue(result.is_success)
paypal_account_token = result.payment_method.token
delete_result = PayPalAccount.delete(paypal_account_token)
self.assertTrue(delete_result.is_success)
self.assertRaises(NotFoundError, PayPalAccount.find, paypal_account_token)
def test_delete_raises_on_not_found(self):
self.assertRaises(NotFoundError, PayPalAccount.delete, "non-existant-token")
def test_delete_delete_wont_delete_credit_card(self):
credit_card = CreditCard.create({
"customer_id": Customer.create().customer.id,
"number": "4111111111111111",
"expiration_date": "12/2099"
}).credit_card
self.assertRaises(NotFoundError, PayPalAccount.delete, credit_card.token)
def test_update_can_update_token_and_default(self):
customer_id = Customer.create().customer.id
credit_card = CreditCard.create({
"customer_id": customer_id,
"number": "4111111111111111",
"expiration_date": "12/2099"
}).credit_card
result = PaymentMethod.create({
"customer_id": customer_id,
"payment_method_nonce": Nonces.PayPalFuturePayment
})
self.assertTrue(result.is_success)
old_token = result.payment_method.token
new_token = "new-token-%s" % int(round(time.time() * 1000))
result = PayPalAccount.update(old_token, {
"token": new_token,
"options": {"make_default": True}
})
self.assertTrue(result.is_success)
updated_account = PayPalAccount.find(new_token)
self.assertEquals(updated_account.default, True)
def test_update_returns_validation_errors(self):
payment_method_token = "payment-token-%s" % int(round(time.time() * 1000))
customer_id = Customer.create().customer.id
credit_card = CreditCard.create({
"token": payment_method_token,
"customer_id": customer_id,
"number": "4111111111111111",
"expiration_date": "12/2099"
}).credit_card
result = PaymentMethod.create({
"customer_id": customer_id,
"payment_method_nonce": Nonces.PayPalFuturePayment
})
self.assertTrue(result.is_success)
old_token = result.payment_method.token
result = PayPalAccount.update(old_token, {
"token": payment_method_token,
})
self.assertFalse(result.is_success)
self.assertEquals(
ErrorCodes.PayPalAccount.TokenIsInUse,
result.errors.for_object("paypal_account").on("token")[0].code
)
result = PayPalAccount.update(old_token, {
"token": payment_method_token,
})
self.assertFalse(result.is_success)
self.assertEquals(
ErrorCodes.PayPalAccount.TokenIsInUse,
result.errors.for_object("paypal_account").on("token")[0].code
)
|