Skip to content

Commit 90da582

Browse files
Fixed bug with incorrect multiple words processing (#1325)
* Fixed bug with incorrect multiple words processing * Convert subcommand string to lower case * Update SubcommandStrategyResolver.php * Added test coverage * Codestyle fixes --------- Co-authored-by: Till Krüss <[email protected]>
1 parent 732abc8 commit 90da582

File tree

3 files changed

+32
-11
lines changed

3 files changed

+32
-11
lines changed

src/Command/Redis/FUNCTIONS.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function getId()
4141

4242
public function setArguments(array $arguments)
4343
{
44-
$strategy = $this->strategyResolver->resolve('functions', $arguments[0]);
44+
$strategy = $this->strategyResolver->resolve('functions', strtolower($arguments[0]));
4545
$arguments = $strategy->processArguments($arguments);
4646

4747
parent::setArguments($arguments);

src/Command/Strategy/SubcommandStrategyResolver.php

+17-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,28 @@ class SubcommandStrategyResolver implements StrategyResolverInterface
1818
{
1919
private const CONTAINER_COMMANDS_NAMESPACE = 'Predis\Command\Strategy\ContainerCommands';
2020

21+
/**
22+
* @var ?string
23+
*/
24+
private $separator;
25+
26+
public function __construct(string $separator = null)
27+
{
28+
$this->separator = $separator;
29+
}
30+
2131
/**
2232
* {@inheritDoc}
2333
*/
2434
public function resolve(string $commandId, string $subcommandId): SubcommandStrategyInterface
2535
{
26-
$subcommandStrategyClass = ucfirst(strtolower($subcommandId)) . 'Strategy';
27-
$commandDirectoryName = ucfirst(strtolower($commandId));
36+
$subcommandStrategyClass = ucwords($subcommandId) . 'Strategy';
37+
$commandDirectoryName = ucwords($commandId);
38+
39+
if (!is_null($this->separator)) {
40+
$subcommandStrategyClass = str_replace($this->separator, '', $subcommandStrategyClass);
41+
$commandDirectoryName = str_replace($this->separator, '', $commandDirectoryName);
42+
}
2843

2944
if (class_exists(
3045
$containerCommandClass = self::CONTAINER_COMMANDS_NAMESPACE . '\\' . $commandDirectoryName . '\\' . $subcommandStrategyClass

tests/Predis/Command/Strategy/SubcommandStrategyResolverTest.php

+14-8
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,39 @@
1919
class SubcommandStrategyResolverTest extends TestCase
2020
{
2121
/**
22-
* @var StrategyResolverInterface
22+
* @group disconnected
23+
* @return void
2324
*/
24-
private $resolver;
25-
26-
protected function setUp(): void
25+
public function testResolveCorrectStrategy(): void
2726
{
28-
$this->resolver = new SubcommandStrategyResolver();
27+
$resolver = new SubcommandStrategyResolver();
28+
$expectedStrategy = new LoadStrategy();
29+
30+
$this->assertEquals($expectedStrategy, $resolver->resolve('functions', 'load'));
2931
}
3032

3133
/**
34+
* @group disconnected
3235
* @return void
3336
*/
34-
public function testResolveCorrectStrategy(): void
37+
public function testResolveCorrectlyResolvesStrategyWithGivenWordSeparator(): void
3538
{
39+
$resolver = new SubcommandStrategyResolver('_');
3640
$expectedStrategy = new LoadStrategy();
3741

38-
$this->assertEquals($expectedStrategy, $this->resolver->resolve('functions', 'load'));
42+
$this->assertEquals($expectedStrategy, $resolver->resolve('functions_', 'load_'));
3943
}
4044

4145
/**
4246
* @return void
4347
*/
4448
public function testResolveThrowsExceptionOnNonExistingStrategy(): void
4549
{
50+
$resolver = new SubcommandStrategyResolver();
51+
4652
$this->expectException(InvalidArgumentException::class);
4753
$this->expectExceptionMessage('Non-existing container command given');
4854

49-
$this->resolver->resolve('foo', 'bar');
55+
$resolver->resolve('foo', 'bar');
5056
}
5157
}

0 commit comments

Comments
 (0)