@@ -120,6 +120,37 @@ public function testPrefixFirst(): void
120
120
$ this ->assertEmpty ($ command ->getArguments ());
121
121
}
122
122
123
+ /**
124
+ * @group disconnected
125
+ */
126
+ public function testPrefixFirstTwo (): void
127
+ {
128
+ $ arguments = ['1st ' , '2nd ' , '3rd ' , '4th ' ];
129
+ $ expected = ['prefix:1st ' , 'prefix:2nd ' , '3rd ' , '4th ' ];
130
+
131
+ $ command = $ this ->getMockForAbstractClass ('Predis\Command\Command ' );
132
+ $ command ->setRawArguments ($ arguments );
133
+
134
+ KeyPrefixProcessor::firstTwo ($ command , 'prefix: ' );
135
+ $ this ->assertSame ($ expected , $ command ->getArguments ());
136
+
137
+ // One argument
138
+ $ arguments = ['1st ' ];
139
+ $ expected = ['prefix:1st ' ];
140
+
141
+ $ command = $ this ->getMockForAbstractClass ('Predis\Command\Command ' );
142
+ $ command ->setRawArguments ($ arguments );
143
+
144
+ KeyPrefixProcessor::firstTwo ($ command , 'prefix: ' );
145
+ $ this ->assertSame ($ expected , $ command ->getArguments ());
146
+
147
+ // Empty arguments
148
+ $ command = $ this ->getMockForAbstractClass ('Predis\Command\Command ' );
149
+
150
+ KeyPrefixProcessor::firstTwo ($ command , 'prefix: ' );
151
+ $ this ->assertEmpty ($ command ->getArguments ());
152
+ }
153
+
123
154
/**
124
155
* @group disconnected
125
156
*/
@@ -978,6 +1009,14 @@ public function commandArgumentsDataProvider(): array
978
1009
['key ' ],
979
1010
['prefix:key ' ],
980
1011
],
1012
+ ['LMOVE ' ,
1013
+ ['key:source ' , 'key:destination ' , 'left ' , 'right ' ],
1014
+ ['prefix:key:source ' , 'prefix:key:destination ' , 'left ' , 'right ' ],
1015
+ ],
1016
+ ['BLMOVE ' ,
1017
+ ['key:source ' , 'key:destination ' , 'left ' , 'right ' , 10 ],
1018
+ ['prefix:key:source ' , 'prefix:key:destination ' , 'left ' , 'right ' , 10 ],
1019
+ ],
981
1020
/* ---------------- Redis 7.0 ---------------- */
982
1021
['EXPIRETIME ' ,
983
1022
['key ' ],
0 commit comments