File tree 3 files changed +32
-11
lines changed
tests/Predis/Command/Strategy
3 files changed +32
-11
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public function getId()
41
41
42
42
public function setArguments (array $ arguments )
43
43
{
44
- $ strategy = $ this ->strategyResolver ->resolve ('functions ' , $ arguments [0 ]);
44
+ $ strategy = $ this ->strategyResolver ->resolve ('functions ' , strtolower ( $ arguments [0 ]) );
45
45
$ arguments = $ strategy ->processArguments ($ arguments );
46
46
47
47
parent ::setArguments ($ arguments );
Original file line number Diff line number Diff line change @@ -18,13 +18,28 @@ class SubcommandStrategyResolver implements StrategyResolverInterface
18
18
{
19
19
private const CONTAINER_COMMANDS_NAMESPACE = 'Predis\Command\Strategy\ContainerCommands ' ;
20
20
21
+ /**
22
+ * @var ?string
23
+ */
24
+ private $ separator ;
25
+
26
+ public function __construct (string $ separator = null )
27
+ {
28
+ $ this ->separator = $ separator ;
29
+ }
30
+
21
31
/**
22
32
* {@inheritDoc}
23
33
*/
24
34
public function resolve (string $ commandId , string $ subcommandId ): SubcommandStrategyInterface
25
35
{
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
+ }
28
43
29
44
if (class_exists (
30
45
$ containerCommandClass = self ::CONTAINER_COMMANDS_NAMESPACE . '\\' . $ commandDirectoryName . '\\' . $ subcommandStrategyClass
Original file line number Diff line number Diff line change 19
19
class SubcommandStrategyResolverTest extends TestCase
20
20
{
21
21
/**
22
- * @var StrategyResolverInterface
22
+ * @group disconnected
23
+ * @return void
23
24
*/
24
- private $ resolver ;
25
-
26
- protected function setUp (): void
25
+ public function testResolveCorrectStrategy (): void
27
26
{
28
- $ this ->resolver = new SubcommandStrategyResolver ();
27
+ $ resolver = new SubcommandStrategyResolver ();
28
+ $ expectedStrategy = new LoadStrategy ();
29
+
30
+ $ this ->assertEquals ($ expectedStrategy , $ resolver ->resolve ('functions ' , 'load ' ));
29
31
}
30
32
31
33
/**
34
+ * @group disconnected
32
35
* @return void
33
36
*/
34
- public function testResolveCorrectStrategy (): void
37
+ public function testResolveCorrectlyResolvesStrategyWithGivenWordSeparator (): void
35
38
{
39
+ $ resolver = new SubcommandStrategyResolver ('_ ' );
36
40
$ expectedStrategy = new LoadStrategy ();
37
41
38
- $ this ->assertEquals ($ expectedStrategy , $ this -> resolver ->resolve ('functions ' , 'load ' ));
42
+ $ this ->assertEquals ($ expectedStrategy , $ resolver ->resolve ('functions_ ' , 'load_ ' ));
39
43
}
40
44
41
45
/**
42
46
* @return void
43
47
*/
44
48
public function testResolveThrowsExceptionOnNonExistingStrategy (): void
45
49
{
50
+ $ resolver = new SubcommandStrategyResolver ();
51
+
46
52
$ this ->expectException (InvalidArgumentException::class);
47
53
$ this ->expectExceptionMessage ('Non-existing container command given ' );
48
54
49
- $ this -> resolver ->resolve ('foo ' , 'bar ' );
55
+ $ resolver ->resolve ('foo ' , 'bar ' );
50
56
}
51
57
}
You can’t perform that action at this time.
0 commit comments