-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_urls.py
26 lines (18 loc) · 978 Bytes
/
test_urls.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
from urllib.parse import unquote
from pytest_httpserver import HTTPServer
import tls_requests
def request_hook(_request, response):
response.headers['x-path'] = _request.full_path
return response
def test_request_params(httpserver: HTTPServer):
params = {"a": "1", "b": "2"}
httpserver.expect_request("/params").with_post_hook(request_hook).respond_with_data(b"OK")
response = tls_requests.get(httpserver.url_for("/params"), params=params)
assert response.status_code == 200
assert unquote(str(response.url)).endswith(unquote(response.headers["x-path"]))
def test_request_multi_params(httpserver: HTTPServer):
params = {"a": ["1", "2", "3"]}
httpserver.expect_request("/params").with_post_hook(request_hook).respond_with_data(b"OK")
response = tls_requests.get(httpserver.url_for("/params"), params=params)
assert response.status_code == 200
assert unquote(str(response.url)).endswith(unquote(response.headers["x-path"]))