getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group connected * @dataProvider jsonProvider * @param array $jsonArguments * @param string $key * @param string $path * @param string $value * @param int $start * @param int $stop * @param array $expectedIndices * @return void * @requiresRedisJsonVersion >= 1.0.0 */ public function testReturnsCorrectJsonArrayIndex( array $jsonArguments, string $key, string $path, string $value, int $start, int $stop, array $expectedIndices ): void { $redis = $this->getClient(); $redis->jsonset(...$jsonArguments); $this->assertSame($expectedIndices, $redis->jsonarrindex($key, $path, $value, $start, $stop)); } public function jsonProvider(): array { return [ 'on root level' => [ ['key', '$', '{"key1":"value1","key2":["value1","value2"]}'], 'key', '$.key2', '"value2"', 0, 0, [1], ], 'on nested level' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]}}'], 'key', '$..key2', '"value2"', 0, 0, [1], ], 'with both level matching keys' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]},"key2":["value2"]}'], 'key', '$..key2', '"value2"', 0, 0, [0, 1], ], 'with non-array path' => [ ['key', '$', '{"key1":"value1","key2":"value2"}'], 'key', '$.key2', '"value2"', 0, 0, [null], ], 'not found - limit by start and stop' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]},"key2":["value2"]}'], 'key', '$..key2', '"value2"', 0, 1, [0, -1], ], 'not found - with wrong value' => [ ['key', '$', '{"key1":{"key2":["value1","value2"]},"key2":["value2"]}'], 'key', '$..key2', '"value3"', 0, 0, [-1, -1], ], ]; } }