Files
predis/tests/Predis/Command/Redis/XREADGROUP_Test.php
T
Vladyslav Vildanov b18c56e510 Added support for XREADGROUP command (#1327)
* Codestyle changes related to php-cs-fixer update (#1311)

* Codestyle changes

* Added missing type-hints

* Added GETDEL command to KeyPrefixProcessor (#1306)

* Added GETDEL command to KeyPrefixProcessor

* Added test coverage

* Codestyle fixes

* Added timeout after FT.CREATE call

* Added support for JSON.MERGE command (#1304)

* Added support for JSON.MSET command (#1307)

* Fixed subcommand test bug (#1313)

* Update CHANGELOG.md

* Update CHANGELOG.md

* Added support for XGROUP container commands

* Added support for XREADGROUP command

* Fixed bug with incorrect multiple words processing (#1325)

* Fixed bug with incorrect multiple words processing

* Convert subcommand string to lower case

* Update SubcommandStrategyResolver.php

* Added test coverage

* Codestyle fixes

---------

Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>

* Added split words handling

* Fixed command id to be lowercase

* Fixed test decorator

* Marked test as realy incompatible

* Added support for FUNCTION DUMP, FUNCTION FLUSH, FUNCTION RESTORE commands (#1332)

* Added test case with multiple streams

* Removed old files

* Move back missing tests

* Removed blank space

* Added method signature

---------

Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>
2023-07-26 16:50:56 +03:00

191 lines
5.2 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;
use Predis\Response\ServerException;
class XREADGROUP_Test extends PredisCommandTestCase
{
/**
* {@inheritDoc}
*/
protected function getExpectedCommand(): string
{
return XREADGROUP::class;
}
/**
* {@inheritDoc}
*/
protected function getExpectedId(): string
{
return 'XREADGROUP';
}
/**
* @dataProvider argumentsProvider
* @group disconnected
*/
public function testFilterArguments(array $actualArguments, array $expectedArguments): void
{
$command = $this->getCommand();
$command->setArguments($actualArguments);
$this->assertSame($expectedArguments, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame(1, $this->getCommand()->parseResponse(1));
}
/**
* @group connected
* @group relay-incompatible
* @return void
* @requiresRedisVersion >= 5.0.0
*/
public function testReadsFromGivenConsumerGroup(): void
{
$redis = $this->getClient();
$streamInitId = $redis->xadd('stream', ['field' => 'value']);
$this->assertEquals('OK', $redis->xgroup->create('stream', 'group', $streamInitId));
$nextId = $redis->xadd('stream', ['newField' => 'newValue']);
$expectedResponse = [
[
'stream',
[
[$nextId, ['newField', 'newValue']],
],
],
];
$this->assertSame(
$expectedResponse,
$redis->xreadgroup(
'group',
'consumer',
null,
null,
false,
'stream',
'>')
);
}
/**
* @group connected
* @group relay-incompatible
* @return void
* @requiresRedisVersion >= 5.0.0
*/
public function testReadsFromConsumerGroupFromMultipleStreams(): void
{
$redis = $this->getClient();
$streamInitId = $redis->xadd('stream', ['field' => 'value']);
$this->assertEquals('OK', $redis->xgroup->create('stream', 'group', $streamInitId));
$anotherStreamInitId = $redis->xadd('another_stream', ['field' => 'value']);
$this->assertEquals('OK', $redis->xgroup->create('another_stream', 'group', $anotherStreamInitId));
$nextId = $redis->xadd('stream', ['newField' => 'newValue']);
$anotherNextId = $redis->xadd('another_stream', ['newField' => 'newValue']);
$expectedResponse = [
[
'stream',
[
[$nextId, ['newField', 'newValue']],
],
],
[
'another_stream',
[
[$anotherNextId, ['newField', 'newValue']],
],
],
];
$this->assertSame(
$expectedResponse,
$redis->xreadgroup(
'group',
'consumer',
null,
null,
false,
'stream',
'another_stream',
'>',
'>'
)
);
}
/**
* @group connected
* @return void
* @requiresRedisVersion >= 5.0.0
*/
public function testThrowsExceptionOnNonExistingConsumerGroupOrStream(): void
{
$redis = $this->getClient();
$this->expectException(ServerException::class);
$this->expectExceptionMessage(
"NOGROUP No such key 'stream' or consumer group 'group' in XREADGROUP with GROUP option"
);
$redis->xreadgroup(
'group',
'consumer',
null,
null,
false,
'stream',
'>');
}
public function argumentsProvider(): array
{
return [
'with default arguments' => [
['group', 'consumer', null, null, false, 'stream', '0-0'],
['GROUP', 'group', 'consumer', 'STREAMS', 'stream', '0-0'],
],
'with COUNT modifier' => [
['group', 'consumer', 10, null, false, 'stream', '0-0'],
['GROUP', 'group', 'consumer', 'COUNT', 10, 'STREAMS', 'stream', '0-0'],
],
'with BLOCK modifier' => [
['group', 'consumer', null, 10, false, 'stream', '0-0'],
['GROUP', 'group', 'consumer', 'BLOCK', 10, 'STREAMS', 'stream', '0-0'],
],
'with NOACK modifier' => [
['group', 'consumer', null, null, true, 'stream', '0-0'],
['GROUP', 'group', 'consumer', 'NOACK', 'STREAMS', 'stream', '0-0'],
],
'with all arguments' => [
['group', 'consumer', 10, 10, true, 'stream', '0-0', '10-0'],
['GROUP', 'group', 'consumer', 'COUNT', 10, 'BLOCK', 10, 'NOACK', 'STREAMS', 'stream', '0-0', '10-0'],
],
];
}
}