-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtest_hook_aiohttp.py
More file actions
304 lines (240 loc) · 9.52 KB
/
Copy pathtest_hook_aiohttp.py
File metadata and controls
304 lines (240 loc) · 9.52 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
import json
import platform
import aiohttp
import pytest
from httpdbg.utils import HTTPDBGCookie
from httpdbg.utils import HTTPDBGHeader
from httpdbg.hooks.all import httprecord
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.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.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_initiator(httpbin, monkeypatch):
with monkeypatch.context() as m:
m.delenv("PYTEST_CURRENT_TEST")
with httprecord() as records:
async with aiohttp.ClientSession() as session:
await session.get(f"{httpbin.url}/get")
assert len(records) == 1
initiator = records.initiators[records[0].initiator_id]
assert initiator.label == 'await session.get(f"{httpbin.url}/get")'
assert 'await session.get(f"{httpbin.url}/get") <====' in "".join(initiator.stack)
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_request_post_bytes(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.post(f"{httpbin_both.url}/post", data=b"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 bytes(http_record.request.content) == b"abc"
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_request_post_str(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.post(f"{httpbin_both.url}/post", data="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 bytes(http_record.request.content) == b"abc"
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_request_post_json(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.post(f"{httpbin_both.url}/post", json={"a": "bc"})
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "POST"
assert http_record.status_code == 200
assert HTTPDBGHeader("Content-Length", "11") in http_record.request.headers
assert http_record.request.cookies == []
assert bytes(http_record.request.content) == b'{"a": "bc"}'
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_request_post_form(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.post(f"{httpbin_both.url}/post", data={"a": "bc", "d": "ef"})
assert len(records) == 1
http_record = records[0]
assert http_record.method.upper() == "POST"
assert http_record.status_code == 200
assert HTTPDBGHeader("Content-Length", "9") in http_record.request.headers
assert http_record.request.cookies == []
assert bytes(http_record.request.content) == b"a=bc&d=ef"
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_response(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
async with session.put(
f"{httpbin_both.url}/put?azerty=33", data="def"
) as resp:
await resp.json()
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.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_cookies(httpbin):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.get(
f"{httpbin.url}/cookies/set/confiture/oignon",
cookies={"jam": "strawberry"},
allow_redirects=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"}])
in http_record.response.cookies
)
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_cookies_secure(httpbin_secure):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.get(
f"{httpbin_secure.url}/cookies/set/confiture/oignon",
cookies={"jam": "strawberry"},
)
assert len(records) == 2
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.aiohttp
@pytest.mark.asyncio
@pytest.mark.xfail(
platform.system().lower() == "windows",
reason="flaky on Windows (sometimes only one request is recorded)",
)
async def test_aiohttp_redirect(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.get(
f"{httpbin_both.url}/redirect-to?url={httpbin_both.url}/get"
)
assert len(records) == 2
assert (
records[0].url == f"{httpbin_both.url}/redirect-to?url={httpbin_both.url}/get"
)
assert records[1].url == f"{httpbin_both.url}/get"
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_not_found(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.get(f"{httpbin_both.url}/404")
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.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_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(aiohttp.client_exceptions.ClientConnectorError):
async with aiohttp.ClientSession() as session:
await session.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, aiohttp.client_exceptions.ClientConnectorError
)
@pytest.mark.aiohttp
@pytest.mark.asyncio
async def test_aiohttp_get_empty_request_content_asyncclient(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=False)
) as session:
await session.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.aiohttp
@pytest.mark.asyncio
@pytest.mark.xfail(
platform.system().lower() == "windows",
reason="flaky on Windows (sometimes only one request is recorded)",
)
async def test_aiohttp_many_requests_session_asyncclient(httpbin_both):
with httprecord() as records:
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(ssl=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""