getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(0, $this->getCommand()->parseResponse(0)); } /** * @group connected */ public function testReturnsElementAtIndex(): void { $redis = $this->getClient(); $redis->rpush('letters', 'a', 'b', 'c', 'd', 'e'); $this->assertSame('a', $redis->lindex('letters', 0)); $this->assertSame('c', $redis->lindex('letters', 2)); $this->assertNull($redis->lindex('letters', 100)); } /** * @group connected */ public function testReturnsElementAtNegativeIndex(): void { $redis = $this->getClient(); $redis->rpush('letters', 'a', 'b', 'c', 'd', 'e'); $this->assertSame('a', $redis->lindex('letters', -0)); $this->assertSame('c', $redis->lindex('letters', -3)); $this->assertSame('e', $redis->lindex('letters', -1)); $this->assertNull($redis->lindex('letters', -100)); } /** * @group connected */ 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->lindex('foo', 0); } }