|
| 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 | +class XREAD_Test extends PredisCommandTestCase |
| 16 | +{ |
| 17 | + /** |
| 18 | + * {@inheritDoc} |
| 19 | + */ |
| 20 | + protected function getExpectedCommand(): string |
| 21 | + { |
| 22 | + return XREAD::class; |
| 23 | + } |
| 24 | + |
| 25 | + /** |
| 26 | + * {@inheritDoc} |
| 27 | + */ |
| 28 | + protected function getExpectedId(): string |
| 29 | + { |
| 30 | + return 'XREAD'; |
| 31 | + } |
| 32 | + |
| 33 | + /** |
| 34 | + * @dataProvider argumentsProvider |
| 35 | + * @group disconnected |
| 36 | + */ |
| 37 | + public function testFilterArguments(array $actualArguments, array $expectedArguments): void |
| 38 | + { |
| 39 | + $command = $this->getCommand(); |
| 40 | + $command->setArguments($actualArguments); |
| 41 | + |
| 42 | + $this->assertSame($expectedArguments, $command->getArguments()); |
| 43 | + } |
| 44 | + |
| 45 | + /** |
| 46 | + * @group disconnected |
| 47 | + */ |
| 48 | + public function testParseResponse(): void |
| 49 | + { |
| 50 | + $this->assertSame( |
| 51 | + ['stream1' => [['id1', ['field', 'value']], ['id2', ['field', 'value']]]], |
| 52 | + $this->getCommand()->parseResponse( |
| 53 | + [['stream1', [['id1', ['field', 'value']], ['id2', ['field', 'value']]]]]) |
| 54 | + ); |
| 55 | + } |
| 56 | + |
| 57 | + /** |
| 58 | + * @group connected |
| 59 | + * @group relay-incompatible |
| 60 | + * @return void |
| 61 | + * @requiresRedisVersion >= 5.0.0 |
| 62 | + */ |
| 63 | + public function testReadFromTheBeginningOfGivenStreams(): void |
| 64 | + { |
| 65 | + $redis = $this->getClient(); |
| 66 | + |
| 67 | + $stream1Id = $redis->xadd('stream1', ['field' => 'value']); |
| 68 | + $stream2Id = $redis->xadd('stream2', ['field' => 'value']); |
| 69 | + |
| 70 | + $expectedResponse = [ |
| 71 | + 'stream1' => [ |
| 72 | + [$stream1Id, ['field', 'value']], |
| 73 | + ], |
| 74 | + 'stream2' => [ |
| 75 | + [$stream2Id, ['field', 'value']], |
| 76 | + ], |
| 77 | + ]; |
| 78 | + |
| 79 | + $response = $redis->xread(2, null, ['stream1', 'stream2'], '0-0', '0-0'); |
| 80 | + |
| 81 | + $this->assertSame($expectedResponse, $response); |
| 82 | + } |
| 83 | + |
| 84 | + /** |
| 85 | + * @group medium |
| 86 | + * @group connected |
| 87 | + * @group relay-incompatible |
| 88 | + * @return void |
| 89 | + * @requiresRedisVersion >= 5.0.0 |
| 90 | + */ |
| 91 | + public function testReadFromTheBeginningOfGivenStreamsWithBlocking(): void |
| 92 | + { |
| 93 | + $redis = $this->getClient(); |
| 94 | + |
| 95 | + $stream1Id = $redis->xadd('stream1', ['field' => 'value']); |
| 96 | + $stream2Id = $redis->xadd('stream2', ['field' => 'value']); |
| 97 | + |
| 98 | + $expectedResponse = [ |
| 99 | + 'stream1' => [ |
| 100 | + [$stream1Id, ['field', 'value']], |
| 101 | + ], |
| 102 | + 'stream2' => [ |
| 103 | + [$stream2Id, ['field', 'value']], |
| 104 | + ], |
| 105 | + ]; |
| 106 | + |
| 107 | + $response = $redis->xread(2, 20, ['stream1', 'stream2'], '0-0', '0-0'); |
| 108 | + |
| 109 | + $this->assertSame($expectedResponse, $response); |
| 110 | + } |
| 111 | + |
| 112 | + /** |
| 113 | + * @group connected |
| 114 | + * @group relay-incompatible |
| 115 | + * @return void |
| 116 | + * @requiresRedisVersion >= 7.3.0 |
| 117 | + */ |
| 118 | + public function testReadFromGivenStreamsStartingFromLastAvailableId(): void |
| 119 | + { |
| 120 | + $redis = $this->getClient(); |
| 121 | + |
| 122 | + $redis->xadd('stream1', ['otherField' => 'otherValue']); |
| 123 | + $redis->xadd('stream2', ['otherField' => 'otherValue']); |
| 124 | + |
| 125 | + $stream1Id = $redis->xadd('stream1', ['field' => 'value']); |
| 126 | + $stream2Id = $redis->xadd('stream2', ['field' => 'value']); |
| 127 | + |
| 128 | + $expectedResponse = [ |
| 129 | + 'stream1' => [ |
| 130 | + [$stream1Id, ['field', 'value']], |
| 131 | + ], |
| 132 | + 'stream2' => [ |
| 133 | + [$stream2Id, ['field', 'value']], |
| 134 | + ], |
| 135 | + ]; |
| 136 | + |
| 137 | + $response = $redis->xread(2, null, ['stream1', 'stream2'], '+', '+'); |
| 138 | + |
| 139 | + $this->assertSame($expectedResponse, $response); |
| 140 | + } |
| 141 | + |
| 142 | + public function argumentsProvider(): array |
| 143 | + { |
| 144 | + return [ |
| 145 | + 'with default arguments' => [ |
| 146 | + [null, null, null, '0-0', '0-1'], |
| 147 | + ['0-0', '0-1'], |
| 148 | + ], |
| 149 | + 'with COUNT argument' => [ |
| 150 | + [2, null, null, '0-0', '0-1'], |
| 151 | + ['COUNT', 2, '0-0', '0-1'], |
| 152 | + ], |
| 153 | + 'with BLOCK argument' => [ |
| 154 | + [null, 20, null, '0-0', '0-1'], |
| 155 | + ['BLOCK', 20, '0-0', '0-1'], |
| 156 | + ], |
| 157 | + 'with STREAMS argument' => [ |
| 158 | + [null, null, ['key1', 'key2'], '0-0', '0-1'], |
| 159 | + ['STREAMS', 'key1', 'key2', '0-0', '0-1'], |
| 160 | + ], |
| 161 | + 'with all arguments' => [ |
| 162 | + [2, 20, ['key1', 'key2'], '0-0', '0-1'], |
| 163 | + ['COUNT', 2, 'BLOCK', 20, 'STREAMS', 'key1', 'key2', '0-0', '0-1'], |
| 164 | + ], |
| 165 | + ]; |
| 166 | + } |
| 167 | +} |
0 commit comments