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 testInitializeCountMinSketchWithGivenConfiguration(): void { $redis = $this->getClient(); $actualResponse = $redis->cmsinitbydim('key', 2000, 10); $info = $redis->cmsinfo('key'); $this->assertEquals('OK', $actualResponse); $this->assertSame(2000, $info['width']); $this->assertSame(10, $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->cmsinitbydim('cmsinitbydim_foo', 2000, 10); } }