-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathtest_proxies.py
530 lines (453 loc) · 19.2 KB
/
test_proxies.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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
import gzip
import json
import sys
import time
from http.client import HTTPConnection
from io import BytesIO
from typing import Tuple
from urllib.parse import quote
import pytest
from tornado.httpclient import AsyncHTTPClient, HTTPClientError
from tornado.websocket import websocket_connect
# use ipv4 for CI, etc.
LOCALHOST = "127.0.0.1"
def request_get(port, path, token, host=LOCALHOST):
h = HTTPConnection(host, port, 10)
if "?" in path:
url = f"{path}&token={token}"
else:
url = f"{path}?token={token}"
h.request("GET", url)
return h.getresponse()
PARAMETERIZED_SERVER_PROCESS_PATHS = [
"/python-http/",
pytest.param(
"/python-unix-socket-true/",
marks=pytest.mark.skipif(
sys.platform == "win32", reason="Unix socket not supported on Windows"
),
),
pytest.param(
"/python-unix-socket-file/",
marks=pytest.mark.skipif(
sys.platform == "win32", reason="Unix socket not supported on Windows"
),
),
pytest.param(
"/python-unix-socket-file-no-command/",
marks=pytest.mark.skipif(
sys.platform == "win32", reason="Unix socket not supported on Windows"
),
),
]
@pytest.mark.parametrize("server_process_path", PARAMETERIZED_SERVER_PROCESS_PATHS)
def test_server_proxy_minimal_proxy_path_encoding(
server_process_path: str, a_server_port_and_token: Tuple[int, str]
) -> None:
PORT, TOKEN = a_server_port_and_token
"""Test that we don't encode anything more than we must to have a valid web
request."""
special_path = quote(
"Hello world 123 åäö 🎉你好世界±¥ :/[]@!$&'()*+,;=-._~?key1=value1",
safe=":/?#[]@!$&'()*+,;=-._~",
)
test_url = server_process_path + special_path
r = request_get(PORT, test_url, TOKEN)
__import__("pprint").pprint(r.headers.__dict__)
assert r.code == 200
s = r.read().decode("ascii")
assert f"GET /{special_path}&token=" in s
@pytest.mark.parametrize("server_process_path", PARAMETERIZED_SERVER_PROCESS_PATHS)
def test_server_proxy_hash_sign_encoding(
server_process_path: str, a_server_port_and_token: Tuple[int, str]
) -> None:
"""
FIXME: This is a test to establish the current behavior, but if it should be
like this is a separate question not yet addressed.
Related: https://github.com/jupyterhub/jupyter-server-proxy/issues/109
"""
PORT, TOKEN = a_server_port_and_token
h = HTTPConnection(LOCALHOST, PORT, 10)
# Case 0: a reference case
path = f"?token={TOKEN}"
h.request("GET", server_process_path + path)
r = h.getresponse()
assert r.code == 200
s = r.read().decode("ascii")
assert f"GET /{path} " in s
# Case 1: #bla?token=secret -> everything following # ignored -> redirect because no token
path = f"#bla?token={TOKEN}"
h.request("GET", server_process_path + path)
r = h.getresponse()
assert r.code == 200
s = r.read().decode("ascii")
assert "GET / " in s
# Case 2: %23bla?token=secret -> %23 is # -> everything following # ignored -> redirect because no token
path = f"%23?token={TOKEN}"
h.request("GET", server_process_path + path)
r = h.getresponse()
assert r.code == 200
s = r.read().decode("ascii")
assert "GET / " in s
# Case 3: ?token=secret#test -> invalid token -> jupyter notebook server errors: NoneType can't be used in 'await' expression
#
# [E 11:37:49.991 NotebookApp] Uncaught exception GET /python-http/?token=secrettest (127.0.0.1)
# HTTPServerRequest(protocol='http', host='localhost:8888', method='GET', uri='/python-http/?token=secrettest', version='HTTP/1.1', remote_ip='127.0.0.1')
# Traceback (most recent call last):
# File "/home/erik/py/lib/python3.7/site-packages/tornado/web.py", line 1704, in _execute
# result = await result
# File "/home/erik/py/lib/python3.7/site-packages/jupyter_server_proxy/websocket.py", line 97, in get
# return await self.http_get(*args, **kwargs)
# File "/home/erik/py/lib/python3.7/site-packages/jupyter_server_proxy/handlers.py", line 539, in http_get
# return await self.proxy(self.port, path)
# TypeError: object NoneType can't be used in 'await' expression
path = f"?token={TOKEN}#test"
h.request("GET", server_process_path + path)
r = h.getresponse()
assert r.code == 302
s = r.read().decode("ascii")
assert s == ""
def test_server_rewrite_response(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-rewrite-response/ciao-a-tutti", TOKEN)
assert r.code == 418
assert r.reason == "I'm a teapot"
assert ("I-Like", "tacos") in r.headers.items()
assert ("Proxied-Host-Port", "localhost:54323") in r.headers.items()
assert ("Proxied-Path", "/ciao-a-tutti") in r.headers.items()
s = r.read().decode("ascii")
assert s.startswith("GET /hello-a-tutti?token=")
def test_chained_rewrite_response(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-chained-rewrite-response/ciao-a-tutti", TOKEN)
assert r.code == 418
assert r.reason == "I'm a teapot"
s = r.read().decode("ascii")
assert s.startswith("GET /foo-a-tutti?token=")
def test_cats_and_dogs_rewrite_response(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-cats-only-rewrite-response/goats", TOKEN)
assert r.code == 200
r = request_get(PORT, "/python-cats-only-rewrite-response/cat-club", TOKEN)
s = r.read().decode("ascii")
assert r.code == 403
assert r.reason == "Forbidden"
assert s == "dogs not allowed"
r = request_get(PORT, "/python-dogs-only-rewrite-response/cat-club", TOKEN)
s = r.read().decode("ascii")
assert r.code == 403
assert r.reason == "Forbidden"
assert s == "cats not allowed"
def test_server_proxy_non_absolute(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http/abc", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /abc?token=")
assert "X-Forwarded-Context: /python-http\n" in s
assert "X-Proxycontextpath: /python-http\n" in s
def test_server_proxy_absolute(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-abs/def", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /python-http-abs/def?token=")
assert "X-Forwarded-Context" not in s
assert "X-Proxycontextpath" not in s
def test_server_proxy_requested_port(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-port54321/ghi", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /ghi?token=")
assert "X-Forwarded-Context: /python-http-port54321\n" in s
assert "X-Proxycontextpath: /python-http-port54321\n" in s
direct = request_get(54321, "/ghi", TOKEN)
assert direct.code == 200
def test_server_proxy_on_requested_port_no_command(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-proxyto54321-no-command/ghi", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /ghi?token=")
assert "X-Forwarded-Context: /python-proxyto54321-no-command\n" in s
assert "X-Proxycontextpath: /python-proxyto54321-no-command\n" in s
direct = request_get(54321, "/ghi", TOKEN)
assert direct.code == 200
def test_server_proxy_port_non_absolute(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/proxy/54321/jkl", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /jkl?token=")
assert "X-Forwarded-Context: /proxy/54321\n" in s
assert "X-Proxycontextpath: /proxy/54321\n" in s
def test_server_proxy_port_absolute(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/proxy/absolute/54321/nmo", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /proxy/absolute/54321/nmo?token=")
assert "X-Forwarded-Context" not in s
assert "X-Proxycontextpath" not in s
def test_server_proxy_host_non_absolute(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
# note: localhost: is stripped but 127.0.0.1: is not
r = request_get(PORT, "/proxy/127.0.0.1:54321/jkl", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /jkl?token=")
assert "X-Forwarded-Context: /proxy/127.0.0.1:54321\n" in s
assert "X-Proxycontextpath: /proxy/127.0.0.1:54321\n" in s
def test_server_proxy_host_absolute(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/proxy/absolute/127.0.0.1:54321/nmo", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /proxy/absolute/127.0.0.1:54321/nmo?token=")
assert "X-Forwarded-Context" not in s
assert "X-Proxycontextpath" not in s
@pytest.mark.parametrize("absolute", ["", "/absolute"])
def test_server_proxy_host_invalid(
a_server_port_and_token: Tuple[int, str], absolute: str
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, f"/proxy{absolute}/<invalid>:54321/", TOKEN)
assert r.code == 403
s = r.read().decode("ascii")
assert "Host '<invalid>' is not allowed." in s
def test_server_proxy_port_non_service_rewrite_response(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
"""Test that 'hello' is replaced by 'foo'."""
r = request_get(PORT, "/proxy/54321/hello", TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET /foo?token=")
@pytest.mark.parametrize(
"requestpath,expected",
[
("/", "/index.html?token="),
("/?q=1", "/index.html?q=1&token="),
("/pqr?q=2", "/pqr?q=2&token="),
],
)
def test_server_proxy_mappath_dict(
requestpath, expected, a_server_port_and_token: Tuple[int, str]
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-mappath" + requestpath, TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET " + expected)
assert "X-Forwarded-Context: /python-http-mappath\n" in s
assert "X-Proxycontextpath: /python-http-mappath\n" in s
@pytest.mark.parametrize(
"requestpath,expected",
[
("/", "/mapped?token="),
("/?q=1", "/mapped?q=1&token="),
("/stu?q=2", "/stumapped?q=2&token="),
],
)
def test_server_proxy_mappath_callable(
requestpath, expected, a_server_port_and_token: Tuple[int, str]
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-mappathf" + requestpath, TOKEN)
assert r.code == 200
s = r.read().decode("ascii")
assert s.startswith("GET " + expected)
assert "X-Forwarded-Context: /python-http-mappathf\n" in s
assert "X-Proxycontextpath: /python-http-mappathf\n" in s
def test_server_proxy_remote(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/newproxy", TOKEN, host="127.0.0.1")
assert r.code == 200
def test_server_request_headers(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-request-headers/", TOKEN, host="127.0.0.1")
assert r.code == 200
s = r.read().decode("ascii")
assert "X-Custom-Header: pytest-23456\n" in s
def test_server_content_encoding_header(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-gzipserver/", TOKEN, host="127.0.0.1")
assert r.code == 200
assert r.headers["Content-Encoding"] == "gzip"
with gzip.GzipFile(fileobj=BytesIO(r.read()), mode="r") as f:
assert f.read() == b"this is a test"
async def test_eventstream(a_server_port_and_token: Tuple[int, str]) -> None:
PORT, TOKEN = a_server_port_and_token
# The test server under eventstream.py will send back monotonically increasing numbers
# starting at 0 until the specified limit, with a 500ms gap between them. We test that:
# 1. We get back as many callbacks from our streaming read as the total number,
# as the server does a flush after writing each entry.
# 2. The streaming entries are read (with some error margin) around the 500ms mark, to
# ensure this is *actually* being streamed
limit = 3
last_cb_time = time.perf_counter()
times_called = 0
stream_read_intervals = []
stream_data = []
def streaming_cb(data):
nonlocal times_called, last_cb_time, stream_read_intervals
time_taken = time.perf_counter() - last_cb_time
last_cb_time = time.perf_counter()
stream_read_intervals.append(time_taken)
times_called += 1
stream_data.append(data)
url = f"http://{LOCALHOST}:{PORT}/python-eventstream/stream/{limit}?token={TOKEN}"
client = AsyncHTTPClient()
await client.fetch(
url,
headers={"Accept": "text/event-stream"},
streaming_callback=streaming_cb,
)
assert times_called == limit
assert all([0.45 < t < 3.0 for t in stream_read_intervals])
assert stream_data == [b"data: 0\n\n", b"data: 1\n\n", b"data: 2\n\n"]
async def test_server_proxy_websocket_messages(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
url = f"ws://{LOCALHOST}:{PORT}/python-websocket/echosocket?token={TOKEN}"
conn = await websocket_connect(url)
expected_msg = "Hello, world!"
await conn.write_message(expected_msg)
msg = await conn.read_message()
assert msg == expected_msg
async def test_server_proxy_websocket_headers(a_server_port_and_token: Tuple[int, str]):
PORT, TOKEN = a_server_port_and_token
url = f"ws://{LOCALHOST}:{PORT}/python-websocket/headerssocket?token={TOKEN}"
conn = await websocket_connect(url)
await conn.write_message("Hello")
msg = await conn.read_message()
headers = json.loads(msg)
assert "X-Custom-Header" in headers
assert headers["X-Custom-Header"] == "pytest-23456"
@pytest.mark.parametrize(
"client_requested,server_received,server_responded,proxy_responded",
[
(None, None, None, None),
(["first"], ["first"], "first", "first"),
(["first", "second"], ["first", "second"], "first", "first"),
# IMPORTANT: The tests below verify current bugged behavior, and the
# commented out tests is what we want to succeed!
#
# The proxy websocket should actually respond the handshake
# with a subprotocol based on a the server handshake
# response, but we are finalizing the client/proxy handshake
# before the proxy/server handshake, and that makes it
# impossible. We currently instead just pick the first
# requested protocol no matter what what subprotocol the
# server picks and warn if there is a mismatch retroactively.
#
# Tracked in https://github.com/jupyterhub/jupyter-server-proxy/issues/459.
#
# Bug - server_responded doesn't match proxy_responded:
(["first", "favored"], ["first", "favored"], "favored", "first"),
# (["first", "favored"], ["first", "favored"], "favored", "favored"),
(
["please_select_no_protocol"],
["please_select_no_protocol"],
None,
"please_select_no_protocol",
),
# (["please_select_no_protocol"], ["please_select_no_protocol"], None, None),
],
)
async def test_server_proxy_websocket_subprotocols(
a_server_port_and_token: Tuple[int, str],
client_requested,
server_received,
server_responded,
proxy_responded,
):
PORT, TOKEN = a_server_port_and_token
url = f"ws://{LOCALHOST}:{PORT}/python-websocket/subprotocolsocket?token={TOKEN}"
conn = await websocket_connect(url, subprotocols=client_requested)
await conn.write_message("Hello, world!")
# verify understanding of websocket_connect that this test relies on
if client_requested:
assert "Sec-Websocket-Protocol" in conn.request.headers
else:
assert "Sec-Websocket-Protocol" not in conn.request.headers
msg = await conn.read_message()
info = json.loads(msg)
assert info["requested_subprotocols"] == server_received
assert info["selected_subprotocol"] == server_responded
assert conn.selected_subprotocol == proxy_responded
# verify proxy response headers directly
if proxy_responded is None:
assert "Sec-Websocket-Protocol" not in conn.headers
else:
assert "Sec-Websocket-Protocol" in conn.headers
async def test_websocket_no_auth_failure(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT = a_server_port_and_token[0]
# Intentionally do not pass an appropriate token, which should cause a 403
url = f"ws://{LOCALHOST}:{PORT}/python-websocket/headerssocket"
with pytest.raises(HTTPClientError, match=r".*HTTP 403: Forbidden.*"):
await websocket_connect(url)
@pytest.mark.parametrize(
"proxy_path, status",
[
(LOCALHOST, 404),
(f"{LOCALHOST}/path", 404),
(f"{LOCALHOST}@192.168.1.1", 404),
(f"{LOCALHOST}@192.168.1.1/path", 404),
("user:pass@host:123/foo", 404),
("user:pass@host/foo", 404),
("absolute/{LOCALHOST}:[email protected]/path", 404),
],
)
def test_bad_server_proxy_url(
proxy_path, status, a_server_port_and_token: Tuple[int, str]
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, f"/proxy/{proxy_path}", TOKEN)
assert r.code == status
if status >= 400:
# request should not have been proxied
assert "X-ProxyContextPath" not in r.headers
def test_callable_environment_formatting(
a_server_port_and_token: Tuple[int, str],
) -> None:
PORT, TOKEN = a_server_port_and_token
r = request_get(PORT, "/python-http-callable-env/test", TOKEN)
assert r.code == 200
@pytest.mark.parametrize(
"rawsocket_type",
[
"tcp",
pytest.param(
"unix",
marks=pytest.mark.skipif(
sys.platform == "win32", reason="Unix socket not supported on Windows"
),
),
],
)
async def test_server_proxy_rawsocket(
rawsocket_type: str, a_server_port_and_token: Tuple[int, str]
) -> None:
PORT, TOKEN = a_server_port_and_token
url = f"ws://{LOCALHOST}:{PORT}/python-rawsocket-{rawsocket_type}/?token={TOKEN}"
conn = await websocket_connect(url)
for msg in [b"Hello,", b"world!"]:
await conn.write_message(msg)
res = await conn.read_message()
assert res == msg.swapcase()