getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsAsSingleArray(): void { $arguments = [['key1', 'key2', 'key3']]; $expected = ['key1', 'key2', 'key3']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('OK', $this->getCommand()->parseResponse('OK')); } /** * @group connected * @requiresRedisVersion >= 2.2.0 */ public function testAbortsTransactionOnExternalWriteOperations(): void { $redis1 = $this->getClient(); $redis2 = $this->getClient(); $redis1->mset('foo', 'bar', 'hoge', 'piyo'); $this->assertEquals('OK', $redis1->watch('foo', 'hoge')); $this->assertEquals('OK', $redis1->multi()); $this->assertEquals('QUEUED', $redis1->get('foo')); $this->assertEquals('OK', $redis2->set('foo', 'hijacked')); $this->assertNull($redis1->exec()); $this->assertSame('hijacked', $redis1->get('foo')); } /** * @group connected * @requiresRedisVersion >= 2.2.0 */ public function testCanWatchNotYetExistingKeys(): void { $redis1 = $this->getClient(); $redis2 = $this->getClient(); $this->assertEquals('OK', $redis1->watch('foo')); $this->assertEquals('OK', $redis1->multi()); $this->assertEquals('QUEUED', $redis1->set('foo', 'bar')); $this->assertEquals('OK', $redis2->set('foo', 'hijacked')); $this->assertNull($redis1->exec()); $this->assertSame('hijacked', $redis1->get('foo')); } /** * @group connected * @requiresRedisVersion >= 2.2.0 */ public function testThrowsExceptionWhenCallingInsideTransaction(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('ERR WATCH inside MULTI is not allowed'); $redis = $this->getClient(); $redis->multi(); $redis->watch('foo'); } }