forked from psf/requests
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_requests.py
2758 lines (2301 loc) · 94.4 KB
/
test_requests.py
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
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Tests for Requests."""
import collections
import contextlib
import io
import json
import os
import pickle
import re
import warnings
import pytest
import urllib3
from urllib3.util import Timeout as Urllib3Timeout
import requests
from requests.adapters import HTTPAdapter
from requests.auth import HTTPDigestAuth, _basic_auth_str
from requests.compat import (
JSONDecodeError,
Morsel,
MutableMapping,
builtin_str,
cookielib,
getproxies,
urlparse,
)
from requests.cookies import cookiejar_from_dict, morsel_to_cookie
from requests.exceptions import (
ChunkedEncodingError,
ConnectionError,
ConnectTimeout,
ContentDecodingError,
InvalidHeader,
InvalidProxyURL,
InvalidSchema,
InvalidURL,
MissingSchema,
ProxyError,
ReadTimeout,
RequestException,
RetryError,
)
from requests.exceptions import SSLError as RequestsSSLError
from requests.exceptions import Timeout, TooManyRedirects, UnrewindableBodyError
from requests.hooks import default_hooks
from requests.models import PreparedRequest, urlencode
from requests.sessions import SessionRedirectMixin
from requests.structures import CaseInsensitiveDict
from .compat import StringIO
from .utils import override_environ
# Requests to this URL should always fail with a connection timeout (nothing
# listening on that port)
TARPIT = "http://10.255.255.1"
# This is to avoid waiting the timeout of using TARPIT
INVALID_PROXY = "http://localhost:1"
try:
from ssl import SSLContext
del SSLContext
HAS_MODERN_SSL = True
except ImportError:
HAS_MODERN_SSL = False
try:
requests.pyopenssl
HAS_PYOPENSSL = True
except AttributeError:
HAS_PYOPENSSL = False
class TestRequests:
digest_auth_algo = ("MD5", "SHA-256", "SHA-512")
def test_entry_points(self):
requests.session
requests.session().get
requests.session().head
requests.get
requests.head
requests.put
requests.patch
requests.post
# Not really an entry point, but people rely on it.
from requests.packages.urllib3.poolmanager import PoolManager # noqa:F401
@pytest.mark.parametrize(
"exception, url",
(
(MissingSchema, "hiwpefhipowhefopw"),
(InvalidSchema, "localhost:3128"),
(InvalidSchema, "localhost.localdomain:3128/"),
(InvalidSchema, "10.122.1.1:3128/"),
(InvalidURL, "http://"),
(InvalidURL, "http://*example.com"),
(InvalidURL, "http://.example.com"),
),
)
def test_invalid_url(self, exception, url):
with pytest.raises(exception):
requests.get(url)
def test_basic_building(self):
req = requests.Request()
req.url = "http://kennethreitz.org/"
req.data = {"life": "42"}
pr = req.prepare()
assert pr.url == req.url
assert pr.body == "life=42"
@pytest.mark.parametrize("method", ("GET", "HEAD"))
def test_no_content_length(self, httpbin, method):
req = requests.Request(method, httpbin(method.lower())).prepare()
assert "Content-Length" not in req.headers
@pytest.mark.parametrize("method", ("POST", "PUT", "PATCH", "OPTIONS"))
def test_no_body_content_length(self, httpbin, method):
req = requests.Request(method, httpbin(method.lower())).prepare()
assert req.headers["Content-Length"] == "0"
@pytest.mark.parametrize("method", ("POST", "PUT", "PATCH", "OPTIONS"))
def test_empty_content_length(self, httpbin, method):
req = requests.Request(method, httpbin(method.lower()), data="").prepare()
assert req.headers["Content-Length"] == "0"
def test_override_content_length(self, httpbin):
headers = {"Content-Length": "not zero"}
r = requests.Request("POST", httpbin("post"), headers=headers).prepare()
assert "Content-Length" in r.headers
assert r.headers["Content-Length"] == "not zero"
def test_path_is_not_double_encoded(self):
request = requests.Request("GET", "http://0.0.0.0/get/test case").prepare()
assert request.path_url == "/get/test%20case"
@pytest.mark.parametrize(
"url, expected",
(
(
"http://example.com/path#fragment",
"http://example.com/path?a=b#fragment",
),
(
"http://example.com/path?key=value#fragment",
"http://example.com/path?key=value&a=b#fragment",
),
),
)
def test_params_are_added_before_fragment(self, url, expected):
request = requests.Request("GET", url, params={"a": "b"}).prepare()
assert request.url == expected
def test_params_original_order_is_preserved_by_default(self):
param_ordered_dict = collections.OrderedDict(
(("z", 1), ("a", 1), ("k", 1), ("d", 1))
)
session = requests.Session()
request = requests.Request(
"GET", "http://example.com/", params=param_ordered_dict
)
prep = session.prepare_request(request)
assert prep.url == "http://example.com/?z=1&a=1&k=1&d=1"
def test_params_bytes_are_encoded(self):
request = requests.Request(
"GET", "http://example.com", params=b"test=foo"
).prepare()
assert request.url == "http://example.com/?test=foo"
def test_binary_put(self):
request = requests.Request(
"PUT", "http://example.com", data="ööö".encode()
).prepare()
assert isinstance(request.body, bytes)
def test_whitespaces_are_removed_from_url(self):
# Test for issue #3696
request = requests.Request("GET", " http://example.com").prepare()
assert request.url == "http://example.com/"
@pytest.mark.parametrize("scheme", ("http://", "HTTP://", "hTTp://", "HttP://"))
def test_mixed_case_scheme_acceptable(self, httpbin, scheme):
s = requests.Session()
s.proxies = getproxies()
parts = urlparse(httpbin("get"))
url = scheme + parts.netloc + parts.path
r = requests.Request("GET", url)
r = s.send(r.prepare())
assert r.status_code == 200, f"failed for scheme {scheme}"
def test_HTTP_200_OK_GET_ALTERNATIVE(self, httpbin):
r = requests.Request("GET", httpbin("get"))
s = requests.Session()
s.proxies = getproxies()
r = s.send(r.prepare())
assert r.status_code == 200
def test_HTTP_302_ALLOW_REDIRECT_GET(self, httpbin):
r = requests.get(httpbin("redirect", "1"))
assert r.status_code == 200
assert r.history[0].status_code == 302
assert r.history[0].is_redirect
def test_HTTP_307_ALLOW_REDIRECT_POST(self, httpbin):
r = requests.post(
httpbin("redirect-to"),
data="test",
params={"url": "post", "status_code": 307},
)
assert r.status_code == 200
assert r.history[0].status_code == 307
assert r.history[0].is_redirect
assert r.json()["data"] == "test"
def test_HTTP_307_ALLOW_REDIRECT_POST_WITH_SEEKABLE(self, httpbin):
byte_str = b"test"
r = requests.post(
httpbin("redirect-to"),
data=io.BytesIO(byte_str),
params={"url": "post", "status_code": 307},
)
assert r.status_code == 200
assert r.history[0].status_code == 307
assert r.history[0].is_redirect
assert r.json()["data"] == byte_str.decode("utf-8")
def test_HTTP_302_TOO_MANY_REDIRECTS(self, httpbin):
try:
requests.get(httpbin("relative-redirect", "50"))
except TooManyRedirects as e:
url = httpbin("relative-redirect", "20")
assert e.request.url == url
assert e.response.url == url
assert len(e.response.history) == 30
else:
pytest.fail("Expected redirect to raise TooManyRedirects but it did not")
def test_HTTP_302_TOO_MANY_REDIRECTS_WITH_PARAMS(self, httpbin):
s = requests.session()
s.max_redirects = 5
try:
s.get(httpbin("relative-redirect", "50"))
except TooManyRedirects as e:
url = httpbin("relative-redirect", "45")
assert e.request.url == url
assert e.response.url == url
assert len(e.response.history) == 5
else:
pytest.fail(
"Expected custom max number of redirects to be respected but was not"
)
def test_http_301_changes_post_to_get(self, httpbin):
r = requests.post(httpbin("status", "301"))
assert r.status_code == 200
assert r.request.method == "GET"
assert r.history[0].status_code == 301
assert r.history[0].is_redirect
def test_http_301_doesnt_change_head_to_get(self, httpbin):
r = requests.head(httpbin("status", "301"), allow_redirects=True)
print(r.content)
assert r.status_code == 200
assert r.request.method == "HEAD"
assert r.history[0].status_code == 301
assert r.history[0].is_redirect
def test_http_302_changes_post_to_get(self, httpbin):
r = requests.post(httpbin("status", "302"))
assert r.status_code == 200
assert r.request.method == "GET"
assert r.history[0].status_code == 302
assert r.history[0].is_redirect
def test_http_302_doesnt_change_head_to_get(self, httpbin):
r = requests.head(httpbin("status", "302"), allow_redirects=True)
assert r.status_code == 200
assert r.request.method == "HEAD"
assert r.history[0].status_code == 302
assert r.history[0].is_redirect
def test_http_303_changes_post_to_get(self, httpbin):
r = requests.post(httpbin("status", "303"))
assert r.status_code == 200
assert r.request.method == "GET"
assert r.history[0].status_code == 303
assert r.history[0].is_redirect
def test_http_303_doesnt_change_head_to_get(self, httpbin):
r = requests.head(httpbin("status", "303"), allow_redirects=True)
assert r.status_code == 200
assert r.request.method == "HEAD"
assert r.history[0].status_code == 303
assert r.history[0].is_redirect
def test_header_and_body_removal_on_redirect(self, httpbin):
purged_headers = ("Content-Length", "Content-Type")
ses = requests.Session()
req = requests.Request("POST", httpbin("post"), data={"test": "data"})
prep = ses.prepare_request(req)
resp = ses.send(prep)
# Mimic a redirect response
resp.status_code = 302
resp.headers["location"] = "get"
# Run request through resolve_redirects
next_resp = next(ses.resolve_redirects(resp, prep))
assert next_resp.request.body is None
for header in purged_headers:
assert header not in next_resp.request.headers
def test_transfer_enc_removal_on_redirect(self, httpbin):
purged_headers = ("Transfer-Encoding", "Content-Type")
ses = requests.Session()
req = requests.Request("POST", httpbin("post"), data=(b"x" for x in range(1)))
prep = ses.prepare_request(req)
assert "Transfer-Encoding" in prep.headers
# Create Response to avoid https://github.com/kevin1024/pytest-httpbin/issues/33
resp = requests.Response()
resp.raw = io.BytesIO(b"the content")
resp.request = prep
setattr(resp.raw, "release_conn", lambda *args: args)
# Mimic a redirect response
resp.status_code = 302
resp.headers["location"] = httpbin("get")
# Run request through resolve_redirect
next_resp = next(ses.resolve_redirects(resp, prep))
assert next_resp.request.body is None
for header in purged_headers:
assert header not in next_resp.request.headers
def test_fragment_maintained_on_redirect(self, httpbin):
fragment = "#view=edit&token=hunter2"
r = requests.get(httpbin("redirect-to?url=get") + fragment)
assert len(r.history) > 0
assert r.history[0].request.url == httpbin("redirect-to?url=get") + fragment
assert r.url == httpbin("get") + fragment
def test_HTTP_200_OK_GET_WITH_PARAMS(self, httpbin):
heads = {"User-agent": "Mozilla/5.0"}
r = requests.get(httpbin("user-agent"), headers=heads)
assert heads["User-agent"] in r.text
assert r.status_code == 200
def test_HTTP_200_OK_GET_WITH_MIXED_PARAMS(self, httpbin):
heads = {"User-agent": "Mozilla/5.0"}
r = requests.get(
httpbin("get") + "?test=true", params={"q": "test"}, headers=heads
)
assert r.status_code == 200
def test_set_cookie_on_301(self, httpbin):
s = requests.session()
url = httpbin("cookies/set?foo=bar")
s.get(url)
assert s.cookies["foo"] == "bar"
def test_cookie_sent_on_redirect(self, httpbin):
s = requests.session()
s.get(httpbin("cookies/set?foo=bar"))
r = s.get(httpbin("redirect/1")) # redirects to httpbin('get')
assert "Cookie" in r.json()["headers"]
def test_cookie_removed_on_expire(self, httpbin):
s = requests.session()
s.get(httpbin("cookies/set?foo=bar"))
assert s.cookies["foo"] == "bar"
s.get(
httpbin("response-headers"),
params={"Set-Cookie": "foo=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT"},
)
assert "foo" not in s.cookies
def test_cookie_quote_wrapped(self, httpbin):
s = requests.session()
s.get(httpbin('cookies/set?foo="bar:baz"'))
assert s.cookies["foo"] == '"bar:baz"'
def test_cookie_persists_via_api(self, httpbin):
s = requests.session()
r = s.get(httpbin("redirect/1"), cookies={"foo": "bar"})
assert "foo" in r.request.headers["Cookie"]
assert "foo" in r.history[0].request.headers["Cookie"]
def test_request_cookie_overrides_session_cookie(self, httpbin):
s = requests.session()
s.cookies["foo"] = "bar"
r = s.get(httpbin("cookies"), cookies={"foo": "baz"})
assert r.json()["cookies"]["foo"] == "baz"
# Session cookie should not be modified
assert s.cookies["foo"] == "bar"
def test_request_cookies_not_persisted(self, httpbin):
s = requests.session()
s.get(httpbin("cookies"), cookies={"foo": "baz"})
# Sending a request with cookies should not add cookies to the session
assert not s.cookies
def test_generic_cookiejar_works(self, httpbin):
cj = cookielib.CookieJar()
cookiejar_from_dict({"foo": "bar"}, cj)
s = requests.session()
s.cookies = cj
r = s.get(httpbin("cookies"))
# Make sure the cookie was sent
assert r.json()["cookies"]["foo"] == "bar"
# Make sure the session cj is still the custom one
assert s.cookies is cj
def test_param_cookiejar_works(self, httpbin):
cj = cookielib.CookieJar()
cookiejar_from_dict({"foo": "bar"}, cj)
s = requests.session()
r = s.get(httpbin("cookies"), cookies=cj)
# Make sure the cookie was sent
assert r.json()["cookies"]["foo"] == "bar"
def test_cookielib_cookiejar_on_redirect(self, httpbin):
"""Tests resolve_redirect doesn't fail when merging cookies
with non-RequestsCookieJar cookiejar.
See GH #3579
"""
cj = cookiejar_from_dict({"foo": "bar"}, cookielib.CookieJar())
s = requests.Session()
s.cookies = cookiejar_from_dict({"cookie": "tasty"})
# Prepare request without using Session
req = requests.Request("GET", httpbin("headers"), cookies=cj)
prep_req = req.prepare()
# Send request and simulate redirect
resp = s.send(prep_req)
resp.status_code = 302
resp.headers["location"] = httpbin("get")
redirects = s.resolve_redirects(resp, prep_req)
resp = next(redirects)
# Verify CookieJar isn't being converted to RequestsCookieJar
assert isinstance(prep_req._cookies, cookielib.CookieJar)
assert isinstance(resp.request._cookies, cookielib.CookieJar)
assert not isinstance(resp.request._cookies, requests.cookies.RequestsCookieJar)
cookies = {}
for c in resp.request._cookies:
cookies[c.name] = c.value
assert cookies["foo"] == "bar"
assert cookies["cookie"] == "tasty"
def test_requests_in_history_are_not_overridden(self, httpbin):
resp = requests.get(httpbin("redirect/3"))
urls = [r.url for r in resp.history]
req_urls = [r.request.url for r in resp.history]
assert urls == req_urls
def test_history_is_always_a_list(self, httpbin):
"""Show that even with redirects, Response.history is always a list."""
resp = requests.get(httpbin("get"))
assert isinstance(resp.history, list)
resp = requests.get(httpbin("redirect/1"))
assert isinstance(resp.history, list)
assert not isinstance(resp.history, tuple)
def test_headers_on_session_with_None_are_not_sent(self, httpbin):
"""Do not send headers in Session.headers with None values."""
ses = requests.Session()
ses.headers["Accept-Encoding"] = None
req = requests.Request("GET", httpbin("get"))
prep = ses.prepare_request(req)
assert "Accept-Encoding" not in prep.headers
def test_headers_preserve_order(self, httpbin):
"""Preserve order when headers provided as OrderedDict."""
ses = requests.Session()
ses.headers = collections.OrderedDict()
ses.headers["Accept-Encoding"] = "identity"
ses.headers["First"] = "1"
ses.headers["Second"] = "2"
headers = collections.OrderedDict([("Third", "3"), ("Fourth", "4")])
headers["Fifth"] = "5"
headers["Second"] = "222"
req = requests.Request("GET", httpbin("get"), headers=headers)
prep = ses.prepare_request(req)
items = list(prep.headers.items())
assert items[0] == ("Accept-Encoding", "identity")
assert items[1] == ("First", "1")
assert items[2] == ("Second", "222")
assert items[3] == ("Third", "3")
assert items[4] == ("Fourth", "4")
assert items[5] == ("Fifth", "5")
@pytest.mark.parametrize("key", ("User-agent", "user-agent"))
def test_user_agent_transfers(self, httpbin, key):
heads = {key: "Mozilla/5.0 (github.com/psf/requests)"}
r = requests.get(httpbin("user-agent"), headers=heads)
assert heads[key] in r.text
def test_HTTP_200_OK_HEAD(self, httpbin):
r = requests.head(httpbin("get"))
assert r.status_code == 200
def test_HTTP_200_OK_PUT(self, httpbin):
r = requests.put(httpbin("put"))
assert r.status_code == 200
def test_BASICAUTH_TUPLE_HTTP_200_OK_GET(self, httpbin):
auth = ("user", "pass")
url = httpbin("basic-auth", "user", "pass")
r = requests.get(url, auth=auth)
assert r.status_code == 200
r = requests.get(url)
assert r.status_code == 401
s = requests.session()
s.auth = auth
r = s.get(url)
assert r.status_code == 200
@pytest.mark.parametrize(
"username, password",
(
("user", "pass"),
("имя".encode(), "пароль".encode()),
(42, 42),
(None, None),
),
)
def test_set_basicauth(self, httpbin, username, password):
auth = (username, password)
url = httpbin("get")
r = requests.Request("GET", url, auth=auth)
p = r.prepare()
assert p.headers["Authorization"] == _basic_auth_str(username, password)
def test_basicauth_encodes_byte_strings(self):
"""Ensure b'test' formats as the byte string "test" rather
than the unicode string "b'test'" in Python 3.
"""
auth = (b"\xc5\xafsername", b"test\xc6\xb6")
r = requests.Request("GET", "http://localhost", auth=auth)
p = r.prepare()
assert p.headers["Authorization"] == "Basic xa9zZXJuYW1lOnRlc3TGtg=="
@pytest.mark.parametrize(
"url, exception",
(
# Connecting to an unknown domain should raise a ConnectionError
("http://doesnotexist.google.com", ConnectionError),
# Connecting to an invalid port should raise a ConnectionError
("http://localhost:1", ConnectionError),
# Inputing a URL that cannot be parsed should raise an InvalidURL error
("http://fe80::5054:ff:fe5a:fc0", InvalidURL),
),
)
def test_errors(self, url, exception):
with pytest.raises(exception):
requests.get(url, timeout=1)
def test_proxy_error(self):
# any proxy related error (address resolution, no route to host, etc) should result in a ProxyError
with pytest.raises(ProxyError):
requests.get(
"http://localhost:1", proxies={"http": "non-resolvable-address"}
)
def test_proxy_error_on_bad_url(self, httpbin, httpbin_secure):
with pytest.raises(InvalidProxyURL):
requests.get(httpbin_secure(), proxies={"https": "http:/badproxyurl:3128"})
with pytest.raises(InvalidProxyURL):
requests.get(httpbin(), proxies={"http": "http://:8080"})
with pytest.raises(InvalidProxyURL):
requests.get(httpbin_secure(), proxies={"https": "https://"})
with pytest.raises(InvalidProxyURL):
requests.get(httpbin(), proxies={"http": "http:///example.com:8080"})
def test_respect_proxy_env_on_send_self_prepared_request(self, httpbin):
with override_environ(http_proxy=INVALID_PROXY):
with pytest.raises(ProxyError):
session = requests.Session()
request = requests.Request("GET", httpbin())
session.send(request.prepare())
def test_respect_proxy_env_on_send_session_prepared_request(self, httpbin):
with override_environ(http_proxy=INVALID_PROXY):
with pytest.raises(ProxyError):
session = requests.Session()
request = requests.Request("GET", httpbin())
prepared = session.prepare_request(request)
session.send(prepared)
def test_respect_proxy_env_on_send_with_redirects(self, httpbin):
with override_environ(http_proxy=INVALID_PROXY):
with pytest.raises(ProxyError):
session = requests.Session()
url = httpbin("redirect/1")
print(url)
request = requests.Request("GET", url)
session.send(request.prepare())
def test_respect_proxy_env_on_get(self, httpbin):
with override_environ(http_proxy=INVALID_PROXY):
with pytest.raises(ProxyError):
session = requests.Session()
session.get(httpbin())
def test_respect_proxy_env_on_request(self, httpbin):
with override_environ(http_proxy=INVALID_PROXY):
with pytest.raises(ProxyError):
session = requests.Session()
session.request(method="GET", url=httpbin())
def test_proxy_authorization_preserved_on_request(self, httpbin):
proxy_auth_value = "Bearer XXX"
session = requests.Session()
session.headers.update({"Proxy-Authorization": proxy_auth_value})
resp = session.request(method="GET", url=httpbin("get"))
sent_headers = resp.json().get("headers", {})
assert sent_headers.get("Proxy-Authorization") == proxy_auth_value
def test_basicauth_with_netrc(self, httpbin):
auth = ("user", "pass")
wrong_auth = ("wronguser", "wrongpass")
url = httpbin("basic-auth", "user", "pass")
old_auth = requests.sessions.get_netrc_auth
try:
def get_netrc_auth_mock(url):
return auth
requests.sessions.get_netrc_auth = get_netrc_auth_mock
# Should use netrc and work.
r = requests.get(url)
assert r.status_code == 200
# Given auth should override and fail.
r = requests.get(url, auth=wrong_auth)
assert r.status_code == 401
s = requests.session()
# Should use netrc and work.
r = s.get(url)
assert r.status_code == 200
# Given auth should override and fail.
s.auth = wrong_auth
r = s.get(url)
assert r.status_code == 401
finally:
requests.sessions.get_netrc_auth = old_auth
def test_DIGEST_HTTP_200_OK_GET(self, httpbin):
for authtype in self.digest_auth_algo:
auth = HTTPDigestAuth("user", "pass")
url = httpbin("digest-auth", "auth", "user", "pass", authtype, "never")
r = requests.get(url, auth=auth)
assert r.status_code == 200
r = requests.get(url)
assert r.status_code == 401
print(r.headers["WWW-Authenticate"])
s = requests.session()
s.auth = HTTPDigestAuth("user", "pass")
r = s.get(url)
assert r.status_code == 200
def test_DIGEST_AUTH_RETURNS_COOKIE(self, httpbin):
for authtype in self.digest_auth_algo:
url = httpbin("digest-auth", "auth", "user", "pass", authtype)
auth = HTTPDigestAuth("user", "pass")
r = requests.get(url)
assert r.cookies["fake"] == "fake_value"
r = requests.get(url, auth=auth)
assert r.status_code == 200
def test_DIGEST_AUTH_SETS_SESSION_COOKIES(self, httpbin):
for authtype in self.digest_auth_algo:
url = httpbin("digest-auth", "auth", "user", "pass", authtype)
auth = HTTPDigestAuth("user", "pass")
s = requests.Session()
s.get(url, auth=auth)
assert s.cookies["fake"] == "fake_value"
def test_DIGEST_STREAM(self, httpbin):
for authtype in self.digest_auth_algo:
auth = HTTPDigestAuth("user", "pass")
url = httpbin("digest-auth", "auth", "user", "pass", authtype)
r = requests.get(url, auth=auth, stream=True)
assert r.raw.read() != b""
r = requests.get(url, auth=auth, stream=False)
assert r.raw.read() == b""
def test_DIGESTAUTH_WRONG_HTTP_401_GET(self, httpbin):
for authtype in self.digest_auth_algo:
auth = HTTPDigestAuth("user", "wrongpass")
url = httpbin("digest-auth", "auth", "user", "pass", authtype)
r = requests.get(url, auth=auth)
assert r.status_code == 401
r = requests.get(url)
assert r.status_code == 401
s = requests.session()
s.auth = auth
r = s.get(url)
assert r.status_code == 401
def test_DIGESTAUTH_QUOTES_QOP_VALUE(self, httpbin):
for authtype in self.digest_auth_algo:
auth = HTTPDigestAuth("user", "pass")
url = httpbin("digest-auth", "auth", "user", "pass", authtype)
r = requests.get(url, auth=auth)
assert '"auth"' in r.request.headers["Authorization"]
def test_POSTBIN_GET_POST_FILES(self, httpbin):
url = httpbin("post")
requests.post(url).raise_for_status()
post1 = requests.post(url, data={"some": "data"})
assert post1.status_code == 200
with open("requirements-dev.txt") as f:
post2 = requests.post(url, files={"some": f})
assert post2.status_code == 200
post4 = requests.post(url, data='[{"some": "json"}]')
assert post4.status_code == 200
with pytest.raises(ValueError):
requests.post(url, files=["bad file data"])
def test_invalid_files_input(self, httpbin):
url = httpbin("post")
post = requests.post(url, files={"random-file-1": None, "random-file-2": 1})
assert b'name="random-file-1"' not in post.request.body
assert b'name="random-file-2"' in post.request.body
def test_POSTBIN_SEEKED_OBJECT_WITH_NO_ITER(self, httpbin):
class TestStream:
def __init__(self, data):
self.data = data.encode()
self.length = len(self.data)
self.index = 0
def __len__(self):
return self.length
def read(self, size=None):
if size:
ret = self.data[self.index : self.index + size]
self.index += size
else:
ret = self.data[self.index :]
self.index = self.length
return ret
def tell(self):
return self.index
def seek(self, offset, where=0):
if where == 0:
self.index = offset
elif where == 1:
self.index += offset
elif where == 2:
self.index = self.length + offset
test = TestStream("test")
post1 = requests.post(httpbin("post"), data=test)
assert post1.status_code == 200
assert post1.json()["data"] == "test"
test = TestStream("test")
test.seek(2)
post2 = requests.post(httpbin("post"), data=test)
assert post2.status_code == 200
assert post2.json()["data"] == "st"
def test_POSTBIN_GET_POST_FILES_WITH_DATA(self, httpbin):
url = httpbin("post")
requests.post(url).raise_for_status()
post1 = requests.post(url, data={"some": "data"})
assert post1.status_code == 200
with open("requirements-dev.txt") as f:
post2 = requests.post(url, data={"some": "data"}, files={"some": f})
assert post2.status_code == 200
post4 = requests.post(url, data='[{"some": "json"}]')
assert post4.status_code == 200
with pytest.raises(ValueError):
requests.post(url, files=["bad file data"])
def test_post_with_custom_mapping(self, httpbin):
class CustomMapping(MutableMapping):
def __init__(self, *args, **kwargs):
self.data = dict(*args, **kwargs)
def __delitem__(self, key):
del self.data[key]
def __getitem__(self, key):
return self.data[key]
def __setitem__(self, key, value):
self.data[key] = value
def __iter__(self):
return iter(self.data)
def __len__(self):
return len(self.data)
data = CustomMapping({"some": "data"})
url = httpbin("post")
found_json = requests.post(url, data=data).json().get("form")
assert found_json == {"some": "data"}
def test_conflicting_post_params(self, httpbin):
url = httpbin("post")
with open("requirements-dev.txt") as f:
with pytest.raises(ValueError):
requests.post(url, data='[{"some": "data"}]', files={"some": f})
def test_request_ok_set(self, httpbin):
r = requests.get(httpbin("status", "404"))
assert not r.ok
def test_status_raising(self, httpbin):
r = requests.get(httpbin("status", "404"))
with pytest.raises(requests.exceptions.HTTPError):
r.raise_for_status()
r = requests.get(httpbin("status", "500"))
assert not r.ok
def test_decompress_gzip(self, httpbin):
r = requests.get(httpbin("gzip"))
r.content.decode("ascii")
@pytest.mark.parametrize(
"url, params",
(
("/get", {"foo": "føø"}),
("/get", {"føø": "føø"}),
("/get", {"føø": "føø"}),
("/get", {"foo": "foo"}),
("ø", {"foo": "foo"}),
),
)
def test_unicode_get(self, httpbin, url, params):
requests.get(httpbin(url), params=params)
def test_unicode_header_name(self, httpbin):
requests.put(
httpbin("put"),
headers={"Content-Type": "application/octet-stream"},
data="\xff",
) # compat.str is unicode.
def test_pyopenssl_redirect(self, httpbin_secure, httpbin_ca_bundle):
requests.get(httpbin_secure("status", "301"), verify=httpbin_ca_bundle)
def test_invalid_ca_certificate_path(self, httpbin_secure):
INVALID_PATH = "/garbage"
with pytest.raises(IOError) as e:
requests.get(httpbin_secure(), verify=INVALID_PATH)
assert str(
e.value
) == "Could not find a suitable TLS CA certificate bundle, invalid path: {}".format(
INVALID_PATH
)
def test_invalid_ssl_certificate_files(self, httpbin_secure):
INVALID_PATH = "/garbage"
with pytest.raises(IOError) as e:
requests.get(httpbin_secure(), cert=INVALID_PATH)
assert str(
e.value
) == "Could not find the TLS certificate file, invalid path: {}".format(
INVALID_PATH
)
with pytest.raises(IOError) as e:
requests.get(httpbin_secure(), cert=(".", INVALID_PATH))
assert str(e.value) == (
f"Could not find the TLS key file, invalid path: {INVALID_PATH}"
)
@pytest.mark.parametrize(
"env, expected",
(
({}, True),
({"REQUESTS_CA_BUNDLE": "/some/path"}, "/some/path"),
({"REQUESTS_CA_BUNDLE": ""}, True),
({"CURL_CA_BUNDLE": "/some/path"}, "/some/path"),
({"CURL_CA_BUNDLE": ""}, True),
({"REQUESTS_CA_BUNDLE": "", "CURL_CA_BUNDLE": ""}, True),
(
{
"REQUESTS_CA_BUNDLE": "/some/path",
"CURL_CA_BUNDLE": "/curl/path",
},
"/some/path",
),
(
{
"REQUESTS_CA_BUNDLE": "",
"CURL_CA_BUNDLE": "/curl/path",
},
"/curl/path",
),
),
)
def test_env_cert_bundles(self, httpbin, mocker, env, expected):
s = requests.Session()
mocker.patch("os.environ", env)
settings = s.merge_environment_settings(
url=httpbin("get"), proxies={}, stream=False, verify=True, cert=None
)
assert settings["verify"] == expected
def test_http_with_certificate(self, httpbin):
r = requests.get(httpbin(), cert=".")
assert r.status_code == 200
def test_https_warnings(self, nosan_server):
"""warnings are emitted with requests.get"""
host, port, ca_bundle = nosan_server
if HAS_MODERN_SSL or HAS_PYOPENSSL:
warnings_expected = ("SubjectAltNameWarning",)
else:
warnings_expected = (
"SNIMissingWarning",
"InsecurePlatformWarning",
"SubjectAltNameWarning",
)
with pytest.warns(None) as warning_records:
warnings.simplefilter("always")
requests.get(f"https://localhost:{port}/", verify=ca_bundle)
warning_records = [
item
for item in warning_records
if item.category.__name__ != "ResourceWarning"
]
warnings_category = tuple(item.category.__name__ for item in warning_records)
assert warnings_category == warnings_expected