@@ -39,8 +39,8 @@ protected function getExpectedId(): string
39
39
*/
40
40
public function testFilterArguments (): void
41
41
{
42
- $ arguments = ['key ' , 0 , 10 ];
43
- $ expected = ['key ' , 0 , 10 ];
42
+ $ arguments = ['key ' , 0 , 10 , ' bit ' ];
43
+ $ expected = ['key ' , 0 , 10 , ' BIT ' ];
44
44
45
45
$ command = $ this ->getCommand ();
46
46
$ command ->setArguments ($ arguments );
@@ -79,6 +79,24 @@ public function testReturnsNumberOfBitsSet(): void
79
79
$ this ->assertSame (3 , $ redis ->bitcount ('key ' , 2 , 4 ), 'Count bits set (with range) ' );
80
80
}
81
81
82
+ /**
83
+ * @group connected
84
+ * @requiresRedisVersion >= 7.0.0
85
+ */
86
+ public function testReturnsNumberOfBitsSetWithExplicitBitByteArgument (): void
87
+ {
88
+ $ redis = $ this ->getClient ();
89
+
90
+ $ redis ->setbit ('key ' , 1 , 1 );
91
+ $ redis ->setbit ('key ' , 10 , 1 );
92
+ $ redis ->setbit ('key ' , 16 , 1 );
93
+ $ redis ->setbit ('key ' , 22 , 1 );
94
+ $ redis ->setbit ('key ' , 32 , 1 );
95
+
96
+ $ this ->assertSame (2 , $ redis ->bitcount ('key ' , 0 , 10 , 'bit ' ), 'Count bits set (without range) ' );
97
+ $ this ->assertSame (1 , $ redis ->bitcount ('key ' , 0 , 4 , 'bit ' ), 'Count bits set (with range) ' );
98
+ }
99
+
82
100
/**
83
101
* @group connected
84
102
* @requiresRedisVersion >= 2.6.0
0 commit comments