-
-
Notifications
You must be signed in to change notification settings - Fork 539
/
Copy pathtest_connection.py
1361 lines (1112 loc) · 54.2 KB
/
test_connection.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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import asyncio
import contextlib
import logging
import socket
import sys
import unittest
import uuid
from unittest.mock import Mock, patch
from websockets.asyncio.compatibility import TimeoutError, aiter, anext, asyncio_timeout
from websockets.asyncio.connection import *
from websockets.asyncio.connection import broadcast
from websockets.exceptions import (
ConcurrencyError,
ConnectionClosedError,
ConnectionClosedOK,
)
from websockets.frames import CloseCode, Frame, Opcode
from websockets.protocol import CLIENT, SERVER, Protocol, State
from ..protocol import RecordingProtocol
from ..utils import MS
from .connection import InterceptingConnection
from .utils import alist
# Connection implements symmetrical behavior between clients and servers.
# All tests run on the client side and the server side to validate this.
class ClientConnectionTests(unittest.IsolatedAsyncioTestCase):
LOCAL = CLIENT
REMOTE = SERVER
async def asyncSetUp(self):
loop = asyncio.get_running_loop()
socket_, remote_socket = socket.socketpair()
self.transport, self.connection = await loop.create_connection(
lambda: Connection(Protocol(self.LOCAL), close_timeout=2 * MS),
sock=socket_,
)
self.remote_transport, self.remote_connection = await loop.create_connection(
lambda: InterceptingConnection(RecordingProtocol(self.REMOTE)),
sock=remote_socket,
)
async def asyncTearDown(self):
await self.remote_connection.close()
await self.connection.close()
if sys.version_info[:2] < (3, 10): # pragma: no cover
@contextlib.contextmanager
def assertNoLogs(self, logger="websockets", level=logging.ERROR):
"""
No message is logged on the given logger with at least the given level.
"""
with self.assertLogs(logger, level) as logs:
# We want to test that no log message is emitted
# but assertLogs expects at least one log message.
logging.getLogger(logger).log(level, "dummy")
yield
level_name = logging.getLevelName(level)
self.assertEqual(logs.output, [f"{level_name}:{logger}:dummy"])
# Test helpers built upon RecordingProtocol and InterceptingConnection.
async def assertFrameSent(self, frame):
"""Check that a single frame was sent."""
# Let the remote side process messages.
# Two runs of the event loop are required for answering pings.
await asyncio.sleep(0)
await asyncio.sleep(0)
self.assertEqual(self.remote_connection.protocol.get_frames_rcvd(), [frame])
async def assertFramesSent(self, frames):
"""Check that several frames were sent."""
# Let the remote side process messages.
# Two runs of the event loop are required for answering pings.
await asyncio.sleep(0)
await asyncio.sleep(0)
self.assertEqual(self.remote_connection.protocol.get_frames_rcvd(), frames)
async def assertNoFrameSent(self):
"""Check that no frame was sent."""
# Run the event loop twice for consistency with assertFrameSent.
await asyncio.sleep(0)
await asyncio.sleep(0)
self.assertEqual(self.remote_connection.protocol.get_frames_rcvd(), [])
@contextlib.asynccontextmanager
async def delay_frames_rcvd(self, delay):
"""Delay frames before they're received by the connection."""
with self.remote_connection.delay_frames_sent(delay):
yield
await asyncio.sleep(MS) # let the remote side process messages
@contextlib.asynccontextmanager
async def delay_eof_rcvd(self, delay):
"""Delay EOF before it's received by the connection."""
with self.remote_connection.delay_eof_sent(delay):
yield
await asyncio.sleep(MS) # let the remote side process messages
@contextlib.asynccontextmanager
async def drop_frames_rcvd(self):
"""Drop frames before they're received by the connection."""
with self.remote_connection.drop_frames_sent():
yield
await asyncio.sleep(MS) # let the remote side process messages
@contextlib.asynccontextmanager
async def drop_eof_rcvd(self):
"""Drop EOF before it's received by the connection."""
with self.remote_connection.drop_eof_sent():
yield
await asyncio.sleep(MS) # let the remote side process messages
# Test __aenter__ and __aexit__.
async def test_aenter(self):
"""__aenter__ returns the connection itself."""
async with self.connection as connection:
self.assertIs(connection, self.connection)
async def test_aexit(self):
"""__aexit__ closes the connection with code 1000."""
async with self.connection:
await self.assertNoFrameSent()
await self.assertFrameSent(Frame(Opcode.CLOSE, b"\x03\xe8"))
async def test_exit_with_exception(self):
"""__exit__ with an exception closes the connection with code 1011."""
with self.assertRaises(RuntimeError):
async with self.connection:
raise RuntimeError
await self.assertFrameSent(Frame(Opcode.CLOSE, b"\x03\xf3"))
# Test __aiter__.
async def test_aiter_text(self):
"""__aiter__ yields text messages."""
aiterator = aiter(self.connection)
await self.remote_connection.send("😀")
self.assertEqual(await anext(aiterator), "😀")
await self.remote_connection.send("😀")
self.assertEqual(await anext(aiterator), "😀")
async def test_aiter_binary(self):
"""__aiter__ yields binary messages."""
aiterator = aiter(self.connection)
await self.remote_connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(await anext(aiterator), b"\x01\x02\xfe\xff")
await self.remote_connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(await anext(aiterator), b"\x01\x02\xfe\xff")
async def test_aiter_mixed(self):
"""__aiter__ yields a mix of text and binary messages."""
aiterator = aiter(self.connection)
await self.remote_connection.send("😀")
self.assertEqual(await anext(aiterator), "😀")
await self.remote_connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(await anext(aiterator), b"\x01\x02\xfe\xff")
async def test_aiter_connection_closed_ok(self):
"""__aiter__ terminates after a normal closure."""
aiterator = aiter(self.connection)
await self.remote_connection.close()
with self.assertRaises(StopAsyncIteration):
await anext(aiterator)
async def test_aiter_connection_closed_error(self):
"""__aiter__ raises ConnectionClosedError after an error."""
aiterator = aiter(self.connection)
await self.remote_connection.close(code=CloseCode.INTERNAL_ERROR)
with self.assertRaises(ConnectionClosedError):
await anext(aiterator)
# Test recv.
async def test_recv_text(self):
"""recv receives a text message."""
await self.remote_connection.send("😀")
self.assertEqual(await self.connection.recv(), "😀")
async def test_recv_binary(self):
"""recv receives a binary message."""
await self.remote_connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(await self.connection.recv(), b"\x01\x02\xfe\xff")
async def test_recv_text_as_bytes(self):
"""recv receives a text message as bytes."""
await self.remote_connection.send("😀")
self.assertEqual(await self.connection.recv(decode=False), "😀".encode())
async def test_recv_binary_as_text(self):
"""recv receives a binary message as a str."""
await self.remote_connection.send("😀".encode())
self.assertEqual(await self.connection.recv(decode=True), "😀")
async def test_recv_fragmented_text(self):
"""recv receives a fragmented text message."""
await self.remote_connection.send(["😀", "😀"])
self.assertEqual(await self.connection.recv(), "😀😀")
async def test_recv_fragmented_binary(self):
"""recv receives a fragmented binary message."""
await self.remote_connection.send([b"\x01\x02", b"\xfe\xff"])
self.assertEqual(await self.connection.recv(), b"\x01\x02\xfe\xff")
async def test_recv_connection_closed_ok(self):
"""recv raises ConnectionClosedOK after a normal closure."""
await self.remote_connection.close()
with self.assertRaises(ConnectionClosedOK):
await self.connection.recv()
async def test_recv_connection_closed_error(self):
"""recv raises ConnectionClosedError after an error."""
await self.remote_connection.close(code=CloseCode.INTERNAL_ERROR)
with self.assertRaises(ConnectionClosedError):
await self.connection.recv()
async def test_recv_during_recv(self):
"""recv raises ConcurrencyError when called concurrently."""
recv_task = asyncio.create_task(self.connection.recv())
await asyncio.sleep(0) # let the event loop start recv_task
self.addCleanup(recv_task.cancel)
with self.assertRaises(ConcurrencyError) as raised:
await self.connection.recv()
self.assertEqual(
str(raised.exception),
"cannot call recv while another coroutine "
"is already running recv or recv_streaming",
)
async def test_recv_during_recv_streaming(self):
"""recv raises ConcurrencyError when called concurrently with recv_streaming."""
recv_streaming_task = asyncio.create_task(
alist(self.connection.recv_streaming())
)
await asyncio.sleep(0) # let the event loop start recv_streaming_task
self.addCleanup(recv_streaming_task.cancel)
with self.assertRaises(ConcurrencyError) as raised:
await self.connection.recv()
self.assertEqual(
str(raised.exception),
"cannot call recv while another coroutine "
"is already running recv or recv_streaming",
)
async def test_recv_cancellation_before_receiving(self):
"""recv can be cancelled before receiving a frame."""
recv_task = asyncio.create_task(self.connection.recv())
await asyncio.sleep(0) # let the event loop start recv_task
recv_task.cancel()
await asyncio.sleep(0) # let the event loop cancel recv_task
# Running recv again receives the next message.
await self.remote_connection.send("😀")
self.assertEqual(await self.connection.recv(), "😀")
async def test_recv_cancellation_while_receiving(self):
"""recv cannot be cancelled after receiving a frame."""
recv_task = asyncio.create_task(self.connection.recv())
await asyncio.sleep(0) # let the event loop start recv_task
gate = asyncio.get_running_loop().create_future()
async def fragments():
yield "⏳"
await gate
yield "⌛️"
asyncio.create_task(self.remote_connection.send(fragments()))
await asyncio.sleep(MS)
recv_task.cancel()
await asyncio.sleep(0) # let the event loop cancel recv_task
# Running recv again receives the complete message.
gate.set_result(None)
self.assertEqual(await self.connection.recv(), "⏳⌛️")
# Test recv_streaming.
async def test_recv_streaming_text(self):
"""recv_streaming receives a text message."""
await self.remote_connection.send("😀")
self.assertEqual(
await alist(self.connection.recv_streaming()),
["😀"],
)
async def test_recv_streaming_binary(self):
"""recv_streaming receives a binary message."""
await self.remote_connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(
await alist(self.connection.recv_streaming()),
[b"\x01\x02\xfe\xff"],
)
async def test_recv_streaming_text_as_bytes(self):
"""recv_streaming receives a text message as bytes."""
await self.remote_connection.send("😀")
self.assertEqual(
await alist(self.connection.recv_streaming(decode=False)),
["😀".encode()],
)
async def test_recv_streaming_binary_as_str(self):
"""recv_streaming receives a binary message as a str."""
await self.remote_connection.send("😀".encode())
self.assertEqual(
await alist(self.connection.recv_streaming(decode=True)),
["😀"],
)
async def test_recv_streaming_fragmented_text(self):
"""recv_streaming receives a fragmented text message."""
await self.remote_connection.send(["😀", "😀"])
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_recv_streaming_fragmented_binary(self):
"""recv_streaming receives a fragmented binary message."""
await self.remote_connection.send([b"\x01\x02", b"\xfe\xff"])
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.connection.recv_streaming()),
[b"\x01\x02", b"\xfe\xff", b""],
)
async def test_recv_streaming_connection_closed_ok(self):
"""recv_streaming raises ConnectionClosedOK after a normal closure."""
await self.remote_connection.close()
with self.assertRaises(ConnectionClosedOK):
async for _ in self.connection.recv_streaming():
self.fail("did not raise")
async def test_recv_streaming_connection_closed_error(self):
"""recv_streaming raises ConnectionClosedError after an error."""
await self.remote_connection.close(code=CloseCode.INTERNAL_ERROR)
with self.assertRaises(ConnectionClosedError):
async for _ in self.connection.recv_streaming():
self.fail("did not raise")
async def test_recv_streaming_during_recv(self):
"""recv_streaming raises ConcurrencyError when called concurrently with recv."""
recv_task = asyncio.create_task(self.connection.recv())
await asyncio.sleep(0) # let the event loop start recv_task
self.addCleanup(recv_task.cancel)
with self.assertRaises(ConcurrencyError) as raised:
async for _ in self.connection.recv_streaming():
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
"cannot call recv_streaming while another coroutine "
"is already running recv or recv_streaming",
)
async def test_recv_streaming_during_recv_streaming(self):
"""recv_streaming raises ConcurrencyError when called concurrently."""
recv_streaming_task = asyncio.create_task(
alist(self.connection.recv_streaming())
)
await asyncio.sleep(0) # let the event loop start recv_streaming_task
self.addCleanup(recv_streaming_task.cancel)
with self.assertRaises(ConcurrencyError) as raised:
async for _ in self.connection.recv_streaming():
self.fail("did not raise")
self.assertEqual(
str(raised.exception),
r"cannot call recv_streaming while another coroutine "
r"is already running recv or recv_streaming",
)
async def test_recv_streaming_cancellation_before_receiving(self):
"""recv_streaming can be cancelled before receiving a frame."""
recv_streaming_task = asyncio.create_task(
alist(self.connection.recv_streaming())
)
await asyncio.sleep(0) # let the event loop start recv_streaming_task
recv_streaming_task.cancel()
await asyncio.sleep(0) # let the event loop cancel recv_streaming_task
# Running recv_streaming again receives the next message.
await self.remote_connection.send(["😀", "😀"])
self.assertEqual(
await alist(self.connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_recv_streaming_cancellation_while_receiving(self):
"""recv_streaming cannot be cancelled after receiving a frame."""
recv_streaming_task = asyncio.create_task(
alist(self.connection.recv_streaming())
)
await asyncio.sleep(0) # let the event loop start recv_streaming_task
gate = asyncio.get_running_loop().create_future()
async def fragments():
yield "⏳"
await gate
yield "⌛️"
asyncio.create_task(self.remote_connection.send(fragments()))
await asyncio.sleep(MS)
recv_streaming_task.cancel()
await asyncio.sleep(0) # let the event loop cancel recv_streaming_task
gate.set_result(None)
# Running recv_streaming again fails.
with self.assertRaises(ConcurrencyError):
await alist(self.connection.recv_streaming())
# Test send.
async def test_send_text(self):
"""send sends a text message."""
await self.connection.send("😀")
self.assertEqual(await self.remote_connection.recv(), "😀")
async def test_send_binary(self):
"""send sends a binary message."""
await self.connection.send(b"\x01\x02\xfe\xff")
self.assertEqual(await self.remote_connection.recv(), b"\x01\x02\xfe\xff")
async def test_send_binary_from_str(self):
"""send sends a binary message from a str."""
await self.connection.send("😀", text=False)
self.assertEqual(await self.remote_connection.recv(), "😀".encode())
async def test_send_text_from_bytes(self):
"""send sends a text message from bytes."""
await self.connection.send("😀".encode(), text=True)
self.assertEqual(await self.remote_connection.recv(), "😀")
async def test_send_fragmented_text(self):
"""send sends a fragmented text message."""
await self.connection.send(["😀", "😀"])
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_send_fragmented_binary(self):
"""send sends a fragmented binary message."""
await self.connection.send([b"\x01\x02", b"\xfe\xff"])
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
[b"\x01\x02", b"\xfe\xff", b""],
)
async def test_send_fragmented_binary_from_str(self):
"""send sends a fragmented binary message from a str."""
await self.connection.send(["😀", "😀"], text=False)
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀".encode(), "😀".encode(), b""],
)
async def test_send_fragmented_text_from_bytes(self):
"""send sends a fragmented text message from bytes."""
await self.connection.send(["😀".encode(), "😀".encode()], text=True)
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_send_async_fragmented_text(self):
"""send sends a fragmented text message asynchronously."""
async def fragments():
yield "😀"
yield "😀"
await self.connection.send(fragments())
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_send_async_fragmented_binary(self):
"""send sends a fragmented binary message asynchronously."""
async def fragments():
yield b"\x01\x02"
yield b"\xfe\xff"
await self.connection.send(fragments())
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
[b"\x01\x02", b"\xfe\xff", b""],
)
async def test_send_async_fragmented_binary_from_str(self):
"""send sends a fragmented binary message from a str asynchronously."""
async def fragments():
yield "😀"
yield "😀"
await self.connection.send(fragments(), text=False)
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀".encode(), "😀".encode(), b""],
)
async def test_send_async_fragmented_text_from_bytes(self):
"""send sends a fragmented text message from bytes asynchronously."""
async def fragments():
yield "😀".encode()
yield "😀".encode()
await self.connection.send(fragments(), text=True)
# websockets sends an trailing empty fragment. That's an implementation detail.
self.assertEqual(
await alist(self.remote_connection.recv_streaming()),
["😀", "😀", ""],
)
async def test_send_connection_closed_ok(self):
"""send raises ConnectionClosedOK after a normal closure."""
await self.remote_connection.close()
with self.assertRaises(ConnectionClosedOK):
await self.connection.send("😀")
async def test_send_connection_closed_error(self):
"""send raises ConnectionClosedError after an error."""
await self.remote_connection.close(code=CloseCode.INTERNAL_ERROR)
with self.assertRaises(ConnectionClosedError):
await self.connection.send("😀")
async def test_send_while_send_blocked(self):
"""send waits for a previous call to send to complete."""
# This test fails if the guard with fragmented_send_waiter is removed
# from send() in the case when message is an Iterable.
self.connection.pause_writing()
asyncio.create_task(self.connection.send(["⏳", "⌛️"]))
await asyncio.sleep(MS)
await self.assertFrameSent(
Frame(Opcode.TEXT, "⏳".encode(), fin=False),
)
asyncio.create_task(self.connection.send("✅"))
await asyncio.sleep(MS)
await self.assertNoFrameSent()
self.connection.resume_writing()
await asyncio.sleep(MS)
await self.assertFramesSent(
[
Frame(Opcode.CONT, "⌛️".encode(), fin=False),
Frame(Opcode.CONT, b"", fin=True),
Frame(Opcode.TEXT, "✅".encode()),
]
)
async def test_send_while_send_async_blocked(self):
"""send waits for a previous call to send to complete."""
# This test fails if the guard with fragmented_send_waiter is removed
# from send() in the case when message is an AsyncIterable.
self.connection.pause_writing()
async def fragments():
yield "⏳"
yield "⌛️"
asyncio.create_task(self.connection.send(fragments()))
await asyncio.sleep(MS)
await self.assertFrameSent(
Frame(Opcode.TEXT, "⏳".encode(), fin=False),
)
asyncio.create_task(self.connection.send("✅"))
await asyncio.sleep(MS)
await self.assertNoFrameSent()
self.connection.resume_writing()
await asyncio.sleep(MS)
await self.assertFramesSent(
[
Frame(Opcode.CONT, "⌛️".encode(), fin=False),
Frame(Opcode.CONT, b"", fin=True),
Frame(Opcode.TEXT, "✅".encode()),
]
)
async def test_send_during_send_async(self):
"""send waits for a previous call to send to complete."""
# This test fails if the guard with fragmented_send_waiter is removed
# from send() in the case when message is an AsyncIterable.
gate = asyncio.get_running_loop().create_future()
async def fragments():
yield "⏳"
await gate
yield "⌛️"
asyncio.create_task(self.connection.send(fragments()))
await asyncio.sleep(MS)
await self.assertFrameSent(
Frame(Opcode.TEXT, "⏳".encode(), fin=False),
)
asyncio.create_task(self.connection.send("✅"))
await asyncio.sleep(MS)
await self.assertNoFrameSent()
gate.set_result(None)
await asyncio.sleep(MS)
await self.assertFramesSent(
[
Frame(Opcode.CONT, "⌛️".encode(), fin=False),
Frame(Opcode.CONT, b"", fin=True),
Frame(Opcode.TEXT, "✅".encode()),
]
)
async def test_send_empty_iterable(self):
"""send does nothing when called with an empty iterable."""
await self.connection.send([])
await self.connection.close()
self.assertEqual(await alist(self.remote_connection), [])
async def test_send_mixed_iterable(self):
"""send raises TypeError when called with an iterable of inconsistent types."""
with self.assertRaises(TypeError):
await self.connection.send(["😀", b"\xfe\xff"])
async def test_send_unsupported_iterable(self):
"""send raises TypeError when called with an iterable of unsupported type."""
with self.assertRaises(TypeError):
await self.connection.send([None])
async def test_send_empty_async_iterable(self):
"""send does nothing when called with an empty async iterable."""
async def fragments():
return
yield # pragma: no cover
await self.connection.send(fragments())
await self.connection.close()
self.assertEqual(await alist(self.remote_connection), [])
async def test_send_mixed_async_iterable(self):
"""send raises TypeError when called with an iterable of inconsistent types."""
async def fragments():
yield "😀"
yield b"\xfe\xff"
with self.assertRaises(TypeError):
await self.connection.send(fragments())
async def test_send_unsupported_async_iterable(self):
"""send raises TypeError when called with an iterable of unsupported type."""
async def fragments():
yield None
with self.assertRaises(TypeError):
await self.connection.send(fragments())
async def test_send_dict(self):
"""send raises TypeError when called with a dict."""
with self.assertRaises(TypeError):
await self.connection.send({"type": "object"})
async def test_send_unsupported_type(self):
"""send raises TypeError when called with an unsupported type."""
with self.assertRaises(TypeError):
await self.connection.send(None)
# Test close.
async def test_close(self):
"""close sends a close frame."""
await self.connection.close()
await self.assertFrameSent(Frame(Opcode.CLOSE, b"\x03\xe8"))
async def test_close_explicit_code_reason(self):
"""close sends a close frame with a given code and reason."""
await self.connection.close(CloseCode.GOING_AWAY, "bye!")
await self.assertFrameSent(Frame(Opcode.CLOSE, b"\x03\xe9bye!"))
async def test_close_waits_for_close_frame(self):
"""close waits for a close frame (then EOF) before returning."""
async with self.delay_frames_rcvd(MS), self.delay_eof_rcvd(MS):
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_waits_for_connection_closed(self):
"""close waits for EOF before returning."""
if self.LOCAL is SERVER:
self.skipTest("only relevant on the client-side")
async with self.delay_eof_rcvd(MS):
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_no_timeout_waits_for_close_frame(self):
"""close without timeout waits for a close frame (then EOF) before returning."""
self.connection.close_timeout = None
async with self.delay_frames_rcvd(MS), self.delay_eof_rcvd(MS):
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_no_timeout_waits_for_connection_closed(self):
"""close without timeout waits for EOF before returning."""
if self.LOCAL is SERVER:
self.skipTest("only relevant on the client-side")
self.connection.close_timeout = None
async with self.delay_eof_rcvd(MS):
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_timeout_waiting_for_close_frame(self):
"""close times out if no close frame is received."""
async with self.drop_eof_rcvd(), self.drop_frames_rcvd():
await self.connection.close()
with self.assertRaises(ConnectionClosedError) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); no close frame received")
self.assertIsInstance(exc.__cause__, TimeoutError)
async def test_close_timeout_waiting_for_connection_closed(self):
"""close times out if EOF isn't received."""
if self.LOCAL is SERVER:
self.skipTest("only relevant on the client-side")
async with self.drop_eof_rcvd():
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
# Remove socket.timeout when dropping Python < 3.10.
self.assertIsInstance(exc.__cause__, (socket.timeout, TimeoutError))
async def test_close_does_not_wait_for_recv(self):
# The asyncio implementation has a buffer for incoming messages. Closing
# the connection discards buffered messages. This is allowed by the RFC:
# > However, there is no guarantee that the endpoint that has already
# > sent a Close frame will continue to process data.
await self.remote_connection.send("😀")
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await self.connection.recv()
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_idempotency(self):
"""close does nothing if the connection is already closed."""
await self.connection.close()
await self.assertFrameSent(Frame(Opcode.CLOSE, b"\x03\xe8"))
await self.connection.close()
await self.assertNoFrameSent()
async def test_close_during_recv(self):
"""close aborts recv when called concurrently with recv."""
recv_task = asyncio.create_task(self.connection.recv())
await asyncio.sleep(MS)
await self.connection.close()
with self.assertRaises(ConnectionClosedOK) as raised:
await recv_task
exc = raised.exception
self.assertEqual(str(exc), "sent 1000 (OK); then received 1000 (OK)")
self.assertIsNone(exc.__cause__)
async def test_close_during_send(self):
"""close fails the connection when called concurrently with send."""
gate = asyncio.get_running_loop().create_future()
async def fragments():
yield "⏳"
await gate
yield "⌛️"
send_task = asyncio.create_task(self.connection.send(fragments()))
await asyncio.sleep(MS)
asyncio.create_task(self.connection.close())
await asyncio.sleep(MS)
gate.set_result(None)
with self.assertRaises(ConnectionClosedError) as raised:
await send_task
exc = raised.exception
self.assertEqual(
str(exc),
"sent 1011 (internal error) close during fragmented message; "
"no close frame received",
)
self.assertIsNone(exc.__cause__)
# Test wait_closed.
async def test_wait_closed(self):
"""wait_closed waits for the connection to close."""
wait_closed_task = asyncio.create_task(self.connection.wait_closed())
await asyncio.sleep(0) # let the event loop start wait_closed_task
self.assertFalse(wait_closed_task.done())
await self.connection.close()
self.assertTrue(wait_closed_task.done())
# Test ping.
@patch("random.getrandbits")
async def test_ping(self, getrandbits):
"""ping sends a ping frame with a random payload."""
getrandbits.return_value = 1918987876
await self.connection.ping()
getrandbits.assert_called_once_with(32)
await self.assertFrameSent(Frame(Opcode.PING, b"rand"))
async def test_ping_explicit_text(self):
"""ping sends a ping frame with a payload provided as text."""
await self.connection.ping("ping")
await self.assertFrameSent(Frame(Opcode.PING, b"ping"))
async def test_ping_explicit_binary(self):
"""ping sends a ping frame with a payload provided as binary."""
await self.connection.ping(b"ping")
await self.assertFrameSent(Frame(Opcode.PING, b"ping"))
async def test_acknowledge_ping(self):
"""ping is acknowledged by a pong with the same payload."""
async with self.drop_frames_rcvd(): # drop automatic response to ping
pong_waiter = await self.connection.ping("this")
await self.remote_connection.pong("this")
async with asyncio_timeout(MS):
await pong_waiter
async def test_acknowledge_ping_non_matching_pong(self):
"""ping isn't acknowledged by a pong with a different payload."""
async with self.drop_frames_rcvd(): # drop automatic response to ping
pong_waiter = await self.connection.ping("this")
await self.remote_connection.pong("that")
with self.assertRaises(TimeoutError):
async with asyncio_timeout(MS):
await pong_waiter
async def test_acknowledge_previous_ping(self):
"""ping is acknowledged by a pong with the same payload as a later ping."""
async with self.drop_frames_rcvd(): # drop automatic response to ping
pong_waiter = await self.connection.ping("this")
await self.connection.ping("that")
await self.remote_connection.pong("that")
async with asyncio_timeout(MS):
await pong_waiter
async def test_ping_duplicate_payload(self):
"""ping rejects the same payload until receiving the pong."""
async with self.drop_frames_rcvd(): # drop automatic response to ping
pong_waiter = await self.connection.ping("idem")
with self.assertRaises(ConcurrencyError) as raised:
await self.connection.ping("idem")
self.assertEqual(
str(raised.exception),
"already waiting for a pong with the same data",
)
await self.remote_connection.pong("idem")
async with asyncio_timeout(MS):
await pong_waiter
await self.connection.ping("idem") # doesn't raise an exception
async def test_ping_unsupported_type(self):
"""ping raises TypeError when called with an unsupported type."""
with self.assertRaises(TypeError):
await self.connection.ping([])
# Test pong.
async def test_pong(self):
"""pong sends a pong frame."""
await self.connection.pong()
await self.assertFrameSent(Frame(Opcode.PONG, b""))
async def test_pong_explicit_text(self):
"""pong sends a pong frame with a payload provided as text."""
await self.connection.pong("pong")
await self.assertFrameSent(Frame(Opcode.PONG, b"pong"))
async def test_pong_explicit_binary(self):
"""pong sends a pong frame with a payload provided as binary."""
await self.connection.pong(b"pong")
await self.assertFrameSent(Frame(Opcode.PONG, b"pong"))
async def test_pong_unsupported_type(self):
"""pong raises TypeError when called with an unsupported type."""
with self.assertRaises(TypeError):
await self.connection.pong([])
# Test keepalive.
@patch("random.getrandbits")
async def test_keepalive(self, getrandbits):
"""keepalive sends pings at ping_interval and measures latency."""
self.connection.ping_interval = 2 * MS
getrandbits.return_value = 1918987876
self.connection.start_keepalive()
self.assertEqual(self.connection.latency, 0)
# 2 ms: keepalive() sends a ping frame.
# 2.x ms: a pong frame is received.
await asyncio.sleep(3 * MS)
# 3 ms: check that the ping frame was sent.
await self.assertFrameSent(Frame(Opcode.PING, b"rand"))
self.assertGreater(self.connection.latency, 0)
self.assertLess(self.connection.latency, MS)
async def test_disable_keepalive(self):
"""keepalive is disabled when ping_interval is None."""
self.connection.ping_interval = None
self.connection.start_keepalive()
await asyncio.sleep(3 * MS)
await self.assertNoFrameSent()
@patch("random.getrandbits")
async def test_keepalive_times_out(self, getrandbits):
"""keepalive closes the connection if ping_timeout elapses."""
self.connection.ping_interval = 4 * MS
self.connection.ping_timeout = 2 * MS
async with self.drop_frames_rcvd():
getrandbits.return_value = 1918987876
self.connection.start_keepalive()
# 4 ms: keepalive() sends a ping frame.
await asyncio.sleep(4 * MS)
# Exiting the context manager sleeps for MS.
# 4.x ms: a pong frame is dropped.
# 6 ms: no pong frame is received; the connection is closed.
await asyncio.sleep(2 * MS)
# 7 ms: check that the connection is closed.
self.assertEqual(self.connection.state, State.CLOSED)
@patch("random.getrandbits")