getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(0, $this->getCommand()->parseResponse(0)); $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group disconnected */ public function testPrefixKeys(): void { /** @var PrefixableCommand $command */ $command = $this->getCommand(); $actualArguments = ['arg1', 'arg2', 'arg3', 'arg4']; $prefix = 'prefix:'; $expectedArguments = ['prefix:arg1', 'arg2', 'arg3', 'arg4']; $command->setArguments($actualArguments); $command->prefixKeys($prefix); $this->assertSame($expectedArguments, $command->getArguments()); } /** * @group connected */ public function testSetStringValue(): void { $redis = $this->getClient(); $this->assertSame(1, $redis->setnx('foo', 'bar')); $this->assertSame(0, $redis->setnx('foo', 'barbar')); $this->assertEquals('bar', $redis->get('foo')); } /** * @group connected * @requiresRedisVersion >= 6.0.0 */ public function testSetStringValueResp3(): void { $redis = $this->getResp3Client(); $this->assertSame(1, $redis->setnx('foo', 'bar')); $this->assertSame(0, $redis->setnx('foo', 'barbar')); $this->assertEquals('bar', $redis->get('foo')); } }