getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsAsSingleArray(): void { $arguments = [['channel1', 'channel2', 'channel3']]; $expected = ['channel1', 'channel2', 'channel3']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $raw = ['unsubscribe', 'channel', 1]; $expected = ['unsubscribe', '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(['unsubscribe', 'channel', 0], $redis->unsubscribe('channel')); $this->assertSame('echoed', $redis->echo('echoed')); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testUnsubscribesFromNotSubscribedChannels(): void { $redis = $this->getClient(); $this->assertSame(['unsubscribe', 'channel', 0], $redis->unsubscribe('channel')); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testUnsubscribesFromSubscribedChannels(): void { $redis = $this->getClient(); $this->assertSame(['subscribe', 'channel', 1], $redis->subscribe('channel')); $this->assertSame(['unsubscribe', 'channel', 0], $redis->unsubscribe('channel')); } /** * @group connected * @requiresRedisVersion >= 2.0.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')); [$_, $unsubscribed1, $_] = $redis->unsubscribe(); [$_, $unsubscribed2, $_] = $redis->getConnection()->read(); $this->assertSameValues(['channel:foo', 'channel:bar'], [$unsubscribed1, $unsubscribed2]); $this->assertSame('echoed', $redis->echo('echoed')); } }