mirror of
https://github.com/predis/predis.git
synced 2026-08-28 11:09:49 +00:00
d6dc6e51e1
* Add CS job * Apply PHP71Migration ruleset
131 lines
3.3 KiB
PHP
131 lines
3.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command\Redis;
|
|
|
|
/**
|
|
* @group commands
|
|
* @group realm-pubsub
|
|
*/
|
|
class UNSUBSCRIBE_Test extends PredisCommandTestCase
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getExpectedCommand(): string
|
|
{
|
|
return 'Predis\Command\Redis\UNSUBSCRIBE';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getExpectedId(): string
|
|
{
|
|
return 'UNSUBSCRIBE';
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testFilterArguments(): void
|
|
{
|
|
$arguments = ['channel1', 'channel2', 'channel3'];
|
|
$expected = ['channel1', 'channel2', 'channel3'];
|
|
|
|
$command = $this->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'));
|
|
}
|
|
}
|