Skip to content

Commit 7a59ba7

Browse files
committed
Added support for Redis 7.0 arguments
1 parent 4172d22 commit 7a59ba7

File tree

4 files changed

+72
-3
lines changed

4 files changed

+72
-3
lines changed

src/ClientContextInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,7 @@
310310
* @method $this evalsha($script, $numkeys, $keyOrArg1 = null, $keyOrArgN = null)
311311
* @method $this evalsha_ro(string $sha1, array $keys, ...$argument)
312312
* @method $this script($subcommand, $argument = null)
313+
* @method $this shutdown(bool $noSave = null, bool $now = false, bool $force = false, bool $abort = false)
313314
* @method $this auth($password)
314315
* @method $this echo($message)
315316
* @method $this ping($message = null)

src/ClientInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@
328328
* @method mixed evalsha(string $script, int $numkeys, string ...$keyOrArg = null)
329329
* @method mixed evalsha_ro(string $sha1, array $keys, ...$argument)
330330
* @method mixed script($subcommand, $argument = null)
331+
* @method Status shutdown(bool $noSave = null, bool $now = false, bool $force = false, bool $abort = false)
331332
* @method mixed auth(string $password)
332333
* @method string echo(string $message)
333334
* @method mixed ping(string $message = null)

src/Command/Redis/SHUTDOWN.php

+32
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,36 @@ public function getId()
2626
{
2727
return 'SHUTDOWN';
2828
}
29+
30+
/**
31+
* {@inheritdoc}
32+
*/
33+
public function setArguments(array $arguments)
34+
{
35+
if (empty($arguments)) {
36+
parent::setArguments($arguments);
37+
38+
return;
39+
}
40+
41+
$processedArguments = [];
42+
43+
if (array_key_exists(0, $arguments) && null !== $arguments[0]) {
44+
$processedArguments[] = ($arguments[0]) ? 'SAVE' : 'NOSAVE';
45+
}
46+
47+
if (array_key_exists(1, $arguments) && false !== $arguments[1]) {
48+
$processedArguments[] = 'NOW';
49+
}
50+
51+
if (array_key_exists(2, $arguments) && false !== $arguments[2]) {
52+
$processedArguments[] = 'FORCE';
53+
}
54+
55+
if (array_key_exists(3, $arguments) && false !== $arguments[3]) {
56+
$processedArguments[] = 'ABORT';
57+
}
58+
59+
parent::setArguments($processedArguments);
60+
}
2961
}

tests/Predis/Command/Redis/SHUTDOWN_Test.php

+38-3
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,48 @@ protected function getExpectedId(): string
3535
}
3636

3737
/**
38+
* @dataProvider argumentsProvider
3839
* @group disconnected
3940
*/
40-
public function testFilterArguments(): void
41+
public function testFilterArguments(array $actualArguments, array $expectedResponse): void
4142
{
4243
$command = $this->getCommand();
43-
$command->setArguments([]);
44+
$command->setArguments($actualArguments);
4445

45-
$this->assertSame([], $command->getArguments());
46+
$this->assertSame($expectedResponse, $command->getArguments());
47+
}
48+
49+
public function argumentsProvider(): array
50+
{
51+
return [
52+
'with no arguments' => [
53+
[],
54+
[],
55+
],
56+
'with SAVE argument' => [
57+
[true],
58+
['SAVE'],
59+
],
60+
'with NOSAVE argument' => [
61+
[false],
62+
['NOSAVE'],
63+
],
64+
'with NOW argument' => [
65+
[null, true],
66+
['NOW'],
67+
],
68+
'with FORCE argument' => [
69+
[null, false, true],
70+
['FORCE'],
71+
],
72+
'with ABORT argument' => [
73+
[null, false, false, true],
74+
['ABORT'],
75+
],
76+
'with all arguments' => [
77+
[true, true, true, true],
78+
['SAVE', 'NOW', 'FORCE', 'ABORT'],
79+
],
80+
];
4681
}
4782
}

0 commit comments

Comments
 (0)