|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Predis package. |
| 5 | + * |
| 6 | + * (c) 2009-2020 Daniele Alessandri |
| 7 | + * (c) 2021-2023 Till Krüss |
| 8 | + * |
| 9 | + * For the full copyright and license information, please view the LICENSE |
| 10 | + * file that was distributed with this source code. |
| 11 | + */ |
| 12 | + |
| 13 | +namespace Predis\Command\Redis; |
| 14 | + |
| 15 | +use Predis\Response\ServerException; |
| 16 | + |
| 17 | +class XAUTOCLAIM_Test extends PredisCommandTestCase |
| 18 | +{ |
| 19 | + /** |
| 20 | + * {@inheritDoc} |
| 21 | + */ |
| 22 | + protected function getExpectedCommand(): string |
| 23 | + { |
| 24 | + return XAUTOCLAIM::class; |
| 25 | + } |
| 26 | + |
| 27 | + /** |
| 28 | + * {@inheritDoc} |
| 29 | + */ |
| 30 | + protected function getExpectedId(): string |
| 31 | + { |
| 32 | + return 'XAUTOCLAIM'; |
| 33 | + } |
| 34 | + |
| 35 | + /** |
| 36 | + * @dataProvider argumentsProvider |
| 37 | + * @group disconnected |
| 38 | + */ |
| 39 | + public function testFilterArguments(array $actualArguments, array $expectedArguments): void |
| 40 | + { |
| 41 | + $command = $this->getCommand(); |
| 42 | + $command->setArguments($actualArguments); |
| 43 | + |
| 44 | + $this->assertSame($expectedArguments, $command->getArguments()); |
| 45 | + } |
| 46 | + |
| 47 | + /** |
| 48 | + * @group disconnected |
| 49 | + */ |
| 50 | + public function testParseResponse(): void |
| 51 | + { |
| 52 | + $this->assertSame(1, $this->getCommand()->parseResponse(1)); |
| 53 | + } |
| 54 | + |
| 55 | + /** |
| 56 | + * @group connected |
| 57 | + * @group relay-incompatible |
| 58 | + * @return void |
| 59 | + * @requiresRedisVersion >= 7.0.0 |
| 60 | + */ |
| 61 | + public function testTransferStreamOwnershipToGivenConsumerGroup(): void |
| 62 | + { |
| 63 | + $redis = $this->getClient(); |
| 64 | + |
| 65 | + $entryId = $redis->xadd('stream', ['field' => 'value']); |
| 66 | + $this->assertEquals('OK', $redis->xgroup->create('stream', 'group', $entryId)); |
| 67 | + |
| 68 | + $nextEntryId = $redis->xadd('stream', ['newField' => 'newValue']); |
| 69 | + |
| 70 | + $redis->xreadgroup( |
| 71 | + 'group', |
| 72 | + 'consumer', |
| 73 | + null, |
| 74 | + null, |
| 75 | + false, |
| 76 | + 'stream', |
| 77 | + '>'); |
| 78 | + |
| 79 | + $expectedResponse = [ |
| 80 | + '0-0', |
| 81 | + [ |
| 82 | + [ |
| 83 | + $nextEntryId, |
| 84 | + ['newField', 'newValue'], |
| 85 | + ], |
| 86 | + ], |
| 87 | + [], |
| 88 | + ]; |
| 89 | + |
| 90 | + $this->assertSame( |
| 91 | + $expectedResponse, |
| 92 | + $redis->xautoclaim('stream', 'group', 'another_consumer', 0, $entryId) |
| 93 | + ); |
| 94 | + } |
| 95 | + |
| 96 | + /** |
| 97 | + * @group connected |
| 98 | + * @return void |
| 99 | + * @requiresRedisVersion >= 6.2.0 |
| 100 | + */ |
| 101 | + public function testThrowsExceptionOnNonExistingConsumerGroupOrStream(): void |
| 102 | + { |
| 103 | + $redis = $this->getClient(); |
| 104 | + |
| 105 | + $this->expectException(ServerException::class); |
| 106 | + $this->expectExceptionMessage( |
| 107 | + "NOGROUP No such key 'stream' or consumer group 'group'" |
| 108 | + ); |
| 109 | + |
| 110 | + $redis->xautoclaim('stream', 'group', 'another_consumer', 0, '0-0'); |
| 111 | + } |
| 112 | + |
| 113 | + public function argumentsProvider(): array |
| 114 | + { |
| 115 | + return [ |
| 116 | + 'with default arguments' => [ |
| 117 | + ['key', 'group', 'consumer', 10000, '0-0'], |
| 118 | + ['key', 'group', 'consumer', 10000, '0-0'], |
| 119 | + ], |
| 120 | + 'with COUNT modifier' => [ |
| 121 | + ['key', 'group', 'consumer', 10000, '0-0', 20], |
| 122 | + ['key', 'group', 'consumer', 10000, '0-0', 'COUNT', 20], |
| 123 | + ], |
| 124 | + 'with JUSTID modifier' => [ |
| 125 | + ['key', 'group', 'consumer', 10000, '0-0', null, true], |
| 126 | + ['key', 'group', 'consumer', 10000, '0-0', 'JUSTID'], |
| 127 | + ], |
| 128 | + 'with all arguments' => [ |
| 129 | + ['key', 'group', 'consumer', 10000, '0-0', 10, true], |
| 130 | + ['key', 'group', 'consumer', 10000, '0-0', 'COUNT', 10, 'JUSTID'], |
| 131 | + ], |
| 132 | + ]; |
| 133 | + } |
| 134 | +} |
0 commit comments