Skip to content

Commit cbef710

Browse files
mareintillkruss
andauthored
Fix prefixes for LMOVE and BLMOVE (#1455)
Co-authored-by: Till Krüss <[email protected]>
1 parent 4dc7245 commit cbef710

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

src/Command/Processor/KeyPrefixProcessor.php

+21
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function __construct($prefix)
3333
$this->prefix = $prefix;
3434

3535
$prefixFirst = static::class . '::first';
36+
$prefixFirstTwo = static::class . '::firstTwo';
3637
$prefixAll = static::class . '::all';
3738
$prefixInterleaved = static::class . '::interleaved';
3839
$prefixSkipFirst = static::class . '::skipFirst';
@@ -198,6 +199,8 @@ public function __construct($prefix)
198199
/* ---------------- Redis 6.2 ---------------- */
199200
'GETDEL' => $prefixFirst,
200201
'ZMSCORE' => $prefixFirst,
202+
'LMOVE' => $prefixFirstTwo,
203+
'BLMOVE' => $prefixFirstTwo,
201204
'GEOSEARCH' => $prefixFirst,
202205

203206
/* ---------------- Redis 7.0 ---------------- */
@@ -396,6 +399,24 @@ public static function first(CommandInterface $command, $prefix)
396399
}
397400
}
398401

402+
/**
403+
* Applies the specified prefix only to the first two arguments.
404+
*
405+
* @param CommandInterface $command Command instance.
406+
* @param string $prefix Prefix string.
407+
*/
408+
public static function firstTwo(CommandInterface $command, $prefix)
409+
{
410+
$arguments = $command->getArguments();
411+
$length = min(count($arguments), 2);
412+
413+
for ($i = 0; $i < $length; $i++) {
414+
$arguments[$i] = "$prefix{$arguments[$i]}";
415+
}
416+
417+
$command->setRawArguments($arguments);
418+
}
419+
399420
/**
400421
* Applies the specified prefix to all the arguments.
401422
*

tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

+39
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,37 @@ public function testPrefixFirst(): void
120120
$this->assertEmpty($command->getArguments());
121121
}
122122

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+
123154
/**
124155
* @group disconnected
125156
*/
@@ -978,6 +1009,14 @@ public function commandArgumentsDataProvider(): array
9781009
['key'],
9791010
['prefix:key'],
9801011
],
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+
],
9811020
/* ---------------- Redis 7.0 ---------------- */
9821021
['EXPIRETIME',
9831022
['key'],

0 commit comments

Comments
 (0)