-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtest_hook_httpx.py
More file actions
416 lines (316 loc) · 12.8 KB
/
test_hook_httpx.py
File metadata and controls
416 lines (316 loc) · 12.8 KB
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
import json
import platform
import httpx
import pytest
from httpdbg.utils import HTTPDBGCookie
from httpdbg.utils import HTTPDBGHeader
from httpdbg.hooks.all import httprecord
@pytest.mark.httpx
def test_httpx(httpbin_both):
with httprecord() as records:
httpx.get(f"{httpbin_both.url}/get", verify=False)
assert len(records) == 1
http_record = records[0]
assert http_record.url == f"{httpbin_both.url}/get"
assert http_record.method.upper() == "GET"
assert http_record.status_code == 200
assert http_record.reason.upper() == "OK"
@pytest.mark.initiator
@pytest.mark.httpx
def test_httpx_initiator(httpbin, monkeypatch):
with monkeypatch.context() as m:
m.delenv("PYTEST_CURRENT_TEST")
with httprecord() as records:
httpx.get(f"{httpbin.url}/get")
assert len(records) == 1
initiator = records.initiators[records[0].initiator_id]
assert initiator.label == 'httpx.get(f"{httpbin.url}/get")'
assert 'httpx.get(f"{httpbin.url}/get") <===' in "".join(initiator.stack)
@pytest.mark.httpx
def test_httpx_request(httpbin_both):
with httprecord() as records:
httpx.post(f"{httpbin_both.url}/post", content="abc", verify=False)
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "POST"
assert http_record.status_code == 200
assert HTTPDBGHeader("Content-Length", "3") in http_record.request.headers
assert http_record.request.cookies == []
assert http_record.request.content == b"abc"
@pytest.mark.httpx
def test_httpx_response(httpbin_both):
with httprecord() as records:
httpx.put(f"{httpbin_both.url}/put?azerty=33", content="def", verify=False)
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "PUT"
assert http_record.status_code == 200
assert (
HTTPDBGHeader("Content-Type", "application/json")
in http_record.response.headers
)
assert http_record.response.cookies == []
assert (
json.loads(http_record.response.content).get("args", {}).get("azerty") == "33"
)
assert json.loads(http_record.response.content).get("data") == "def"
@pytest.mark.httpx
def test_httpx_cookies(httpbin):
with httprecord() as records:
httpx.get(
f"{httpbin.url}/cookies/set/confiture/oignon", cookies={"jam": "strawberry"}
)
assert len(records) == 1
http_record = records[0]
assert HTTPDBGCookie("jam", "strawberry") in http_record.request.cookies
assert (
HTTPDBGCookie("confiture", "oignon", [{"attr": "/", "name": "path"}])
in http_record.response.cookies
)
@pytest.mark.httpx
def test_httpx_cookies_secure(httpbin_secure):
with httprecord() as records:
httpx.get(
f"{httpbin_secure.url}/cookies/set/confiture/oignon",
cookies={"jam": "strawberry"},
verify=False,
)
assert len(records) == 1
http_record = records[0]
assert HTTPDBGCookie("jam", "strawberry") in http_record.request.cookies
assert (
HTTPDBGCookie(
"confiture", "oignon", [{"attr": "/", "name": "path"}, {"name": "Secure"}]
)
in http_record.response.cookies
)
@pytest.mark.httpx
def test_httpx_redirect(httpbin_both):
redirect_url = f"{httpbin_both.url}/redirect-to"
with httprecord() as records:
httpx.get(
redirect_url,
follow_redirects=True,
verify=False,
params={"url": f"{httpbin_both.url}/get"},
)
assert len(records) == 2
assert records[0].url.startswith(redirect_url)
assert records[1].url == f"{httpbin_both.url}/get"
@pytest.mark.httpx
def test_httpx_not_found(httpbin_both):
with httprecord() as records:
httpx.get(f"{httpbin_both.url}/404", verify=False)
assert len(records) == 1
http_record = records[0]
assert records[0].url == f"{httpbin_both.url}/404"
assert http_record.method.upper() == "GET"
assert http_record.status_code == 404
assert http_record.reason.upper() == "NOT FOUND"
@pytest.mark.httpx
def test_httpx_client(httpbin_both):
with httprecord() as records:
with httpx.Client(verify=False) as client:
client.get(f"{httpbin_both.url}/get")
client.post(f"{httpbin_both.url}/post", content="azerty")
assert len(records) == 2
http_record = records[0]
assert http_record.url == f"{httpbin_both.url}/get"
assert http_record.method.upper() == "GET"
assert http_record.status_code == 200
assert http_record.reason.upper() == "OK"
http_record = records[1]
assert http_record.url == f"{httpbin_both.url}/post"
assert http_record.method.upper() == "POST"
assert http_record.status_code == 200
assert http_record.reason.upper() == "OK"
@pytest.mark.httpx
def test_httpx_exception():
url_with_unknown_host = "http://f.q.d.1234.n.t.n.e/hello?a=b"
with httprecord() as records:
with pytest.raises(httpx.ConnectError):
httpx.get(url_with_unknown_host)
assert len(records) == 1
http_record = records[0]
assert http_record.url == url_with_unknown_host
assert isinstance(http_record.exception, httpx.ConnectError)
@pytest.mark.httpx
def test_httpx_get_empty_request_content(httpbin_both):
with httprecord() as records:
httpx.get(f"{httpbin_both.url}/get", verify=False)
assert len(records) == 1
http_record = records[0]
assert http_record.url == f"{httpbin_both.url}/get"
assert http_record.request.content == b""
@pytest.mark.httpx
def test_httpx_many_requests(httpbin_both):
with httprecord() as records:
httpx.get(f"{httpbin_both.url}/get", verify=False)
httpx.get(f"{httpbin_both.url}/get/abc", verify=False)
httpx.post(f"{httpbin_both.url}/post", data="abc", verify=False)
httpx.get(f"{httpbin_both.url}/get", verify=False)
assert len(records) == 4
assert records[0].url == f"{httpbin_both.url}/get"
assert records[0].request.content == b""
assert records[1].url == f"{httpbin_both.url}/get/abc"
assert records[1].request.content == b""
assert records[2].url == f"{httpbin_both.url}/post"
assert records[2].request.content == b"abc"
assert records[3].url == f"{httpbin_both.url}/get"
assert records[3].request.content == b""
@pytest.mark.httpx
def test_httpx_many_requests_session(httpbin_both):
with httprecord() as records:
with httpx.Client(verify=False) as session:
session.get(f"{httpbin_both.url}/get")
session.get(f"{httpbin_both.url}/get/abc")
session.post(f"{httpbin_both.url}/post", data="abc")
session.get(f"{httpbin_both.url}/get")
assert len(records) == 4
assert records[0].url == f"{httpbin_both.url}/get"
assert records[0].request.content == b""
assert records[1].url == f"{httpbin_both.url}/get/abc"
assert records[1].request.content == b""
assert records[2].url == f"{httpbin_both.url}/post"
assert records[2].request.content == b"abc"
assert records[3].url == f"{httpbin_both.url}/get"
assert records[3].request.content == b""
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_asyncclient(httpbin_both):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as client:
await client.get(f"{httpbin_both.url}/get")
assert len(records) == 1
http_record = records[0]
assert http_record.url == f"{httpbin_both.url}/get"
assert http_record.method.upper() == "GET"
assert http_record.status_code == 200
assert http_record.reason.upper() == "OK"
@pytest.mark.initiator
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_initiator_asyncclient(httpbin, monkeypatch):
with monkeypatch.context() as m:
m.delenv("PYTEST_CURRENT_TEST")
with httprecord() as records:
async with httpx.AsyncClient() as client:
await client.get(f"{httpbin.url}/get")
assert len(records) == 1
initiator = records.initiators[records[0].initiator_id]
assert initiator.label == 'await client.get(f"{httpbin.url}/get")'
assert 'await client.get(f"{httpbin.url}/get") <===' in "".join(initiator.stack)
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_request_asyncclient(httpbin_both):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as client:
await client.post(f"{httpbin_both.url}/post", content="abc")
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "POST"
assert http_record.status_code == 200
assert HTTPDBGHeader("Content-Length", "3") in http_record.request.headers
assert http_record.request.cookies == []
assert http_record.request.content == b"abc"
@pytest.mark.httpx
@pytest.mark.asyncio
@pytest.mark.xfail(
platform.system().lower() == "windows",
reason="flaky on Windows (sometimes only one request is recorded)",
)
async def test_httpx_response_asyncclient(httpbin_both):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as client:
await client.put(f"{httpbin_both.url}/put?azerty=33", content="def")
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "PUT"
assert http_record.status_code == 200
assert (
HTTPDBGHeader("Content-Type", "application/json")
in http_record.response.headers
)
assert http_record.response.cookies == []
assert (
json.loads(http_record.response.content).get("args", {}).get("azerty") == "33"
)
assert json.loads(http_record.response.content).get("data") == "def"
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_cookies_asyncclient(httpbin):
with httprecord() as records:
async with httpx.AsyncClient() as client:
await client.get(
f"{httpbin.url}/cookies/set/confiture/oignon",
cookies={"jam": "strawberry"},
)
assert len(records) == 1
http_record = records[0]
assert HTTPDBGCookie("jam", "strawberry") in http_record.request.cookies
assert (
HTTPDBGCookie("confiture", "oignon", [{"attr": "/", "name": "path"}])
in http_record.response.cookies
)
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_cookies_asyncclient_secure(httpbin_secure):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as client:
await client.get(
f"{httpbin_secure.url}/cookies/set/confiture/oignon",
cookies={"jam": "strawberry"},
)
assert len(records) == 1
http_record = records[0]
assert HTTPDBGCookie("jam", "strawberry") in http_record.request.cookies
assert (
HTTPDBGCookie(
"confiture", "oignon", [{"attr": "/", "name": "path"}, {"name": "Secure"}]
)
in http_record.response.cookies
)
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_exception_asyncclient():
url_with_unknown_host = "http://f.q.d.1234.n.t.n.e/hello?a=b"
with httprecord() as records:
with pytest.raises(httpx.ConnectError):
async with httpx.AsyncClient() as client:
await client.get(url_with_unknown_host)
assert len(records) == 1
http_record = records[0]
assert http_record.url == url_with_unknown_host
assert isinstance(http_record.exception, httpx.ConnectError)
@pytest.mark.httpx
@pytest.mark.asyncio
async def test_httpx_get_empty_request_content_asyncclient(httpbin_both):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as client:
await client.get(f"{httpbin_both.url}/get")
assert len(records) == 1
http_record = records[0]
assert http_record.url == f"{httpbin_both.url}/get"
assert http_record.request.content == b""
@pytest.mark.httpx
@pytest.mark.asyncio
@pytest.mark.xfail(
platform.system().lower() == "windows",
reason="flaky on Windows (sometimes only one request is recorded)",
)
async def test_httpx_many_requests_session_asyncclient(httpbin_both):
with httprecord() as records:
async with httpx.AsyncClient(verify=False) as session:
await session.get(f"{httpbin_both.url}/get")
await session.get(f"{httpbin_both.url}/get/abc")
await session.post(f"{httpbin_both.url}/post", data="abc")
await session.get(f"{httpbin_both.url}/get")
assert len(records) == 4
assert records[0].url == f"{httpbin_both.url}/get"
assert records[0].request.content == b""
assert records[1].url == f"{httpbin_both.url}/get/abc"
assert records[1].request.content == b""
assert records[2].url == f"{httpbin_both.url}/post"
assert records[2].request.content == b"abc"
assert records[3].url == f"{httpbin_both.url}/get"
assert records[3].request.content == b""