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 disconnected */ public function testPrefixKeys(): void { /** @var PrefixableCommand $command */ $command = $this->getCommand(); $actualArguments = ['arg1', 'arg2', 'arg3', 'arg4']; $prefix = 'prefix:'; $expectedArguments = ['prefix:arg1', 'prefix:arg2', 'prefix:arg3', 'prefix:arg4']; $command->setArguments($actualArguments); $command->prefixKeys($prefix); $this->assertSame($expectedArguments, $command->getArguments()); } /** * @group connected * @group relay-incompatible * @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 * @group relay-incompatible * @requiresRedisVersion >= 6.0.0 */ public function testAbortsTransactionOnExternalWriteOperationsResp3(): void { $redis1 = $this->getResp3Client(); $redis2 = $this->getResp3Client(); $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 * @group relay-incompatible * @requiresRedisVersion >= 2.2.0 */ public function testWatchMultipleKeysAsListAbortsTransactionOnExternalWriteOperations(): 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->set('hoge', 'bar')); $this->assertEquals('OK', $redis2->set('hoge', 'hijacked')); $this->assertNull($redis1->exec()); $this->assertSame('hijacked', $redis1->get('hoge')); } /** * @group connected * @group relay-incompatible * @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('WATCH inside MULTI is not allowed'); $redis = $this->getClient(); $redis->multi(); $redis->watch('foo'); } }