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 $expectedLength * @return void * @requiresRedisJsonVersion >= 1.0.0 */ public function testReturnsCorrectJsonArrayLength( array $jsonArguments, string $key, string $path, array $expectedLength ): void { $redis = $this->getClient(); $redis->jsonset(...$jsonArguments); $this->assertSame($expectedLength, $redis->jsonarrlen($key, $path)); } /** * @group connected * @return void * @requiresRedisJsonVersion >= 1.0.0 */ public function testReturnsCorrectJsonArrayLengthResp3(): void { $redis = $this->getResp3Client(); $redis->jsonset('key', '$', '{"key1":"value1","key2":["value1","value2"]}'); $this->assertSame([2], $redis->jsonarrlen('key', '$.key2')); } public function jsonProvider(): array { return [ 'on root level' => [ ['key', '$', '{"key1":"value1","key2":["value1","value2"]}'], 'key', '$.key2', [2], ], 'on nested level' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]}}'], 'key', '$..key2', [2], ], 'with same keys on both levels' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]},"key2":["value1","value2","value3"]}'], 'key', '$..key2', [3, 2], ], 'with non-array path' => [ ['key', '$', '{"key1":"value1","key2":"value2"}'], 'key', '$.key2', [null], ], ]; } }