getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group disconnected */ public function testPrefixKeys(): void { /** @var PrefixableCommand $command */ $command = $this->getCommand(); $actualArguments = ['arg1']; $prefix = 'prefix:'; $expectedArguments = ['prefix:arg1']; $command->setArguments($actualArguments); $command->prefixKeys($prefix); $this->assertSame($expectedArguments, $command->getArguments()); } /** * @group connected * @group relay-resp3 * @dataProvider jsonProvider * @param array $jsonArguments * @param string $key * @param string $path * @param array $expectedResponse * @return void * @requiresRedisJsonVersion >= 1.0.0 */ public function testReturnRespValueFromGivenJson( array $jsonArguments, string $key, string $path, array $expectedResponse ): void { $redis = $this->getClient(); $redis->jsonset(...$jsonArguments); $this->assertEquals($expectedResponse, $redis->jsonresp($key, $path)); } /** * @group connected * @return void * @requiresRedisJsonVersion >= 1.0.0 */ public function testReturnRespValueFromGivenJsonResp3(): void { $redis = $this->getResp3Client(); $redis->jsonset('key', '$', '{"key1":"value1"}'); $this->assertEquals(['value1'], $redis->jsonresp('key', '$.key1')); } public function jsonProvider(): array { return [ 'with string value' => [ ['key', '$', '{"key1":"value1"}'], 'key', '$.key1', ['value1'], ], 'with numeric value' => [ ['key', '$', '{"key1":1}'], 'key', '$.key1', [1], ], 'with array value' => [ ['key', '$', '{"key1":[1,2,3]}'], 'key', '$.key1', [[new Status('['), 1, 2, 3]], ], 'with json object value' => [ ['key', '$', '{"key1":{"key2":"value2"}}'], 'key', '$.key1', [[new Status('{'), 'key2', 'value2']], ], 'with boolean value' => [ ['key', '$', '{"key1":true}'], 'key', '$.key1', ['true'], ], 'with null value' => [ ['key', '$', '{"key1":null}'], 'key', '$.key1', [null], ], ]; } }