Skip to content

Commit 18b9f8e

Browse files
committed
Tested stream command key prefixing
1 parent f8de9c8 commit 18b9f8e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

+29
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,35 @@ public function commandArgumentsDataProvider(): array
944944
['key', 'member', '100', 'km', 'WITHDIST', 'STORE', 'key:store', 'STOREDIST', 'key:storedist'],
945945
['prefix:key', 'member', '100', 'km', 'WITHDIST', 'STORE', 'prefix:key:store', 'STOREDIST', 'prefix:key:storedist'],
946946
],
947+
/* ---------------- Redis 5.0 ---------------- */
948+
['XADD',
949+
['key', '*', ['field' => 'value']],
950+
['prefix:key', '*', ['field' => 'value']],
951+
],
952+
['XRANGE',
953+
['key', '-', '+'],
954+
['prefix:key', '-', '+'],
955+
],
956+
['XREVRANGE',
957+
['key', '+', '-'],
958+
['prefix:key', '+', '-'],
959+
],
960+
['XDEL',
961+
['key', 'id'],
962+
['prefix:key', 'id'],
963+
],
964+
['XLEN',
965+
['key'],
966+
['prefix:key'],
967+
],
968+
['XACK',
969+
['key', 'group', 'id'],
970+
['prefix:key', 'group', 'id'],
971+
],
972+
['XTRIM',
973+
['key', 'MAXLEN', 100],
974+
['prefix:key', 'MAXLEN', 100],
975+
],
947976
];
948977
}
949978
}

0 commit comments

Comments
 (0)