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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
|
import datetime
import json
import tempfile
import uuid
from collections import OrderedDict
from urllib.parse import urlencode, urlsplit
import pytest
import urllib3
import stripe
from stripe import util
from stripe._api_requestor import _api_encode, _APIRequestor
from stripe._request_options import RequestOptions
from stripe._requestor_options import (
RequestorOptions,
_GlobalRequestorOptions,
)
from stripe._stripe_object import StripeObject
from stripe._stripe_response import (
StripeStreamResponse,
StripeStreamResponseAsync,
)
from tests.http_client_mock import HTTPClientMock
VALID_API_METHODS = ("get", "post", "delete")
class GMT1(datetime.tzinfo):
def utcoffset(self, dt):
return datetime.timedelta(hours=1)
def dst(self, dt):
return datetime.timedelta(0)
def tzname(self, dt):
return "Europe/Prague"
class AnyUUID4Matcher(object):
def __eq__(self, other):
try:
uuid.UUID(other, version=4)
except ValueError:
return False
return True
def __repr__(self):
return "AnyUUID4Matcher()"
class IsNoneMatcher:
"""
Matcher to make assertions against None because `assert_requested` doesn't
run checks if you pass `None` as the expected value.
"""
def __eq__(self, other):
return other is None
def __repr__(self):
return "None (from IsNoneMatcher())"
class TestAPIRequestor(object):
ENCODE_INPUTS = {
"dict": {
"astring": "bar",
"anint": 5,
"anull": None,
"adatetime": datetime.datetime(2013, 1, 1, tzinfo=GMT1()),
"atuple": (1, 2),
"adict": {"foo": "bar", "boz": 5},
"alist": ["foo", "bar"],
},
"list": [1, "foo", "baz"],
"string": "boo",
"unicode": "\u1234",
"datetime": datetime.datetime(2013, 1, 1, second=1, tzinfo=GMT1()),
"none": None,
}
ENCODE_EXPECTATIONS = {
"dict": [
("%s[astring]", "bar"),
("%s[anint]", 5),
("%s[adatetime]", 1356994800),
("%s[adict][foo]", "bar"),
("%s[adict][boz]", 5),
("%s[alist][0]", "foo"),
("%s[alist][1]", "bar"),
("%s[atuple][0]", 1),
("%s[atuple][1]", 2),
],
"list": [("%s[0]", 1), ("%s[1]", "foo"), ("%s[2]", "baz")],
"string": [("%s", "boo")],
"unicode": [("%s", "\u1234")],
"datetime": [("%s", 1356994801)],
"none": [],
}
@pytest.fixture(autouse=True)
def setup_stripe(self):
orig_attrs = {
"api_key": stripe.api_key,
"api_version": stripe.api_version,
"default_http_client": stripe.default_http_client,
"enable_telemetry": stripe.enable_telemetry,
}
stripe.api_key = "sk_test_123"
stripe.api_version = "2017-12-14"
stripe.default_http_client = None
stripe.enable_telemetry = False
yield
stripe.api_key = orig_attrs["api_key"]
stripe.api_version = orig_attrs["api_version"]
stripe.default_http_client = orig_attrs["default_http_client"]
stripe.enable_telemetry = orig_attrs["enable_telemetry"]
@pytest.fixture
def requestor(self, http_client_mock):
requestor = _APIRequestor(
client=http_client_mock.get_mock_http_client(),
options=_GlobalRequestorOptions(),
)
return requestor
@property
def v1_path(self):
return "/v1/foo"
@property
def v2_path(self):
return "/v2/foo"
def encoder_check(self, key):
stk_key = "my%s" % (key,)
value = self.ENCODE_INPUTS[key]
expectation = [
(k % (stk_key,), v) for k, v in self.ENCODE_EXPECTATIONS[key]
]
stk = []
fn = getattr(_APIRequestor, "encode_%s" % (key,))
fn(stk, stk_key, value)
if isinstance(value, dict):
expectation.sort()
stk.sort()
assert stk == expectation, stk
def _test_encode_naive_datetime(self):
stk = []
_APIRequestor.encode_datetime(
stk, "test", datetime.datetime(2013, 1, 1)
)
# Naive datetimes will encode differently depending on your system
# local time. Since we don't know the local time of your system,
# we just check that naive encodings are within 24 hours of correct.
assert abs(stk[0][1] - 1356994800) <= 60 * 60 * 24
def test_param_encoding(self, requestor, http_client_mock):
expectation = []
for type_, values in iter(self.ENCODE_EXPECTATIONS.items()):
expectation.extend([(k % (type_,), str(v)) for k, v in values])
query_string = (
urlencode(expectation).replace("%5B", "[").replace("%5D", "]")
)
http_client_mock.stub_request(
"get", query_string=query_string, rbody="{}", rcode=200
)
requestor.request("get", "", self.ENCODE_INPUTS, base_address="api")
http_client_mock.assert_requested("get", query_string=query_string)
def test_param_api_mode_preview(self, requestor, http_client_mock):
http_client_mock.stub_request(
"post", path=self.v2_path, rbody="{}", rcode=200
)
requestor.request(
"post", self.v2_path, self.ENCODE_INPUTS, base_address="api"
)
expectation = '{"dict": {"astring": "bar", "anint": 5, "anull": null, "adatetime": 1356994800, "atuple": [1, 2], "adict": {"foo": "bar", "boz": 5}, "alist": ["foo", "bar"]}, "list": [1, "foo", "baz"], "string": "boo", "unicode": "\\u1234", "datetime": 1356994801, "none": null}'
http_client_mock.assert_requested(
"post",
content_type="application/json",
post_data=expectation,
is_json=True,
)
def test_encodes_null_values_preview(self, requestor, http_client_mock):
http_client_mock.stub_request(
"post", path=self.v2_path, rbody="{}", rcode=200
)
requestor.request(
"post",
self.v2_path,
{"foo": None},
base_address="api",
)
http_client_mock.assert_requested(
"post",
content_type="application/json",
post_data='{"foo": null}',
is_json=True,
)
def test_dictionary_list_encoding(self):
params = {"foo": {"0": {"bar": "bat"}}}
encoded = list(_api_encode(params, "V1"))
key, value = encoded[0]
assert key == "foo[0][bar]"
assert value == "bat"
def test_ordereddict_encoding(self):
params = {
"ordered": OrderedDict(
[
("one", 1),
("two", 2),
("three", 3),
("nested", OrderedDict([("a", "a"), ("b", "b")])),
]
)
}
encoded = list(_api_encode(params, "V1"))
assert encoded[0][0] == "ordered[one]"
assert encoded[1][0] == "ordered[two]"
assert encoded[2][0] == "ordered[three]"
assert encoded[3][0] == "ordered[nested][a]"
assert encoded[4][0] == "ordered[nested][b]"
def test_url_construction(self, requestor, http_client_mock):
CASES = (
(f"{stripe.api_base}?foo=bar", "", {"foo": "bar"}),
(f"{stripe.api_base}?foo=bar", "?", {"foo": "bar"}),
(stripe.api_base, "", {}),
(
f"{stripe.api_base}/%20spaced?baz=5&foo=bar%24",
"/%20spaced?foo=bar%24",
{"baz": "5"},
),
# duplicate query params keys should be deduped
(
f"{stripe.api_base}?foo=bar",
"?foo=bar",
{"foo": "bar"},
),
)
for expected, url, params in CASES:
path = urlsplit(expected).path
query_string = urlsplit(expected).query
http_client_mock.stub_request(
"get",
path=path,
query_string=query_string,
rbody="{}",
rcode=200,
)
requestor.request("get", url, params, base_address="api")
http_client_mock.assert_requested("get", abs_url=expected)
def test_empty_methods(self, requestor, http_client_mock):
for meth in VALID_API_METHODS:
http_client_mock.stub_request(
meth, path=self.v1_path, rbody="{}", rcode=200
)
resp = requestor.request(
meth, self.v1_path, {}, base_address="api"
)
if meth == "post":
post_data = ""
else:
post_data = None
http_client_mock.assert_requested(meth, post_data=post_data)
assert isinstance(resp, StripeObject)
assert resp == {}
@pytest.mark.anyio
async def test_empty_methods_async(self, requestor, http_client_mock):
for meth in VALID_API_METHODS:
http_client_mock.stub_request(
meth,
path=self.v1_path,
rbody="{}",
rcode=200,
)
resp = await requestor.request_async(
meth, self.v1_path, {}, base_address="api"
)
if meth == "post":
post_data = ""
else:
post_data = None
http_client_mock.assert_requested(meth, post_data=post_data)
assert isinstance(resp, StripeObject)
assert resp == {}
@pytest.mark.anyio
async def test_empty_methods_streaming_response_async(
self, requestor, http_client_mock
):
async def async_iter():
yield b"this"
yield b"is"
yield b"data"
for meth in VALID_API_METHODS:
http_client_mock.stub_request(
meth,
path=self.v1_path,
rbody=async_iter(),
rcode=200,
)
resp = await requestor.request_stream_async(
meth,
self.v1_path,
{},
base_address="api",
)
if meth == "post":
post_data = ""
else:
post_data = None
http_client_mock.assert_requested(meth, post_data=post_data)
assert isinstance(resp, StripeStreamResponseAsync)
assert b"".join([x async for x in resp.stream()]) == b"thisisdata"
def test_empty_methods_streaming_response(
self, requestor, http_client_mock
):
for meth in VALID_API_METHODS:
http_client_mock.stub_request(
meth,
path=self.v1_path,
rbody=util.io.BytesIO(b"thisisdata"),
rcode=200,
)
resp = requestor.request_stream(
meth,
self.v1_path,
{},
base_address="api",
)
if meth == "post":
post_data = ""
else:
post_data = None
http_client_mock.assert_requested(meth, post_data=post_data)
assert isinstance(resp, StripeStreamResponse)
assert resp.io.getvalue() == b"thisisdata"
def test_methods_with_params_and_response(
self, requestor, http_client_mock
):
for method in VALID_API_METHODS:
encoded = (
"adict[frobble]=bits&adatetime=1356994800&"
"alist[0]=1&alist[1]=2&alist[2]=3"
)
http_client_mock.stub_request(
method,
path=self.v1_path,
query_string=encoded if method != "post" else "",
rbody='{"foo": "bar", "baz": 6}',
rcode=200,
)
params = {
"alist": [1, 2, 3],
"adict": {"frobble": "bits"},
"adatetime": datetime.datetime(2013, 1, 1, tzinfo=GMT1()),
}
resp = requestor.request(
method,
self.v1_path,
params,
base_address="api",
)
assert isinstance(resp, StripeObject)
assert resp == {"foo": "bar", "baz": 6}
if method == "post":
http_client_mock.assert_requested(
method,
post_data=encoded,
)
else:
abs_url = "%s%s?%s" % (
stripe.api_base,
self.v1_path,
encoded,
)
http_client_mock.assert_requested(method, abs_url=abs_url)
def test_methods_with_params_and_streaming_response(
self, requestor, http_client_mock
):
for method in VALID_API_METHODS:
encoded = (
"adict[frobble]=bits&adatetime=1356994800&"
"alist[0]=1&alist[1]=2&alist[2]=3"
)
http_client_mock.stub_request(
method,
path=self.v1_path,
query_string=encoded if method != "post" else "",
rbody=util.io.BytesIO(b'{"foo": "bar", "baz": 6}'),
rcode=200,
)
params = {
"alist": [1, 2, 3],
"adict": {"frobble": "bits"},
"adatetime": datetime.datetime(2013, 1, 1, tzinfo=GMT1()),
}
resp = requestor.request_stream(
method,
self.v1_path,
params,
base_address="api",
)
assert isinstance(resp, StripeStreamResponse)
assert resp.io.getvalue() == b'{"foo": "bar", "baz": 6}'
if method == "post":
http_client_mock.assert_requested(method, post_data=encoded)
else:
abs_url = "%s%s?%s" % (
stripe.api_base,
self.v1_path,
encoded,
)
http_client_mock.assert_requested(method, abs_url=abs_url)
def test_uses_headers(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
request_options: RequestOptions = {"headers": {"foo": "bar"}}
requestor.request(
"get",
self.v1_path,
{},
options=request_options,
base_address="api",
)
http_client_mock.assert_requested("get", extra_headers={"foo": "bar"})
def test_uses_api_version(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
request_options: RequestOptions = {"stripe_version": "fooversion"}
requestor.request(
"get",
self.v1_path,
options=request_options,
base_address="api",
)
http_client_mock.assert_requested(
"get",
stripe_version="fooversion",
)
def test_prefers_headers_api_version(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
request_options: RequestOptions = {
"stripe_version": "fooversion",
"headers": {"Stripe-Version": "barversion"},
}
requestor.request(
"get",
self.v1_path,
{},
options=request_options,
base_address="api",
)
http_client_mock.assert_requested(
"get",
stripe_version="barversion",
)
def test_uses_instance_key(self, requestor, http_client_mock):
key = "fookey"
requestor = requestor._replace_options(RequestOptions(api_key=key))
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
requestor.request("get", self.v1_path, {}, base_address="api")
http_client_mock.assert_requested("get", api_key=key)
assert requestor.api_key == key
def test_uses_instance_account(self, requestor, http_client_mock):
account = "acct_foo"
requestor = requestor._replace_options(
RequestOptions(stripe_account=account)
)
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
requestor.request("get", self.v1_path, {}, base_address="api")
http_client_mock.assert_requested(
"get",
stripe_account=account,
)
def test_removes_None_account(
self, requestor, http_client_mock: HTTPClientMock
):
"""
important test!
If there's no context on a retrieved event, it's important that passing `stripe-account: None`
in the generated fetch_related_object doesn't actually send the null header
"""
account = None
requestor = requestor._replace_options(
RequestOptions(stripe_account=account)
)
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
requestor.request("get", self.v1_path, {}, base_address="api")
assert len(http_client_mock.get_all_calls()) == 1
call = http_client_mock.get_last_call()
assert call.headers is not None
assert "Stripe-Account" not in call.headers
def test_uses_instance_context(self, http_client_mock):
context = "acct_bar"
requestor = _APIRequestor(
options=RequestorOptions(
**{
**_GlobalRequestorOptions().to_dict(),
"stripe_context": context,
}
),
client=http_client_mock.get_mock_http_client(),
)
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
requestor.request("get", self.v1_path, {}, base_address="api")
http_client_mock.assert_requested(
"get",
stripe_context=context,
)
def test_sets_default_http_client(self, mocker):
assert not stripe.default_http_client
_APIRequestor(
client=mocker.Mock(stripe.http_client.HTTPClient)
)._get_http_client()
# default_http_client is not populated if a client is provided
assert not stripe.default_http_client
_APIRequestor()._get_http_client()
# default_http_client is set when no client is specified
assert stripe.default_http_client
new_default_client = stripe.default_http_client
_APIRequestor()
# the newly created client is reused
assert stripe.default_http_client == new_default_client
def test_uses_app_info(self, requestor, http_client_mock):
try:
old = stripe.app_info
stripe.set_app_info(
"MyAwesomePlugin",
url="https://myawesomeplugin.info",
version="1.2.34",
partner_id="partner_12345",
)
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
requestor.request("get", self.v1_path, {}, base_address="api")
ua = "Stripe/v1 PythonBindings/%s" % (stripe.VERSION,)
ua += " MyAwesomePlugin/1.2.34 (https://myawesomeplugin.info)"
expected_app_info = {
"name": "MyAwesomePlugin",
"url": "https://myawesomeplugin.info",
"version": "1.2.34",
"partner_id": "partner_12345",
}
last_call = http_client_mock.get_last_call()
last_call.assert_method("get")
last_call.assert_header("User-Agent", ua)
assert (
json.loads(
last_call.get_raw_header("X-Stripe-Client-User-Agent")
)["application"]
== expected_app_info
)
finally:
stripe.app_info = old
def test_handles_failed_platform_call(
self, requestor, mocker, http_client_mock
):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{}", rcode=200
)
def fail():
raise RuntimeError
mocker.patch("platform.platform", side_effect=fail)
requestor.request("get", self.v1_path, {}, {}, base_address="api")
last_call = http_client_mock.get_last_call()
last_call.assert_method("get")
assert (
json.loads(last_call.get_raw_header("X-Stripe-Client-User-Agent"))[
"platform"
]
== "(disabled)"
)
def test_uses_given_idempotency_key(self, requestor, http_client_mock):
method = "post"
http_client_mock.stub_request(
method, path=self.v1_path, rbody="{}", rcode=200
)
request_options: RequestOptions = {"idempotency_key": "123abc"}
requestor.request(
method,
self.v1_path,
{},
options=request_options,
base_address="api",
)
http_client_mock.assert_requested(
method, idempotency_key="123abc", post_data=""
)
def test_uuid4_idempotency_key_when_not_given(
self, requestor, http_client_mock
):
method = "post"
http_client_mock.stub_request(
method, path=self.v1_path, rbody="{}", rcode=200
)
requestor.request(method, self.v1_path, {}, base_address="api")
http_client_mock.assert_requested(
method, idempotency_key=AnyUUID4Matcher(), post_data=""
)
def test_generates_default_idempotency_key_for_v2_delete(
self, requestor, http_client_mock
):
method = "delete"
http_client_mock.stub_request(
method, path=self.v2_path, rbody="{}", rcode=200
)
requestor.request(method, self.v2_path, {}, base_address="api")
http_client_mock.assert_requested(
method, idempotency_key=AnyUUID4Matcher()
)
def test_skips_generates_default_idempotency_key_for_v1_delete(
self, requestor, http_client_mock
):
method = "delete"
http_client_mock.stub_request(
method, path=self.v1_path, rbody="{}", rcode=200
)
requestor.request(method, self.v1_path, {}, base_address="api")
http_client_mock.assert_requested(
method, idempotency_key=IsNoneMatcher()
)
def test_fails_without_api_key(self, requestor):
stripe.api_key = None
with pytest.raises(stripe.error.AuthenticationError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_request_error_404(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=404
)
with pytest.raises(stripe.error.InvalidRequestError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_request_error_400(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=400
)
with pytest.raises(stripe.error.InvalidRequestError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_idempotency_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": {"type": "idempotency_error"}}',
rcode=400,
)
with pytest.raises(stripe.error.IdempotencyError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_authentication_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=401
)
with pytest.raises(stripe.error.AuthenticationError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_permissions_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=403
)
with pytest.raises(stripe.error.PermissionError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_card_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": {"code": "invalid_expiry_year"}}',
rcode=402,
)
with pytest.raises(stripe.error.CardError) as excinfo:
requestor.request("get", self.v1_path, {}, base_address="api")
assert excinfo.value.code == "invalid_expiry_year"
def test_rate_limit_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=429
)
with pytest.raises(stripe.error.RateLimitError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_old_rate_limit_error(self, requestor, http_client_mock):
"""
Tests legacy rate limit error pre-2015-09-18
"""
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": {"code":"rate_limit"}}',
rcode=400,
)
with pytest.raises(stripe.error.RateLimitError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_server_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody='{"error": {}}', rcode=500
)
with pytest.raises(stripe.error.APIError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_json(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get", path=self.v1_path, rbody="{", rcode=200
)
with pytest.raises(stripe.error.APIError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_method(self, requestor):
with pytest.raises(stripe.error.APIConnectionError):
requestor.request("foo", "bar", base_address="api")
def test_oauth_invalid_requestor_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": "invalid_request"}',
rcode=400,
)
with pytest.raises(stripe.oauth_error.InvalidRequestError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_client_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": "invalid_client"}',
rcode=401,
)
with pytest.raises(stripe.oauth_error.InvalidClientError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_invalid_grant_error(self, requestor, http_client_mock):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody='{"error": "invalid_grant"}',
rcode=400,
)
with pytest.raises(stripe.oauth_error.InvalidGrantError):
requestor.request("get", self.v1_path, {}, base_address="api")
def test_extract_error_from_stream_request_for_bytes(
self, requestor, http_client_mock
):
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody=util.io.BytesIO(b'{"error": "invalid_grant"}'),
rcode=400,
)
with pytest.raises(stripe.oauth_error.InvalidGrantError):
requestor.request_stream(
"get", self.v1_path, {}, base_address="api"
)
def test_extract_error_from_stream_request_for_response(
self, requestor, http_client_mock
):
# Responses don't have getvalue, they only have a read method.
http_client_mock.stub_request(
"get",
path=self.v1_path,
rbody=urllib3.response.HTTPResponse(
body=util.io.BytesIO(b'{"error": "invalid_grant"}'),
preload_content=False,
),
rcode=400,
)
with pytest.raises(stripe.oauth_error.InvalidGrantError):
requestor.request_stream(
"get", self.v1_path, {}, base_address="api"
)
def test_raw_request_with_file_param(self, requestor, http_client_mock):
test_file = tempfile.NamedTemporaryFile()
test_file.write("\u263a".encode("utf-16"))
test_file.seek(0)
method = "post"
path = "/v1/files"
params = {"file": test_file, "purpose": "dispute_evidence"}
supplied_headers = {"Content-Type": "multipart/form-data"}
http_client_mock.stub_request(method, path=path, rbody="{}", rcode=200)
requestor.request(
method,
path,
params,
supplied_headers,
base_address="api",
)
assert supplied_headers["Content-Type"] == "multipart/form-data"
class TestDefaultClient(object):
@pytest.fixture(autouse=True)
def setup_stripe(self):
orig_attrs = {
"api_key": stripe.api_key,
"default_http_client": stripe.default_http_client,
}
stripe.api_key = "sk_test_123"
yield
stripe.api_key = orig_attrs["api_key"]
stripe.default_http_client = orig_attrs["default_http_client"]
def test_default_http_client_called(self, http_client_mock):
http_client_mock.stub_request(
"get",
path="/v1/charges",
query_string="limit=3",
rbody='{"object": "list", "data": []}',
rcode=200,
rheaders={},
)
stripe.Charge.list(limit=3)
last_call = http_client_mock.get_last_call()
last_call.assert_method("get")
last_call.assert_abs_url("https://api.stripe.com/v1/charges?limit=3")
last_call.assert_post_data(None)
|