getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('OK', $this->getCommand()->parseResponse('OK')); } /** * @group connected */ public function testSetsElementAtSpecifiedIndex(): void { $redis = $this->getClient(); $redis->rpush('letters', 'a', 'b', 'c'); $this->assertEquals('OK', $redis->lset('letters', 1, 'B')); $this->assertSame(['a', 'B', 'c'], $redis->lrange('letters', 0, -1)); } /** * @group connected */ public function testThrowsExceptionOnIndexOutOfRange(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('ERR index out of range'); $redis = $this->getClient(); $redis->rpush('letters', 'a', 'b', 'c'); $redis->lset('letters', 21, 'z'); } /** * @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('metavars', 'foo'); $redis->lset('metavars', 0, 'hoge'); } }