getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsAsSingleArray(): void { $arguments = ['key', [0, 1, 2]]; $expected = ['key', 0, 1, 2]; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame( ['a', 'b', null], $this->getCommand()->parseResponse(['a', 'b', null]) ); } /** * @group disconnected */ public function testPrefixKeys(): void { /** @var PrefixableCommand $command */ $command = $this->getCommand(); $actualArguments = ['arg1', 0, 1]; $prefix = 'prefix:'; $expectedArguments = ['prefix:arg1', 0, 1]; $command->setArguments($actualArguments); $command->prefixKeys($prefix); $this->assertSame($expectedArguments, $command->getArguments()); } /** * @group connected * @requiresRedisVersion >= 8.8.0 */ public function testReturnsValuesAtSpecifiedIndices(): void { $redis = $this->getClient(); $redis->arset('arr', 0, 'a', 'b', 'c', 'd'); $this->assertSame(['a', 'c'], $redis->armget('arr', 0, 2)); } /** * @group connected * @requiresRedisVersion >= 8.8.0 */ public function testPreservesRequestedOrder(): void { $redis = $this->getClient(); $redis->arset('arr', 0, 'a', 'b', 'c'); $this->assertSame(['c', 'a', 'b'], $redis->armget('arr', 2, 0, 1)); } /** * @group connected * @requiresRedisVersion >= 8.8.0 */ public function testReturnsNullsOnNonExistingIndices(): void { $redis = $this->getClient(); $redis->arset('arr', 0, 'a'); $this->assertSame(['a', null, null], $redis->armget('arr', 0, 5, 10)); } /** * @group connected * @requiresRedisVersion >= 8.8.0 */ public function testReturnsValuesResp3(): void { $redis = $this->getResp3Client(); $redis->arset('arr', 0, 'a', 'b', 'c'); $this->assertSame(['a', 'c'], $redis->armget('arr', 0, 2)); } /** * @group connected * @requiresRedisVersion >= 8.8.0 */ public function testThrowsExceptionOnWrongType(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('Operation against a key holding the wrong kind of value'); $redis = $this->getClient(); $redis->set('foo', 'bar'); $redis->armget('foo', 0); } }