Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtest_headers.py
More file actions
Latest commit
executable file
·293 lines (224 loc) · 8.71 KB
/
Copy pathtest_headers.py
File metadata and controls
executable file
·293 lines (224 loc) · 8.71 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
#!/usr/bin/env python3
importpytest
importhttpx
defecho_headers(request: httpx.Request) ->httpx.Response:
data= {"headers": dict(request.headers)}
returnhttpx.Response(200, json=data)
defecho_repeated_headers_multi_items(request: httpx.Request) ->httpx.Response:
data= {"headers": list(request.headers.multi_items())}
returnhttpx.Response(200, json=data)
defecho_repeated_headers_items(request: httpx.Request) ->httpx.Response:
data= {"headers": list(request.headers.items())}
returnhttpx.Response(200, json=data)
deftest_client_header():
"""
Set a header in the Client.
"""
url="http://example.org/echo_headers"
headers= {"Example-Header": "example-value"}
client=httpx.Client(transport=httpx.MockTransport(echo_headers), headers=headers)
response=client.get(url)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"example-header": "example-value",
"host": "example.org",
"user-agent": f"python-httpx/{httpx.__version__}",
}
}
deftest_header_merge():
url="http://example.org/echo_headers"
client_headers= {"User-Agent": "python-myclient/0.2.1"}
request_headers= {"X-Auth-Token": "FooBarBazToken"}
client=httpx.Client(
transport=httpx.MockTransport(echo_headers), headers=client_headers
)
response=client.get(url, headers=request_headers)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org",
"user-agent": "python-myclient/0.2.1",
"x-auth-token": "FooBarBazToken",
}
}
deftest_header_merge_conflicting_headers():
url="http://example.org/echo_headers"
client_headers= {"X-Auth-Token": "FooBar"}
request_headers= {"X-Auth-Token": "BazToken"}
client=httpx.Client(
transport=httpx.MockTransport(echo_headers), headers=client_headers
)
response=client.get(url, headers=request_headers)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org",
"user-agent": f"python-httpx/{httpx.__version__}",
"x-auth-token": "BazToken",
}
}
deftest_header_update():
url="http://example.org/echo_headers"
client=httpx.Client(transport=httpx.MockTransport(echo_headers))
first_response=client.get(url)
client.headers.update(
{"User-Agent": "python-myclient/0.2.1", "Another-Header": "AThing"}
)
second_response=client.get(url)
assertfirst_response.status_code==200
assertfirst_response.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org",
"user-agent": f"python-httpx/{httpx.__version__}",
}
}
assertsecond_response.status_code==200
assertsecond_response.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"another-header": "AThing",
"connection": "keep-alive",
"host": "example.org",
"user-agent": "python-myclient/0.2.1",
}
}
deftest_header_repeated_items():
url="http://example.org/echo_headers"
client=httpx.Client(transport=httpx.MockTransport(echo_repeated_headers_items))
response=client.get(url, headers=[("x-header", "1"), ("x-header", "2,3")])
assertresponse.status_code==200
echoed_headers=response.json()["headers"]
# as per RFC 7230, the whitespace after a comma is insignificant
# so we split and strip here so that we can do a safe comparison
assert ["x-header", ["1", "2", "3"]] in [
[k, [subv.lstrip() forsubvinv.split(",")]] fork, vinechoed_headers
]
deftest_header_repeated_multi_items():
url="http://example.org/echo_headers"
client=httpx.Client(
transport=httpx.MockTransport(echo_repeated_headers_multi_items)
)
response=client.get(url, headers=[("x-header", "1"), ("x-header", "2,3")])
assertresponse.status_code==200
echoed_headers=response.json()["headers"]
assert ["x-header", "1"] inechoed_headers
assert ["x-header", "2,3"] inechoed_headers
deftest_remove_default_header():
"""
Remove a default header from the Client.
"""
url="http://example.org/echo_headers"
client=httpx.Client(transport=httpx.MockTransport(echo_headers))
delclient.headers["User-Agent"]
response=client.get(url)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org",
}
}
deftest_header_does_not_exist():
headers=httpx.Headers({"foo": "bar"})
withpytest.raises(KeyError):
delheaders["baz"]
deftest_header_with_incorrect_value():
withpytest.raises(
TypeError,
match=f"Header value must be str or bytes, not {type(None)}",
):
httpx.Headers({"foo": None}) # type: ignore
deftest_host_with_auth_and_port_in_url():
"""
The Host header should only include the hostname, or hostname:port
(for non-default ports only). Any userinfo or default port should not
be present.
"""
url="http://username:password@example.org:80/echo_headers"
client=httpx.Client(transport=httpx.MockTransport(echo_headers))
response=client.get(url)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org",
"user-agent": f"python-httpx/{httpx.__version__}",
"authorization": "Basic dXNlcm5hbWU6cGFzc3dvcmQ=",
}
}
deftest_host_with_non_default_port_in_url():
"""
If the URL includes a non-default port, then it should be included in
the Host header.
"""
url="http://username:password@example.org:123/echo_headers"
client=httpx.Client(transport=httpx.MockTransport(echo_headers))
response=client.get(url)
assertresponse.status_code==200
assertresponse.json() == {
"headers": {
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"connection": "keep-alive",
"host": "example.org:123",
"user-agent": f"python-httpx/{httpx.__version__}",
"authorization": "Basic dXNlcm5hbWU6cGFzc3dvcmQ=",
}
}
deftest_request_auto_headers():
request=httpx.Request("GET", "https://www.example.org/")
assert"host"inrequest.headers
deftest_same_origin():
origin=httpx.URL("https://example.com")
request=httpx.Request("GET", "HTTPS://EXAMPLE.COM:443")
client=httpx.Client()
headers=client._redirect_headers(request, origin, "GET")
assertheaders["Host"] ==request.url.netloc.decode("ascii")
deftest_not_same_origin():
origin=httpx.URL("https://example.com")
request=httpx.Request("GET", "HTTP://EXAMPLE.COM:80")
client=httpx.Client()
headers=client._redirect_headers(request, origin, "GET")
assertheaders["Host"] ==origin.netloc.decode("ascii")
deftest_is_https_redirect():
url=httpx.URL("https://example.com")
request=httpx.Request(
"GET", "http://example.com", headers={"Authorization": "empty"}
)
client=httpx.Client()
headers=client._redirect_headers(request, url, "GET")
assert"Authorization"inheaders
deftest_is_not_https_redirect():
url=httpx.URL("https://www.example.com")
request=httpx.Request(
"GET", "http://example.com", headers={"Authorization": "empty"}
)
client=httpx.Client()
headers=client._redirect_headers(request, url, "GET")
assert"Authorization"notinheaders
deftest_is_not_https_redirect_if_not_default_ports():
url=httpx.URL("https://example.com:1337")
request=httpx.Request(
"GET", "http://example.com:9999", headers={"Authorization": "empty"}
)
client=httpx.Client()
headers=client._redirect_headers(request, url, "GET")
assert"Authorization"notinheaders