-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathconnection_test.py
executable file
·1237 lines (927 loc) · 37.8 KB
/
connection_test.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 random
import logging
import string
import pytest
import asyncio
import time
import socket
from threading import Thread
import random
import ssl
from redis import asyncio as aioredis
import redis as base_redis
import hiredis
from redis.cache import CacheConfig
from redis.exceptions import ConnectionError, ResponseError
import async_timeout
from dataclasses import dataclass
from aiohttp import ClientSession
from .utility import tick_timer, assert_eventually
from . import dfly_args
from .instance import DflyInstance, DflyInstanceFactory
BASE_PORT = 1111
@dataclass(frozen=True)
class CollectedRedisMsg:
cmd: str
src: str = "tcp"
@staticmethod
def all_from_src(*args, src="tcp"):
return [CollectedRedisMsg(arg, src) for arg in args]
class CollectingMonitor:
"""Tracks all monitor messages between start() and stop()"""
def __init__(self, client):
self.client = client
self.messages = []
self._monitor_task = None
async def _monitor(self):
async with self.client.monitor() as monitor:
async for message in monitor.listen():
self.messages.append(CollectedRedisMsg(message["command"], message["client_type"]))
async def start(self):
if self._monitor_task is None:
self._monitor_task = asyncio.create_task(self._monitor())
await asyncio.sleep(0.1)
async def stop(self, timeout=0.1):
if self._monitor_task:
# Wait for Dragonfly to send all async monitor messages
await asyncio.sleep(timeout)
self._monitor_task.cancel()
try:
await self._monitor_task
except asyncio.CancelledError:
pass
self._monitor_task = None
def should_exclude(cmd: str):
cmd = cmd.upper()
return "SELECT" in cmd or "CLIENT SETINFO" in cmd
while len(self.messages) > 0 and should_exclude(self.messages[0].cmd):
self.messages = self.messages[1:]
return self.messages
"""
Test MONITOR command with basic use case
"""
@dfly_args({"proactor_threads": 4})
async def test_monitor_command(async_pool):
monitor = CollectingMonitor(aioredis.Redis(connection_pool=async_pool))
await monitor.start()
c = aioredis.Redis(connection_pool=async_pool)
await c.set("a", 1)
await c.get("a")
await c.lpush("l", "V")
await c.lpop("l")
collected = await monitor.stop()
expected = CollectedRedisMsg.all_from_src("SET a 1", "GET a", "LPUSH l V", "LPOP l")
assert expected == collected
"""
Test MONITOR command with MULTI/EXEC transaction with squashing
"""
@dfly_args({"proactor_threads": 4, "multi_exec_squash": "true"})
async def test_monitor_command_multi(async_pool):
monitor = CollectingMonitor(aioredis.Redis(connection_pool=async_pool))
await monitor.start()
c = aioredis.Redis(connection_pool=async_pool)
p = c.pipeline(transaction=True)
expected = []
for i in range(100):
p.lpush(str(i), "V")
expected.append(f"LPUSH {i} V")
await p.execute()
collected = await monitor.stop(0.3)
expected = CollectedRedisMsg.all_from_src(*expected)
# The order is random due to squashing
assert set(expected) == set(collected[2:])
"""
Test MONITOR command with lua script
https://github.com/dragonflydb/dragonfly/issues/756
"""
TEST_MONITOR_SCRIPT = """
redis.call('SET', 'A', 1)
redis.call('GET', 'A')
redis.call('SADD', 'S', 1, 2, 3)
redis.call('LPUSH', 'L', 1)
redis.call('LPOP', 'L')
"""
@dfly_args({"proactor_threads": 4, "lua_auto_async": "false"})
async def test_monitor_command_lua(async_pool):
monitor = CollectingMonitor(aioredis.Redis(connection_pool=async_pool))
await monitor.start()
c = aioredis.Redis(connection_pool=async_pool)
await c.eval(TEST_MONITOR_SCRIPT, 3, "A", "S", "L")
collected = await monitor.stop()
expected = CollectedRedisMsg.all_from_src(
"SET A 1", "GET A", "SADD S 1 2 3", "LPUSH L 1", "LPOP L", src="lua"
)
assert expected == collected[1:]
"""
Run test in pipeline mode.
This is mostly how this is done with python - its more like a transaction that
the connections is running all commands in its context
"""
async def test_pipeline_support(async_client):
def generate(max):
for i in range(max):
yield f"key{i}", f"value={i}"
messages = {a: b for a, b in generate(5)}
assert await run_pipeline_mode(async_client, messages)
async def reader(channel: aioredis.client.PubSub, messages, max: int):
message_count = len(messages)
while message_count > 0:
try:
async with async_timeout.timeout(1):
message = await channel.get_message(ignore_subscribe_messages=True)
if message is not None:
message_count = message_count - 1
if message["data"] not in messages:
return False, f"got unexpected message from pubsub - {message['data']}"
await asyncio.sleep(0.01)
except asyncio.TimeoutError:
pass
return True, "success"
async def run_pipeline_mode(async_client: aioredis.Redis, messages):
pipe = async_client.pipeline(transaction=False)
for key, val in messages.items():
pipe.set(key, val)
result = await pipe.execute()
print(f"got result from the pipeline of {result} with len = {len(result)}")
if len(result) != len(messages):
return False, f"number of results from pipe {len(result)} != expected {len(messages)}"
elif False in result:
return False, "expecting to successfully get all result good, but some failed"
else:
return True, "all command processed successfully"
"""
Test the pipeline command
Open connection to the subscriber and publish on the other end messages
Make sure that we are able to send all of them and that we are getting the
expected results on the subscriber side
"""
async def test_pubsub_command(async_client):
def generate(max):
for i in range(max):
yield f"message number {i}"
messages = [a for a in generate(5)]
assert await run_pubsub(async_client, messages, "channel-1")
async def run_pubsub(async_client, messages, channel_name):
pubsub = async_client.pubsub()
await pubsub.subscribe(channel_name)
future = asyncio.create_task(reader(pubsub, messages, len(messages)))
success = True
for message in messages:
res = await async_client.publish(channel_name, message)
if not res:
success = False
break
await future
status, message = future.result()
await pubsub.close()
if status and success:
return True, "successfully completed all"
else:
return (
False,
f"subscriber result: {status}: {message}, publisher publish: success {success}",
)
async def run_multi_pubsub(async_client, messages, channel_name):
subs = [async_client.pubsub() for i in range(5)]
for s in subs:
await s.subscribe(channel_name)
tasks = [
asyncio.create_task(reader(s, messages, random.randint(0, len(messages)))) for s in subs
]
success = True
for message in messages:
res = await async_client.publish(channel_name, message)
if not res:
success = False
break
for f in tasks:
await f
results = [f.result() for f in tasks]
for s in subs:
await s.close()
if success:
for status, message in results:
if not status:
return False, f"failed to process {message}"
return True, "success"
else:
return False, "failed to publish"
"""
Test with multiple subscribers for a channel
We want to stress this to see if we have any issue
with the pub sub code since we are "sharing" the message
across multiple connections internally
"""
async def test_multi_pubsub(async_client):
def generate(max):
for i in range(max):
yield f"this is message number {i} from the publisher on the channel"
messages = [a for a in generate(500)]
state, message = await run_multi_pubsub(async_client, messages, "my-channel")
assert state, message
"""
Test PUBSUB NUMSUB command.
"""
async def test_pubsub_subcommand_for_numsub(async_client: aioredis.Redis):
async def resub(s: "aioredis.PubSub", sub: bool, chan: str):
if sub:
await s.subscribe(chan)
else:
await s.unsubscribe(chan)
# Wait for PUSH message to be parsed to make sure upadte was performed
await s.get_message(timeout=0.1)
# Subscribe 5 times to chan1
subs1 = [async_client.pubsub() for i in range(5)]
await asyncio.gather(*(resub(s, True, "chan1") for s in subs1))
assert await async_client.pubsub_numsub("chan1") == [("chan1", 5)]
# Unsubscribe all from chan1
await asyncio.gather(*(resub(s, False, "chan1") for s in subs1))
# Make sure numsub drops to 0
async for numsub, breaker in tick_timer(lambda: async_client.pubsub_numsub("chan1")):
with breaker:
assert numsub[0][1] == 0
# Check empty numsub
assert await async_client.pubsub_numsub() == []
subs2 = [async_client.pubsub() for i in range(5)]
await asyncio.gather(*(resub(s, True, "chan2") for s in subs2))
subs3 = [async_client.pubsub() for i in range(10)]
await asyncio.gather(*(resub(s, True, "chan3") for s in subs3))
assert await async_client.pubsub_numsub("chan2", "chan3") == [("chan2", 5), ("chan3", 10)]
await asyncio.gather(*(s.unsubscribe() for s in subs2 + subs3))
"""
Test that pubsub clients who are stuck on backpressure from a slow client (the one in the test doesn't read messages at all)
will eventually unblock when it disconnects.
"""
@pytest.mark.slow
@dfly_args({"proactor_threads": "1", "publish_buffer_limit": "100"})
async def test_publish_stuck(df_server: DflyInstance, async_client: aioredis.Redis):
reader, writer = await asyncio.open_connection("127.0.0.1", df_server.port, limit=10)
writer.write(b"SUBSCRIBE channel\r\n")
await writer.drain()
async def pub_task():
payload = "msg" * 1000
p = async_client.pipeline()
for _ in range(1000):
p.publish("channel", payload)
await p.execute()
publishers = [asyncio.create_task(pub_task()) for _ in range(20)]
await asyncio.sleep(5)
# Check we reached the limit
pub_bytes = int((await async_client.info())["dispatch_queue_subscriber_bytes"])
assert pub_bytes >= 100
await asyncio.sleep(0.1)
# Make sure processing is stalled
new_pub_bytes = int((await async_client.info())["dispatch_queue_subscriber_bytes"])
assert new_pub_bytes == pub_bytes
writer.write(b"QUIT\r\n")
await writer.drain()
writer.close()
# Make sure all publishers unblock eventually
for pub in asyncio.as_completed(publishers):
await pub
@pytest.mark.slow
@dfly_args({"proactor_threads": "4"})
async def test_pubsub_busy_connections(df_server: DflyInstance):
sleep = 60
async def sub_thread():
i = 0
async def sub_task():
nonlocal i
sleep_task = asyncio.create_task(asyncio.sleep(sleep))
while not sleep_task.done():
client = df_server.client()
pubsub = client.pubsub()
await pubsub.subscribe("channel")
# await pubsub.unsubscribe("channel")
i = i + 1
await client.close()
subs = [asyncio.create_task(sub_task()) for _ in range(10)]
for s in subs:
await s
logging.debug(f"Exiting thread after {i} subscriptions")
async def pub_task():
pub = df_server.client()
i = 0
sleep_task = asyncio.create_task(asyncio.sleep(sleep))
while not sleep_task.done():
await pub.publish("channel", f"message-{i}")
i = i + 1
def run_in_thread():
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_until_complete(sub_thread())
threads = []
for _ in range(10):
thread = Thread(target=run_in_thread)
thread.start()
threads.append(thread)
await pub_task()
for thread in threads:
thread.join()
async def test_subscribers_with_active_publisher(df_server: DflyInstance, max_connections=100):
# TODO: I am not how to customize the max connections for the pool.
async_pool = aioredis.ConnectionPool(
host="localhost",
port=df_server.port,
db=0,
decode_responses=True,
max_connections=max_connections,
)
async def publish_worker():
client = aioredis.Redis(connection_pool=async_pool)
for i in range(0, 2000):
await client.publish("channel", f"message-{i}")
await client.aclose()
async def channel_reader(channel: aioredis.client.PubSub):
for i in range(0, 150):
try:
async with async_timeout.timeout(1):
message = await channel.get_message(ignore_subscribe_messages=True)
except asyncio.TimeoutError:
break
async def subscribe_worker():
client = aioredis.Redis(connection_pool=async_pool)
pubsub = client.pubsub()
async with pubsub as p:
await pubsub.subscribe("channel")
await channel_reader(pubsub)
await pubsub.unsubscribe("channel")
# Create a publisher that sends constantly messages to the channel
# Then create subscribers that will subscribe to already active channel
pub_task = asyncio.create_task(publish_worker())
await asyncio.gather(*(subscribe_worker() for _ in range(max_connections - 10)))
await pub_task
await async_pool.disconnect()
async def produce_expiring_keys(async_client: aioredis.Redis):
keys = []
for i in range(10, 50):
keys.append(f"k{i}")
await async_client.set(keys[-1], "X", px=200 + i * 10)
return keys
async def collect_expiring_events(pclient, keys):
events = []
async for message in pclient.listen():
if message["type"] == "subscribe":
continue
events.append(message)
if len(events) >= len(keys):
break
return events
@dfly_args({"notify_keyspace_events": "Ex"})
async def test_keyspace_events(async_client: aioredis.Redis):
pclient = async_client.pubsub()
await pclient.subscribe("__keyevent@0__:expired")
keys = await produce_expiring_keys(async_client)
# We don't support immediate expiration:
# keys += ['immediate']
# await async_client.set(keys[-1], 'Y', exat=123) # expired 50 years ago
events = await collect_expiring_events(pclient, keys)
assert set(ev["data"] for ev in events) == set(keys)
async def test_keyspace_events_config_set(async_client: aioredis.Redis):
# nonsense does not make sense as argument, we only accept ex or empty string
with pytest.raises(ResponseError):
await async_client.config_set("notify_keyspace_events", "nonsense")
await async_client.config_set("notify_keyspace_events", "ex")
pclient = async_client.pubsub()
await pclient.subscribe("__keyevent@0__:expired")
keys = await produce_expiring_keys(async_client)
events = await collect_expiring_events(pclient, keys)
assert set(ev["data"] for ev in events) == set(keys)
keys = await produce_expiring_keys(async_client)
await async_client.config_set("notify_keyspace_events", "")
with pytest.raises(asyncio.TimeoutError):
async with async_timeout.timeout(1):
await collect_expiring_events(pclient, keys)
@pytest.mark.exclude_epoll
async def test_reply_count(async_client: aioredis.Redis):
"""Make sure reply aggregations reduce reply counts for common cases"""
async def get_reply_count():
return (await async_client.info("STATS"))["reply_count"]
async def measure(aw):
before = await get_reply_count()
await aw
return await get_reply_count() - before - 1
base = await get_reply_count()
info_diff = await get_reply_count() - base
assert info_diff == 1
# Warm client buffer up
await async_client.lpush("warmup", *(i for i in range(500)))
await async_client.lrange("warmup", 0, -1)
# Integer list
await async_client.lpush("list-1", *(i for i in range(100)))
assert await measure(async_client.lrange("list-1", 0, -1)) == 1
# Integer set
await async_client.sadd("set-1", *(i for i in range(100)))
assert await measure(async_client.smembers("set-1")) == 1
# Sorted sets
await async_client.zadd("zset-1", mapping={str(i): i for i in range(50)})
assert await measure(async_client.zrange("zset-1", 0, -1, withscores=True)) == 1
# Exec call
e = async_client.pipeline(transaction=True)
for _ in range(100):
e.incr("num-1")
assert await measure(e.execute()) == 2 # OK + Response
# Just pipeline
p = async_client.pipeline(transaction=False)
for _ in range(100):
p.incr("num-1")
assert await measure(p.execute()) == 1
# Script result
assert await measure(async_client.eval('return {1,2,{3,4},5,6,7,8,"nine"}', 0)) == 1
# Search results
await async_client.execute_command("FT.CREATE i1 SCHEMA name text")
for i in range(50):
await async_client.hset(f"key-{i}", "name", f"name number {i}")
assert await measure(async_client.ft("i1").search("*")) == 1
async def test_big_command(df_server, size=8 * 1024):
reader, writer = await asyncio.open_connection("127.0.0.1", df_server.port)
writer.write(f"SET a {'v'*size}\n".encode())
await writer.drain()
assert "OK" in (await reader.readline()).decode()
writer.close()
await writer.wait_closed()
async def test_subscribe_pipelined(async_client: aioredis.Redis):
pipe = async_client.pipeline(transaction=False)
pipe.execute_command("subscribe channel").execute_command("subscribe channel")
await pipe.echo("bye bye").execute()
async def test_subscribe_in_pipeline(async_client: aioredis.Redis):
pipe = async_client.pipeline(transaction=False)
pipe.echo("one")
pipe.execute_command("SUBSCRIBE ch1")
pipe.echo("two")
pipe.execute_command("SUBSCRIBE ch2")
pipe.echo("three")
res = await pipe.execute()
assert res == ["one", ["subscribe", "ch1", 1], "two", ["subscribe", "ch2", 2], "three"]
async def test_send_delay_metric(df_server: DflyInstance):
client = df_server.client()
await client.client_setname("client1")
blob = "A" * 1000
for j in range(10):
await client.set(f"key-{j}", blob)
await client.config_set("pipeline_queue_limit", 100)
reader, writer = await asyncio.open_connection("localhost", df_server.port)
async def send_data_noread():
for j in range(500000):
writer.write(f"GET key-{j % 10}\n".encode())
await writer.drain()
t1 = asyncio.create_task(send_data_noread())
@assert_eventually
async def wait_for_large_delay():
info = await client.info("clients")
assert int(info["send_delay_ms"]) > 100
# Check that the delay metric indeed increases as we have a connection
# that is not reading the data.
await wait_for_large_delay()
t1.cancel()
writer.close()
async def test_match_http(df_server: DflyInstance):
client = df_server.client()
reader, writer = await asyncio.open_connection("localhost", df_server.port)
for i in range(2000):
writer.write(f"foo bar ".encode())
await writer.drain()
"""
This test makes sure that Dragonfly can receive blocks of pipelined commands even
while a script is still executing. This is a dangerous scenario because both the dispatch fiber
and the connection fiber are actively using the context. What is more, the script execution injects
its own custom reply builder, which can't be used anywhere else, besides the lua script itself.
"""
BUSY_SCRIPT = """
for i=1,300 do
redis.call('MGET', 'k1', 'k2', 'k3')
end
"""
PACKET1 = """
MGET s1 s2 s3
EVALSHA {sha} 3 k1 k2 k3
"""
PACKET2 = """
MGET m1 m2 m3
MGET m4 m5 m6
MGET m7 m8 m9\n
"""
PACKET3 = (
"""
PING
"""
* 500
+ "ECHO DONE\n"
)
async def test_parser_while_script_running(async_client: aioredis.Redis, df_server: DflyInstance):
sha = await async_client.script_load(BUSY_SCRIPT)
# Use a raw tcp connection for strict control of sent commands
# Below we send commands while the previous ones didn't finish
reader, writer = await asyncio.open_connection("localhost", df_server.port)
# Send first pipeline packet, last commands is a long executing script
writer.write(PACKET1.format(sha=sha).encode())
await writer.drain()
# Give the script some time to start running
await asyncio.sleep(0.01)
# Send another packet that will be received while the script is running
writer.write(PACKET2.encode())
# The last batch has to be big enough, so the script will finish before it is fully consumed
writer.write(PACKET3.encode())
await writer.drain()
await reader.readuntil(b"DONE")
writer.close()
await writer.wait_closed()
"""
This test makes sure that we can migrate while handling pipelined commands and don't keep replies
batched even if the stream suddenly stops.
"""
@dfly_args({"proactor_threads": "4", "pipeline_squash": 0})
async def test_pipeline_batching_while_migrating(
async_client: aioredis.Redis, df_server: DflyInstance
):
sha = await async_client.script_load("return redis.call('GET', KEYS[1])")
reader, writer = await asyncio.open_connection("localhost", df_server.port)
# First, write a EVALSHA that will ask for migration (75% it's on the wrong shard)
# and some more pipelined commands that will keep Dragonfly busy
incrs = "".join("INCR a\r\n" for _ in range(50))
writer.write((f"EVALSHA {sha} 1 a\r\n" + incrs).encode())
await writer.drain()
# We migrate only when the socket wakes up, so send another batch to trigger migration
writer.write("INCR a\r\n".encode())
await writer.drain()
# The data doesn't necessarily arrive in a single batch
async def read():
reply = ""
while not reply.strip().endswith("51"):
reply = (await reader.read(520)).decode()
# Make sure we recived all replies
await asyncio.wait_for(read(), timeout=2.0)
writer.close()
await writer.wait_closed()
@dfly_args({"proactor_threads": 1})
async def test_large_cmd(async_client: aioredis.Redis):
MAX_ARR_SIZE = 65535
res = await async_client.hset(
"foo", mapping={f"key{i}": f"val{i}" for i in range(MAX_ARR_SIZE // 2)}
)
assert res == MAX_ARR_SIZE // 2
res = await async_client.mset({f"key{i}": f"val{i}" for i in range(MAX_ARR_SIZE // 2)})
assert res
res = await async_client.mget([f"key{i}" for i in range(MAX_ARR_SIZE)])
assert len(res) == MAX_ARR_SIZE
@dfly_args({"proactor_threads": 1})
async def test_parser_memory_stats(df_server, async_client: aioredis.Redis):
reader, writer = await asyncio.open_connection("127.0.0.1", df_server.port, limit=10)
writer.write(b"*1000\r\n")
writer.write(b"$4\r\nmget\r\n")
val = (b"a" * 100) + b"\r\n"
for i in range(0, 900):
writer.write(b"$100\r\n" + val)
await writer.drain() # writer is pending because the request is not finished.
@assert_eventually
async def check_stats():
stats = await async_client.execute_command("memory stats")
assert stats["connections.direct_bytes"] > 130000
await check_stats()
async def test_reject_non_tls_connections_on_tls(with_tls_server_args, df_factory):
server: DflyInstance = df_factory.create(
no_tls_on_admin_port="true",
admin_port=1111,
port=1211,
requirepass="XXX",
**with_tls_server_args,
)
server.start()
client = server.client(password="XXX")
with pytest.raises(ResponseError):
await client.dbsize()
await client.aclose()
client = server.admin_client(password="XXX")
assert await client.dbsize() == 0
async def test_tls_insecure(with_ca_tls_server_args, with_tls_client_args, df_factory):
server = df_factory.create(port=BASE_PORT, **with_ca_tls_server_args)
server.start()
client = aioredis.Redis(port=server.port, **with_tls_client_args, ssl_cert_reqs=None)
assert await client.dbsize() == 0
async def test_tls_full_auth(with_ca_tls_server_args, with_ca_tls_client_args, df_factory):
server = df_factory.create(port=BASE_PORT, **with_ca_tls_server_args)
server.start()
client = aioredis.Redis(port=server.port, **with_ca_tls_client_args)
assert await client.dbsize() == 0
async def test_tls_reject(
with_ca_tls_server_args, with_tls_client_args, df_factory: DflyInstanceFactory
):
server: DflyInstance = df_factory.create(port=BASE_PORT, **with_ca_tls_server_args)
server.start()
client = server.client(**with_tls_client_args, ssl_cert_reqs=None)
await client.ping()
await client.aclose()
client = server.client(**with_tls_client_args)
with pytest.raises(ConnectionError):
await client.ping()
@dfly_args({"proactor_threads": "4", "pipeline_squash": 1})
async def test_squashed_pipeline_eval(async_client: aioredis.Redis):
p = async_client.pipeline(transaction=False)
for _ in range(5):
# Deliberately lowcase EVAL to test that it is not squashed
p.execute_command("eval", "return redis.call('set', KEYS[1], 'value')", 1, "key")
res = await p.execute()
assert res == ["OK"] * 5
@dfly_args({"proactor_threads": "4", "pipeline_squash": 10})
async def test_squashed_pipeline(async_client: aioredis.Redis):
p = async_client.pipeline(transaction=False)
for j in range(50):
for i in range(10):
p.incr(f"k{i}")
p.execute_command("NOTFOUND")
res = await p.execute(raise_on_error=False)
for j in range(50):
assert res[0:10] == [j + 1] * 10
assert isinstance(res[10], aioredis.ResponseError)
res = res[11:]
@dfly_args({"proactor_threads": "4", "pipeline_squash": 10})
async def test_squashed_pipeline_seeder(df_server, df_seeder_factory):
seeder = df_seeder_factory.create(port=df_server.port, keys=10_000)
await seeder.run(target_deviation=0.1)
"""
This test makes sure that multi transactions can be integrated into pipeline squashing
"""
@dfly_args({"proactor_threads": "4", "pipeline_squash": 1})
async def test_squashed_pipeline_multi(async_client: aioredis.Redis):
p = async_client.pipeline(transaction=False)
for _ in range(5):
# Series of squashable commands
for _ in range(5):
p.set("first", "true")
# Non-squashable
p.info()
# Eval without at tx
p.execute_command("MULTI")
p.set("second", "true")
p.execute_command("EXEC")
# Finishing sequence
for _ in range(5):
p.set("third", "true")
await p.execute()
async def test_unix_domain_socket(df_factory, tmp_dir):
server = df_factory.create(proactor_threads=1, port=BASE_PORT, unixsocket="./df.sock")
server.start()
await asyncio.sleep(0.5)
r = aioredis.Redis(unix_socket_path=tmp_dir / "df.sock")
assert await r.ping()
async def test_unix_socket_only(df_factory, tmp_dir):
server = df_factory.create(proactor_threads=1, port=0, unixsocket="./df.sock")
# we call _start because we start() wait for the port to become available and
# we run here a process without a port.
server._start()
await asyncio.sleep(1)
r = aioredis.Redis(unix_socket_path=tmp_dir / "df.sock")
assert await r.ping()
"""
Test nested pauses. Executing CLIENT PAUSE should be possible even if another write-pause is active.
It should prolong the pause for all current commands.
"""
@pytest.mark.slow
async def test_nested_client_pause(async_client: aioredis.Redis):
async def do_pause():
await async_client.execute_command("CLIENT", "PAUSE", "1000", "WRITE")
async def do_write():
await async_client.execute_command("LPUSH", "l", "1")
p1 = asyncio.create_task(do_pause())
await asyncio.sleep(0.1)
p2 = asyncio.create_task(do_write())
assert not p2.done()
await asyncio.sleep(0.5)
p3 = asyncio.create_task(do_pause())
await p1
await asyncio.sleep(0.1)
assert not p2.done() # blocked by p3 now
await p2
await asyncio.sleep(0.0)
assert p3.done()
await p3
@dfly_args({"proactor_threads": "4"})
async def test_blocking_command_client_pause(async_client: aioredis.Redis):
"""
1. Check client pause success when blocking transaction is running
2. lpush is paused after running client puase
3. once puased is finished lpush will run and blpop will pop the pushed value
"""
async def blpop_command():
res = await async_client.execute_command("blpop dest7 10")
assert res == ["dest7", "value"]
async def brpoplpush_command():
res = await async_client.execute_command("brpoplpush src dest7 2")
assert res == "value"
async def lpush_command():
await async_client.execute_command("lpush src value")
blpop = asyncio.create_task(blpop_command())
brpoplpush = asyncio.create_task(brpoplpush_command())
await asyncio.sleep(0.1)
res = await async_client.execute_command("client pause 1000")
assert res == "OK"
lpush = asyncio.create_task(lpush_command())
assert not lpush.done()
await lpush
await brpoplpush
await blpop
async def test_multiple_blocking_commands_client_pause(async_client: aioredis.Redis):
"""
Check running client pause command simultaneously with running multiple blocking command
from multiple connections
"""
async def just_blpop():
key = "".join(random.choices(string.ascii_letters, k=3))
await async_client.execute_command(f"blpop {key} 2")
async def client_pause():
res = await async_client.execute_command("client pause 1000")
assert res == "OK"
tasks = [just_blpop() for _ in range(20)]
tasks.append(client_pause())
all = asyncio.gather(*tasks)
assert not all.done()
await all
async def test_tls_when_read_write_is_interleaved(
with_ca_tls_server_args, with_ca_tls_client_args, df_factory
):
"""
This test covers a deadlock bug in helio and TlsSocket when a client connection renegotiated a
handshake without reading its pending data from the socket.