-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_redirects.py
46 lines (37 loc) · 2.63 KB
/
test_redirects.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
from pytest_httpserver import HTTPServer
import tls_requests
def test_missing_host_redirects(httpserver: HTTPServer):
httpserver.expect_request("/redirects/3").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/1"})
httpserver.expect_request("/redirects/1").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/2"})
httpserver.expect_request("/redirects/2").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/ok"})
httpserver.expect_request("/redirects/ok").respond_with_data(b"OK")
response = tls_requests.get(httpserver.url_for("/redirects/3"))
assert response.status_code == 200
assert response.history[0].status_code == 302
assert len(response.history) == 3
def test_full_path_redirects(httpserver: HTTPServer):
httpserver.expect_request("/redirects/3").respond_with_data(b"OK", status=302, headers={"Location": httpserver.url_for("/redirects/1")})
httpserver.expect_request("/redirects/1").respond_with_data(b"OK", status=302, headers={"Location": httpserver.url_for("/redirects/2")})
httpserver.expect_request("/redirects/2").respond_with_data(b"OK", status=302, headers={"Location": httpserver.url_for("/redirects/ok")})
httpserver.expect_request("/redirects/ok").respond_with_data(b"OK")
response = tls_requests.get(httpserver.url_for("/redirects/3"))
assert response.status_code == 200
assert response.history[0].status_code == 302
assert len(response.history) == 3
def test_fragment_redirects(httpserver: HTTPServer):
httpserver.expect_request("/redirects/3").respond_with_data(b"OK", status=302, headers={"Location": httpserver.url_for("/redirects/ok#fragment")})
httpserver.expect_request("/redirects/ok").respond_with_data(b"OK")
response = tls_requests.get(httpserver.url_for("/redirects/3"))
assert response.status_code == 200
assert response.history[0].status_code == 302
assert len(response.history) == 1
assert response.request.url.fragment == "fragment"
def test_too_many_redirects(httpserver: HTTPServer):
httpserver.expect_request("/redirects/3").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/1"})
httpserver.expect_request("/redirects/1").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/2"})
httpserver.expect_request("/redirects/2").respond_with_data(b"OK", status=302, headers={"Location": "/redirects/3"})
httpserver.expect_request("/redirects/ok").respond_with_data(b"OK")
try:
_ = tls_requests.get(httpserver.url_for("/redirects/3"))
except Exception as e:
assert isinstance(e, tls_requests.exceptions.TooManyRedirects)