getCommand(); $command->setArguments($actualArguments); $this->assertSameValues($expectedArguments, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group connected * @group relay-resp3 * @return void * @requiresRedisBfVersion >= 2.4.0 */ public function testResetExistingSketch(): void { $redis = $this->getClient(); $redis->tdigestcreate('key', 500); $redis->tdigestadd('key', 1, 2, 2, 3, 3, 3); $this->assertEquals( ['1', '2', '2', '3', '3', '3'], $redis->tdigestbyrank('key', 0, 1, 2, 3, 4, 5) ); $actualResponse = $redis->tdigestreset('key'); $info = $redis->tdigestinfo('key'); $this->assertEquals('OK', $actualResponse); $this->assertSame(500, $info['Compression']); $this->assertEquals( ['nan', 'nan', 'nan', 'nan', 'nan', 'nan'], $redis->tdigestbyrank('key', 0, 1, 2, 3, 4, 5) ); } /** * @group connected * @return void * @requiresRedisBfVersion >= 2.4.0 */ public function testThrowsExceptionOnNonExistingTDigestSketch(): void { $redis = $this->getClient(); $this->expectException(ServerException::class); $this->expectExceptionMessage('ERR T-Digest: key does not exist'); $redis->tdigestreset('key'); } }