-
-
Notifications
You must be signed in to change notification settings - Fork 539
/
Copy pathtest_server.py
647 lines (549 loc) · 25.6 KB
/
test_server.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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
import dataclasses
import hmac
import http
import logging
import socket
import threading
import time
import unittest
from websockets import CloseCode
from websockets.exceptions import (
ConnectionClosedError,
ConnectionClosedOK,
InvalidStatus,
NegotiationError,
)
from websockets.http11 import Request, Response
from websockets.sync.client import connect, unix_connect
from websockets.sync.server import *
from ..utils import (
CLIENT_CONTEXT,
MS,
SERVER_CONTEXT,
DeprecationTestCase,
temp_unix_socket_path,
)
from .server import (
EvalShellMixin,
get_uri,
handler,
run_server,
run_unix_server,
)
class ServerTests(EvalShellMixin, unittest.TestCase):
def test_connection(self):
"""Server receives connection from client and the handshake succeeds."""
with run_server() as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.protocol.state.name", "OPEN")
def test_connection_handler_returns(self):
"""Connection handler returns."""
with run_server() as server:
with connect(get_uri(server) + "/no-op") as client:
with self.assertRaises(ConnectionClosedOK) as raised:
client.recv()
self.assertEqual(
str(raised.exception),
"received 1000 (OK); then sent 1000 (OK)",
)
def test_connection_handler_raises_exception(self):
"""Connection handler raises an exception."""
with run_server() as server:
with connect(get_uri(server) + "/crash") as client:
with self.assertRaises(ConnectionClosedError) as raised:
client.recv()
self.assertEqual(
str(raised.exception),
"received 1011 (internal error); then sent 1011 (internal error)",
)
def test_existing_socket(self):
"""Server receives connection using a pre-existing socket."""
with socket.create_server(("localhost", 0)) as sock:
host, port = sock.getsockname()
with run_server(sock=sock):
with connect(f"ws://{host}:{port}/") as client:
self.assertEval(client, "ws.protocol.state.name", "OPEN")
def test_select_subprotocol(self):
"""Server selects a subprotocol with the select_subprotocol callable."""
def select_subprotocol(ws, subprotocols):
ws.select_subprotocol_ran = True
assert "chat" in subprotocols
return "chat"
with run_server(
subprotocols=["chat"],
select_subprotocol=select_subprotocol,
) as server:
with connect(get_uri(server), subprotocols=["chat"]) as client:
self.assertEval(client, "ws.select_subprotocol_ran", "True")
self.assertEval(client, "ws.subprotocol", "chat")
def test_select_subprotocol_rejects_handshake(self):
"""Server rejects handshake if select_subprotocol raises NegotiationError."""
def select_subprotocol(ws, subprotocols):
raise NegotiationError
with run_server(select_subprotocol=select_subprotocol) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 400",
)
def test_select_subprotocol_raises_exception(self):
"""Server returns an error if select_subprotocol raises an exception."""
def select_subprotocol(ws, subprotocols):
raise RuntimeError
with run_server(select_subprotocol=select_subprotocol) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 500",
)
def test_compression_is_enabled(self):
"""Server enables compression by default."""
with run_server() as server:
with connect(get_uri(server)) as client:
self.assertEval(
client,
"[type(ext).__name__ for ext in ws.protocol.extensions]",
"['PerMessageDeflate']",
)
def test_disable_compression(self):
"""Server disables compression."""
with run_server(compression=None) as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.protocol.extensions", "[]")
def test_process_request_returns_none(self):
"""Server runs process_request and continues the handshake."""
def process_request(ws, request):
self.assertIsInstance(request, Request)
ws.process_request_ran = True
with run_server(process_request=process_request) as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.process_request_ran", "True")
def test_process_request_returns_response(self):
"""Server aborts handshake if process_request returns a response."""
def process_request(ws, request):
return ws.respond(http.HTTPStatus.FORBIDDEN, "Forbidden")
def handler(ws):
self.fail("handler must not run")
with run_server(handler, process_request=process_request) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 403",
)
def test_process_request_raises_exception(self):
"""Server returns an error if process_request raises an exception."""
def process_request(ws, request):
raise RuntimeError
with run_server(process_request=process_request) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 500",
)
def test_process_response_returns_none(self):
"""Server runs process_response but keeps the handshake response."""
def process_response(ws, request, response):
self.assertIsInstance(request, Request)
self.assertIsInstance(response, Response)
ws.process_response_ran = True
with run_server(process_response=process_response) as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.process_response_ran", "True")
def test_process_response_modifies_response(self):
"""Server runs process_response and modifies the handshake response."""
def process_response(ws, request, response):
response.headers["X-ProcessResponse"] = "OK"
with run_server(process_response=process_response) as server:
with connect(get_uri(server)) as client:
self.assertEqual(client.response.headers["X-ProcessResponse"], "OK")
def test_process_response_replaces_response(self):
"""Server runs process_response and replaces the handshake response."""
def process_response(ws, request, response):
headers = response.headers.copy()
headers["X-ProcessResponse"] = "OK"
return dataclasses.replace(response, headers=headers)
with run_server(process_response=process_response) as server:
with connect(get_uri(server)) as client:
self.assertEqual(client.response.headers["X-ProcessResponse"], "OK")
def test_process_response_raises_exception(self):
"""Server returns an error if process_response raises an exception."""
def process_response(ws, request, response):
raise RuntimeError
with run_server(process_response=process_response) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 500",
)
def test_override_server(self):
"""Server can override Server header with server_header."""
with run_server(server_header="Neo") as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.response.headers['Server']", "Neo")
def test_remove_server(self):
"""Server can remove Server header with server_header."""
with run_server(server_header=None) as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "'Server' in ws.response.headers", "False")
def test_keepalive_is_enabled(self):
"""Server enables keepalive and measures latency."""
with run_server(ping_interval=MS) as server:
with connect(get_uri(server)) as client:
client.send("ws.latency")
latency = eval(client.recv())
self.assertEqual(latency, 0)
time.sleep(2 * MS)
client.send("ws.latency")
latency = eval(client.recv())
self.assertGreater(latency, 0)
def test_disable_keepalive(self):
"""Server disables keepalive."""
with run_server(ping_interval=None) as server:
with connect(get_uri(server)) as client:
time.sleep(2 * MS)
client.send("ws.latency")
latency = eval(client.recv())
self.assertEqual(latency, 0)
def test_logger(self):
"""Server accepts a logger argument."""
logger = logging.getLogger("test")
with run_server(logger=logger) as server:
self.assertEqual(server.logger.name, logger.name)
def test_custom_connection_factory(self):
"""Server runs ServerConnection factory provided in create_connection."""
def create_connection(*args, **kwargs):
server = ServerConnection(*args, **kwargs)
server.create_connection_ran = True
return server
with run_server(create_connection=create_connection) as server:
with connect(get_uri(server)) as client:
self.assertEval(client, "ws.create_connection_ran", "True")
def test_fileno(self):
"""Server provides a fileno attribute."""
with run_server() as server:
self.assertIsInstance(server.fileno(), int)
def test_shutdown(self):
"""Server provides a shutdown method."""
with run_server() as server:
server.shutdown()
# Check that the server socket is closed.
with self.assertRaises(OSError):
server.socket.accept()
def test_handshake_fails(self):
"""Server receives connection from client but the handshake fails."""
def remove_key_header(self, request):
del request.headers["Sec-WebSocket-Key"]
with run_server(process_request=remove_key_header) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 400",
)
def test_timeout_during_handshake(self):
"""Server times out before receiving handshake request from client."""
with run_server(open_timeout=MS) as server:
with socket.create_connection(server.socket.getsockname()) as sock:
self.assertEqual(sock.recv(4096), b"")
def test_connection_closed_during_handshake(self):
"""Server reads EOF before receiving handshake request from client."""
with run_server() as server:
with socket.create_connection(server.socket.getsockname()):
# Wait for the server to receive the connection, then close it.
time.sleep(MS)
def test_junk_handshake(self):
"""Server closes the connection when receiving non-HTTP request from client."""
with self.assertLogs("websockets.server", logging.ERROR) as logs:
with run_server() as server:
with socket.create_connection(server.socket.getsockname()) as sock:
sock.send(b"HELO relay.invalid\r\n")
# Wait for the server to close the connection.
self.assertEqual(sock.recv(4096), b"")
self.assertEqual(
[record.getMessage() for record in logs.records],
["opening handshake failed"],
)
self.assertEqual(
[str(record.exc_info[1]) for record in logs.records],
["did not receive a valid HTTP request"],
)
self.assertEqual(
[str(record.exc_info[1].__cause__) for record in logs.records],
["invalid HTTP request line: HELO relay.invalid"],
)
def test_initialize_server_without_tracking_connections(self):
"""Call Server() constructor without 'connections' arg."""
with socket.create_server(("localhost", 0)) as sock:
server = Server(socket=sock, handler=handler)
self.assertIsInstance(
server._connections, set, "Server._connections property not initialized"
)
def test_connections_is_empty_after_disconnects(self):
"""Clients are added to Server._connections, and removed when disconnected."""
with run_server() as server:
connections: set[ServerConnection] = server._connections
with connect(get_uri(server)):
self.assertEqual(len(connections), 1)
time.sleep(0.5)
self.assertEqual(len(connections), 0)
def test_shutdown_calls_close_for_all_connections(self):
"""Graceful shutdown with broken ServerConnection.close() implementations."""
CLIENTS_TO_LAUNCH = 3
connections_attempted = 0
class ServerConnectionWithBrokenClose(ServerConnection):
close_method_called = False
def close(self, code=CloseCode.NORMAL_CLOSURE, reason=""):
"""Custom close method that intentionally fails."""
# Do not increment the counter when calling .close() multiple times
if self.close_method_called:
return
self.close_method_called = True
nonlocal connections_attempted
connections_attempted += 1
raise Exception("broken close method")
clients: set[threading.Thread] = set()
with run_server(create_connection=ServerConnectionWithBrokenClose) as server:
def client():
with connect(get_uri(server)):
time.sleep(1)
for i in range(CLIENTS_TO_LAUNCH):
client_thread = threading.Thread(target=client)
client_thread.start()
clients.add(client_thread)
time.sleep(0.2)
self.assertEqual(
len(server._connections),
CLIENTS_TO_LAUNCH,
"not all clients connected to the server yet, increase sleep duration",
)
server.shutdown()
while len(clients) > 0:
client = clients.pop()
client.join()
self.assertEqual(
connections_attempted,
CLIENTS_TO_LAUNCH,
"server did not call ServerConnection.close() on all connections",
)
class SecureServerTests(EvalShellMixin, unittest.TestCase):
def test_connection(self):
"""Server receives secure connection from client."""
with run_server(ssl=SERVER_CONTEXT) as server:
with connect(get_uri(server), ssl=CLIENT_CONTEXT) as client:
self.assertEval(client, "ws.protocol.state.name", "OPEN")
self.assertEval(client, "ws.socket.version()[:3]", "TLS")
def test_timeout_during_tls_handshake(self):
"""Server times out before receiving TLS handshake request from client."""
with run_server(ssl=SERVER_CONTEXT, open_timeout=MS) as server:
with socket.create_connection(server.socket.getsockname()) as sock:
self.assertEqual(sock.recv(4096), b"")
def test_connection_closed_during_tls_handshake(self):
"""Server reads EOF before receiving TLS handshake request from client."""
with run_server(ssl=SERVER_CONTEXT) as server:
with socket.create_connection(server.socket.getsockname()):
# Wait for the server to receive the connection, then close it.
time.sleep(MS)
@unittest.skipUnless(hasattr(socket, "AF_UNIX"), "this test requires Unix sockets")
class UnixServerTests(EvalShellMixin, unittest.TestCase):
def test_connection(self):
"""Server receives connection from client over a Unix socket."""
with temp_unix_socket_path() as path:
with run_unix_server(path):
with unix_connect(path) as client:
self.assertEval(client, "ws.protocol.state.name", "OPEN")
@unittest.skipUnless(hasattr(socket, "AF_UNIX"), "this test requires Unix sockets")
class SecureUnixServerTests(EvalShellMixin, unittest.TestCase):
def test_connection(self):
"""Server receives secure connection from client over a Unix socket."""
with temp_unix_socket_path() as path:
with run_unix_server(path, ssl=SERVER_CONTEXT):
with unix_connect(path, ssl=CLIENT_CONTEXT) as client:
self.assertEval(client, "ws.protocol.state.name", "OPEN")
self.assertEval(client, "ws.socket.version()[:3]", "TLS")
class ServerUsageErrorsTests(unittest.TestCase):
def test_unix_without_path_or_sock(self):
"""Unix server requires path when sock isn't provided."""
with self.assertRaises(ValueError) as raised:
unix_serve(handler)
self.assertEqual(
str(raised.exception),
"missing path argument",
)
def test_unix_with_path_and_sock(self):
"""Unix server rejects path when sock is provided."""
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
self.addCleanup(sock.close)
with self.assertRaises(ValueError) as raised:
unix_serve(handler, path="/", sock=sock)
self.assertEqual(
str(raised.exception),
"path and sock arguments are incompatible",
)
def test_invalid_subprotocol(self):
"""Server rejects single value of subprotocols."""
with self.assertRaises(TypeError) as raised:
serve(handler, subprotocols="chat")
self.assertEqual(
str(raised.exception),
"subprotocols must be a list, not a str",
)
def test_unsupported_compression(self):
"""Server rejects incorrect value of compression."""
with self.assertRaises(ValueError) as raised:
serve(handler, compression=False)
self.assertEqual(
str(raised.exception),
"unsupported compression: False",
)
class BasicAuthTests(EvalShellMixin, unittest.IsolatedAsyncioTestCase):
def test_valid_authorization(self):
"""basic_auth authenticates client with HTTP Basic Authentication."""
with run_server(
process_request=basic_auth(credentials=("hello", "iloveyou")),
) as server:
with connect(
get_uri(server),
additional_headers={"Authorization": "Basic aGVsbG86aWxvdmV5b3U="},
) as client:
self.assertEval(client, "ws.username", "hello")
def test_missing_authorization(self):
"""basic_auth rejects client without credentials."""
with run_server(
process_request=basic_auth(credentials=("hello", "iloveyou")),
) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(get_uri(server)):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 401",
)
def test_unsupported_authorization(self):
"""basic_auth rejects client with unsupported credentials."""
with run_server(
process_request=basic_auth(credentials=("hello", "iloveyou")),
) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(
get_uri(server),
additional_headers={"Authorization": "Negotiate ..."},
):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 401",
)
def test_authorization_with_unknown_username(self):
"""basic_auth rejects client with unknown username."""
with run_server(
process_request=basic_auth(credentials=("hello", "iloveyou")),
) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(
get_uri(server),
additional_headers={"Authorization": "Basic YnllOnlvdWxvdmVtZQ=="},
):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 401",
)
def test_authorization_with_incorrect_password(self):
"""basic_auth rejects client with incorrect password."""
with run_server(
process_request=basic_auth(credentials=("hello", "changeme")),
) as server:
with self.assertRaises(InvalidStatus) as raised:
with connect(
get_uri(server),
additional_headers={"Authorization": "Basic aGVsbG86aWxvdmV5b3U="},
):
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"server rejected WebSocket connection: HTTP 401",
)
def test_list_of_credentials(self):
"""basic_auth accepts a list of hard coded credentials."""
with run_server(
process_request=basic_auth(
credentials=[
("hello", "iloveyou"),
("bye", "youloveme"),
]
),
) as server:
with connect(
get_uri(server),
additional_headers={"Authorization": "Basic YnllOnlvdWxvdmVtZQ=="},
) as client:
self.assertEval(client, "ws.username", "bye")
def test_check_credentials(self):
"""basic_auth accepts a check_credentials function."""
def check_credentials(username, password):
return hmac.compare_digest(password, "iloveyou")
with run_server(
process_request=basic_auth(check_credentials=check_credentials),
) as server:
with connect(
get_uri(server),
additional_headers={"Authorization": "Basic aGVsbG86aWxvdmV5b3U="},
) as client:
self.assertEval(client, "ws.username", "hello")
def test_without_credentials_or_check_credentials(self):
"""basic_auth requires either credentials or check_credentials."""
with self.assertRaises(ValueError) as raised:
basic_auth()
self.assertEqual(
str(raised.exception),
"provide either credentials or check_credentials",
)
def test_with_credentials_and_check_credentials(self):
"""basic_auth requires only one of credentials and check_credentials."""
with self.assertRaises(ValueError) as raised:
basic_auth(
credentials=("hello", "iloveyou"),
check_credentials=lambda: False, # pragma: no cover
)
self.assertEqual(
str(raised.exception),
"provide either credentials or check_credentials",
)
def test_bad_credentials(self):
"""basic_auth receives an unsupported credentials argument."""
with self.assertRaises(TypeError) as raised:
basic_auth(credentials=42)
self.assertEqual(
str(raised.exception),
"invalid credentials argument: 42",
)
def test_bad_list_of_credentials(self):
"""basic_auth receives an unsupported credentials argument."""
with self.assertRaises(TypeError) as raised:
basic_auth(credentials=[42])
self.assertEqual(
str(raised.exception),
"invalid credentials argument: [42]",
)
class BackwardsCompatibilityTests(DeprecationTestCase):
def test_ssl_context_argument(self):
"""Server supports the deprecated ssl_context argument."""
with self.assertDeprecationWarning("ssl_context was renamed to ssl"):
with run_server(ssl_context=SERVER_CONTEXT) as server:
with connect(get_uri(server), ssl=CLIENT_CONTEXT):
pass
def test_web_socket_server_class(self):
with self.assertDeprecationWarning("WebSocketServer was renamed to Server"):
from websockets.sync.server import WebSocketServer
self.assertIs(WebSocketServer, Server)