File: test_charge.py

package info (click to toggle)
python-stripe 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,864 kB
  • sloc: python: 157,573; makefile: 13; sh: 9
file content (105 lines) | stat: -rw-r--r-- 3,765 bytes parent folder | download
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
import stripe


TEST_RESOURCE_ID = "ch_123"


class TestCharge(object):
    def test_is_listable(self, http_client_mock):
        resources = stripe.Charge.list()
        http_client_mock.assert_requested("get", path="/v1/charges")
        assert isinstance(resources.data, list)
        assert isinstance(resources.data[0], stripe.Charge)

    def test_is_searchable(self, http_client_mock):
        resources = stripe.Charge.search(query='currency:"USD"')
        http_client_mock.assert_requested(
            "get",
            path="/v1/charges/search",
            query_string='query=currency:"USD"',
        )
        assert resources.total_count == 1
        assert isinstance(resources.data, list)
        assert isinstance(resources.data[0], stripe.Charge)

        cnt = 0
        for c in resources.auto_paging_iter():
            assert isinstance(c, stripe.Charge)
            cnt += 1

        assert cnt == 1

    def test_is_retrievable(self, http_client_mock):
        resource = stripe.Charge.retrieve(TEST_RESOURCE_ID)
        http_client_mock.assert_requested(
            "get", path="/v1/charges/%s" % TEST_RESOURCE_ID
        )
        assert isinstance(resource, stripe.Charge)

    def test_is_creatable(self, http_client_mock):
        resource = stripe.Charge.create(
            amount=100, currency="usd", source="tok_123"
        )
        http_client_mock.assert_requested(
            "post",
            path="/v1/charges",
            post_data="amount=100&currency=usd&source=tok_123",
        )
        assert isinstance(resource, stripe.Charge)

    def test_is_saveable(self, http_client_mock):
        resource = stripe.Charge.retrieve(TEST_RESOURCE_ID)
        resource.metadata["key"] = "value"
        resource.save()
        http_client_mock.assert_requested(
            "post",
            path="/v1/charges/%s" % TEST_RESOURCE_ID,
            post_data="metadata[key]=value",
        )
        assert isinstance(resource, stripe.Charge)

    def test_is_modifiable(self, http_client_mock):
        resource = stripe.Charge.modify(
            TEST_RESOURCE_ID, metadata={"key": "value"}
        )
        http_client_mock.assert_requested(
            "post",
            path="/v1/charges/%s" % TEST_RESOURCE_ID,
            post_data="metadata[key]=value",
        )
        assert isinstance(resource, stripe.Charge)

    def test_can_capture(self, http_client_mock):
        charge = stripe.Charge.retrieve(TEST_RESOURCE_ID)
        resource = charge.capture()
        http_client_mock.assert_requested(
            "post", path="/v1/charges/%s/capture" % TEST_RESOURCE_ID
        )
        assert isinstance(resource, stripe.Charge)

    def test_can_capture_classmethod(self, http_client_mock):
        resource = stripe.Charge.capture(TEST_RESOURCE_ID)
        http_client_mock.assert_requested(
            "post", path="/v1/charges/%s/capture" % TEST_RESOURCE_ID
        )
        assert isinstance(resource, stripe.Charge)

    def test_can_mark_as_fraudulent(self, http_client_mock):
        charge = stripe.Charge.retrieve(TEST_RESOURCE_ID)
        resource = charge.mark_as_fraudulent()
        http_client_mock.assert_requested(
            "post",
            path="/v1/charges/%s" % charge.id,
            post_data="fraud_details[user_report]=fraudulent",
        )
        assert isinstance(resource, stripe.Charge)

    def test_can_mark_as_safe(self, http_client_mock):
        charge = stripe.Charge.retrieve(TEST_RESOURCE_ID)
        resource = charge.mark_as_safe()
        http_client_mock.assert_requested(
            "post",
            path="/v1/charges/%s" % charge.id,
            post_data="fraud_details[user_report]=safe",
        )
        assert isinstance(resource, stripe.Charge)