mirror of
https://github.com/predis/predis.git
synced 2026-08-30 04:02:22 +00:00
Added support for Redis JSON module commands, added JSON.SET and JSON.GET commands (#868)
* 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>
This commit is contained in:
committed by
GitHub
parent
0a8e0c2f96
commit
f8797aaa29
@@ -15,6 +15,7 @@ namespace Predis\Configuration\Option;
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use Predis\Command\Processor\KeyPrefixProcessor;
|
||||
use Predis\Command\RedisFactory;
|
||||
use Predis\Command\Resolver\CommandResolver;
|
||||
use Predis\Configuration\OptionsInterface;
|
||||
use PredisTestCase;
|
||||
use stdClass;
|
||||
@@ -76,7 +77,7 @@ class CommandsTest extends PredisTestCase
|
||||
/** @var OptionsInterface */
|
||||
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
|
||||
|
||||
$input = new RedisFactory();
|
||||
$input = new RedisFactory(new CommandResolver());
|
||||
|
||||
$commands = $option->filter($options, $input);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user