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.0.0 */ public function testInitializeCountMinSketchWithDesiredErrorRateAndProbability(): void { $redis = $this->getClient(); $actualResponse = $redis->cmsinitbyprob('key', 0.001, 0.01); $info = $redis->cmsinfo('key'); $this->assertEquals('OK', $actualResponse); $this->assertSame(2000, $info['width']); $this->assertSame(7, $info['depth']); } /** * @group connected * @requiresRedisBfVersion >= 2.0.0 */ public function testThrowsExceptionOnAlreadyExistingKey(): void { $this->expectException(ServerException::class); $this->expectExceptionMessage('CMS: key already exists'); $redis = $this->getClient(); $redis->set('cmsinitbydim_foo', 'bar'); $redis->cmsinitbyprob('cmsinitbydim_foo', 0.001, 0.01); } }