Skip to content

Commit d76ce22

Browse files
authored
Fix tests
1 parent 4e2f457 commit d76ce22

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

tests/Predis/Cluster/PredisStrategyTest.php

+17-2
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,21 @@ public function testKeysForEvalCommand(): void
231231
}
232232
}
233233

234+
/**
235+
* @group disconnected
236+
*/
237+
public function testKeysForEvalReadOnlyCommand(): void
238+
{
239+
$strategy = $this->getClusterStrategy();
240+
$commands = $this->getCommandFactory();
241+
$arguments = ['%SCRIPT%', ['{key}:1', '{key}:2'], 'value1', 'value2'];
242+
243+
foreach ($this->getExpectedCommands('keys-script-ro') as $commandID) {
244+
$command = $commands->create($commandID, $arguments);
245+
$this->assertNotNull($strategy->getSlot($command), $commandID);
246+
}
247+
}
248+
234249
/**
235250
* @group disconnected
236251
*/
@@ -452,8 +467,8 @@ protected function getExpectedCommands(string $type = null): array
452467
/* scripting */
453468
'EVAL' => 'keys-script',
454469
'EVALSHA' => 'keys-script',
455-
'EVAL_RO' => 'keys-script',
456-
'EVALSHA_RO' => 'keys-script',
470+
'EVAL_RO' => 'keys-script-ro',
471+
'EVALSHA_RO' => 'keys-script-ro',
457472

458473
/* server */
459474
'INFO' => 'keys-fake',

tests/Predis/Cluster/RedisStrategyTest.php

+17-2
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,21 @@ public function testKeysForEvalCommand(): void
246246
}
247247
}
248248

249+
/**
250+
* @group disconnected
251+
*/
252+
public function testKeysForEvalReadOnlyCommand(): void
253+
{
254+
$strategy = $this->getClusterStrategy();
255+
$commands = $this->getCommandFactory();
256+
$arguments = ['%SCRIPT%', ['key:1'], 'value1'];
257+
258+
foreach ($this->getExpectedCommands('keys-script-ro') as $commandID) {
259+
$command = $commands->create($commandID, $arguments);
260+
$this->assertNotNull($strategy->getSlot($command), $commandID);
261+
}
262+
}
263+
249264
/**
250265
* @group disconnected
251266
*/
@@ -475,8 +490,8 @@ protected function getExpectedCommands(string $type = null): array
475490
/* scripting */
476491
'EVAL' => 'keys-script',
477492
'EVALSHA' => 'keys-script',
478-
'EVAL_RO' => 'keys-script',
479-
'EVALSHA_RO' => 'keys-script',
493+
'EVAL_RO' => 'keys-script-ro',
494+
'EVALSHA_RO' => 'keys-script-ro',
480495

481496
/* server */
482497
'INFO' => 'keys-fake',

0 commit comments

Comments
 (0)