1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Check if query params in the string URL are also included in the final params

This commit is contained in:
Andre Ambrosio Boechat
2022-05-03 13:51:49 -03:00
committed by Jair Henrique
parent eb96c590ff
commit be1035fd5d

View File

@@ -152,12 +152,13 @@ def test_post(tmpdir, scheme, body, caplog):
def test_params(tmpdir, scheme):
url = scheme + "://httpbin.org/get"
url = scheme + "://httpbin.org/get?d=d"
headers = {"Content-Type": "application/json"}
params = {"a": 1, "b": 2, "c": "c"}
with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette:
_, response_json = get(url, output="json", params=params, headers=headers)
assert response_json["args"] == {"a": "1", "b": "2", "c": "c", "d": "d"}
with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette:
_, cassette_response_json = get(url, output="json", params=params, headers=headers)