mirror of
https://github.com/predis/predis.git
synced 2026-08-25 14:29:40 +00:00
f8797aaa29
* Added CommandResolver, moved resolve command logic there, added ClientConfiguration object * Fixed test, added dependecies * Added resolved command to commands array * Used aggregation approach for modules * Added decorator to check Redis JSON module version * Added support for JSON.SET and JSON.GET commands * Added separate workflow for redis-stack tests * Changed docker imange name to correct one * Fixed indentation * Added test coverage for JSON.GET command * Changed module version resolving using annotations mapping * Re-written CommandResolver test * Update ClientInterface.php * Changes to CI, readme, removed unused modules from configuration * Fixed build badge URL * Refactored annotation check to be generic for each module * Fixed bug with incorrect tests skip * Added CommandResolver, moved resolve command logic there, added ClientConfiguration object * Fixed test, added dependecies * Added resolved command to commands array * Used aggregation approach for modules * Added decorator to check Redis JSON module version * Added support for JSON.SET and JSON.GET commands * Added separate workflow for redis-stack tests * Changed docker imange name to correct one * Fixed indentation * Added test coverage for JSON.GET command * Changed module version resolving using annotations mapping * Re-written CommandResolver test * Update ClientInterface.php * Changes to CI, readme, removed unused modules from configuration * Fixed build badge URL * Refactored annotation check to be generic for each module * Fixed bug with incorrect tests skip * Fixed naming issue with nxXx argument * Removed redundant trait * Fixed NxXxArgument test * add Redis stack tests * don't run tests twice * use * Update stack.yml * Rename workflows * Added version 6.x to workflow * Removed exception thrown to avoid version bug * Resolve conflicts within tests.yml * Codestyle fixes * Removew trailing whitespaces Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command\Resolver;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Predis\Command\Redis\SET;
|
|
|
|
class CommandResolverTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider commandsProvider
|
|
* @param string $commandID
|
|
* @param string|null $expectedCommandClass
|
|
* @return void
|
|
*/
|
|
public function testResolveResolvesCorrectlyCommand(
|
|
string $commandID,
|
|
?string $expectedCommandClass
|
|
): void {
|
|
$resolver = new CommandResolver();
|
|
|
|
$this->assertSame($expectedCommandClass, $resolver->resolve($commandID));
|
|
}
|
|
|
|
public function commandsProvider(): array
|
|
{
|
|
return [
|
|
'core command exists' => ['SET', SET::class],
|
|
'module not exist' => ['FOOBAR', null],
|
|
'module exists, module command not exists' => ['JSONFOO', null],
|
|
];
|
|
}
|
|
}
|