|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Predis package. |
| 5 | + * |
| 6 | + * (c) 2009-2020 Daniele Alessandri |
| 7 | + * (c) 2021-2025 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 BITFIELD_RO_Test extends PredisCommandTestCase |
| 16 | +{ |
| 17 | + /** |
| 18 | + * {@inheritdoc} |
| 19 | + */ |
| 20 | + protected function getExpectedCommand(): string |
| 21 | + { |
| 22 | + return BITFIELD_RO::class; |
| 23 | + } |
| 24 | + |
| 25 | + /** |
| 26 | + * {@inheritdoc} |
| 27 | + */ |
| 28 | + protected function getExpectedId(): string |
| 29 | + { |
| 30 | + return 'BITFIELD_RO'; |
| 31 | + } |
| 32 | + |
| 33 | + /** |
| 34 | + * @group disconnected |
| 35 | + * @dataProvider argumentsProvider |
| 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 connected |
| 47 | + * @return void |
| 48 | + * @requiresRedisVersion >= 6.2.0 |
| 49 | + */ |
| 50 | + public function testReturnBitsOfSpecificString() |
| 51 | + { |
| 52 | + $redis = $this->getClient(); |
| 53 | + |
| 54 | + $redis->set('foo', 'bar'); |
| 55 | + |
| 56 | + $this->assertSame([6, 98], $redis->bitfield_ro('foo', ['u4' => 0, 'i8' => 0])); |
| 57 | + } |
| 58 | + |
| 59 | + public function argumentsProvider(): array |
| 60 | + { |
| 61 | + return [ |
| 62 | + 'with default arguments' => [ |
| 63 | + ['key'], |
| 64 | + ['key'], |
| 65 | + ], |
| 66 | + 'with single encoding-offset entry' => [ |
| 67 | + ['key', ['encoding' => 'offset']], |
| 68 | + ['key', 'GET', 'encoding', 'offset'], |
| 69 | + ], |
| 70 | + 'with multiple encoding-offset entry' => [ |
| 71 | + ['key', ['encoding' => 'offset', 'encoding1' => 'offset1', 'encoding2' => 'offset2']], |
| 72 | + ['key', 'GET', 'encoding', 'offset', 'GET', 'encoding1', 'offset1', 'GET', 'encoding2', 'offset2'], |
| 73 | + ], |
| 74 | + ]; |
| 75 | + } |
| 76 | +} |
0 commit comments