getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $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 * @group relay-incompatible * @requiresRedisVersion >= 2.0.0 */ public function testPublishesMessagesToChannel(): void { $redis1 = $this->getClient(); $redis2 = $this->getClient(); $redis1->subscribe('channel:foo'); $this->assertSame(1, $redis2->publish('channel:foo', 'bar')); $this->assertSame(0, $redis2->publish('channel:hoge', 'piyo')); } /** * @group connected * @group relay-incompatible * @requiresRedisVersion >= 6.0.0 */ public function testPublishesMessagesToChannelResp3(): void { $redis1 = $this->getResp3Client(); $redis2 = $this->getResp3Client(); $redis1->subscribe('channel:foo'); $this->assertSame(1, $redis2->publish('channel:foo', 'bar')); $this->assertSame(0, $redis2->publish('channel:hoge', 'piyo')); } }