forked from stripe/stripe-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_source.py
More file actions
79 lines (65 loc) · 2.64 KB
/
Copy pathtest_source.py
File metadata and controls
79 lines (65 loc) · 2.64 KB
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
from __future__ import absolute_import, division, print_function
import pytest
import stripe
TEST_RESOURCE_ID = "src_123"
class TestSource(object):
def test_is_retrievable(self, request_mock):
resource = stripe.Source.retrieve(TEST_RESOURCE_ID)
request_mock.assert_requested(
"get", "/v1/sources/%s" % TEST_RESOURCE_ID
)
assert isinstance(resource, stripe.Source)
def test_is_creatable(self, request_mock):
resource = stripe.Source.create(type="card", token="tok_123")
request_mock.assert_requested("post", "/v1/sources")
assert isinstance(resource, stripe.Source)
def test_is_saveable(self, request_mock):
resource = stripe.Source.retrieve(TEST_RESOURCE_ID)
resource.metadata["key"] = "value"
resource.save()
request_mock.assert_requested(
"post", "/v1/sources/%s" % TEST_RESOURCE_ID
)
def test_is_modifiable(self, request_mock):
resource = stripe.Source.modify(
TEST_RESOURCE_ID, metadata={"key": "value"}
)
request_mock.assert_requested(
"post", "/v1/sources/%s" % TEST_RESOURCE_ID
)
assert isinstance(resource, stripe.Source)
def test_is_detachable_when_attached(self, request_mock):
resource = stripe.Source.construct_from(
{
"id": TEST_RESOURCE_ID,
"object": "source",
"customer": "cus_123",
},
stripe.api_key,
)
source = resource.detach()
assert source is resource
request_mock.assert_requested(
"delete", "/v1/customers/cus_123/sources/%s" % TEST_RESOURCE_ID
)
def test_is_not_detachable_when_unattached(self, request_mock):
resource = stripe.Source.retrieve(TEST_RESOURCE_ID)
with pytest.raises(stripe.error.InvalidRequestError):
resource.detach()
def test_is_verifiable(self, request_mock):
resource = stripe.Source.retrieve(TEST_RESOURCE_ID)
source = resource.verify(values=[1, 2])
assert source is resource
request_mock.assert_requested(
"post",
"/v1/sources/%s/verify" % TEST_RESOURCE_ID,
{"values": [1, 2]},
)
class TestSourceTransactions(object):
def test_is_listable(self, request_mock):
resource = stripe.Source.list_source_transactions(TEST_RESOURCE_ID)
request_mock.assert_requested(
"get", "/v1/sources/%s/source_transactions" % TEST_RESOURCE_ID
)
assert isinstance(resource.data, list)
assert isinstance(resource.data[0], stripe.SourceTransaction)