getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsAsSingleArray(): void { $arguments = [['channel:foo:*', 'channel:bar:*']]; $expected = ['channel:foo:*', 'channel:bar:*']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $raw = ['punsubscribe', 'channel:*', 1]; $expected = ['punsubscribe', 'channel:*', 1]; $command = $this->getCommand(); $this->assertSame($expected, $command->parseResponse($raw)); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testDoesNotSwitchToSubscribeMode(): void { $redis = $this->getClient(); $this->assertSame(['punsubscribe', 'channel:*', 0], $redis->punsubscribe('channel:*')); $this->assertSame('echoed', $redis->echo('echoed')); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testUnsubscribesFromNotSubscribedChannels(): void { $redis = $this->getClient(); $this->assertSame(['punsubscribe', 'channel:*', 0], $redis->punsubscribe('channel:*')); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testUnsubscribesFromSubscribedChannels(): void { $redis = $this->getClient(); $this->assertSame(['subscribe', 'channel:foo', 1], $redis->subscribe('channel:foo')); $this->assertSame(['subscribe', 'channel:bar', 2], $redis->subscribe('channel:bar')); $this->assertSame(['punsubscribe', 'channel:*', 2], $redis->punsubscribe('channel:*')); } /** * @group connected * @requiresRedisVersion >= 2.6.0 */ public function testUnsubscribesFromAllSubscribedChannels(): void { $redis = $this->getClient(); $this->assertSame(['subscribe', 'channel:foo', 1], $redis->subscribe('channel:foo')); $this->assertSame(['subscribe', 'channel:bar', 2], $redis->subscribe('channel:bar')); $this->assertSame(['punsubscribe', null, 2], $redis->punsubscribe()); } }