getCommand(); $command->setArguments($actualArguments); $this->assertSameValues($expectedArguments, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $actualResponse = ['k', 50, 'width', 8, 'depth', 7, 'decay', '0.90000000000000002']; $expectedResponse = ['k' => 50, 'width' => 8, 'depth' => 7, 'decay' => '0.90000000000000002']; $this->assertSame($expectedResponse, $this->getCommand()->parseResponse($actualResponse)); } /** * @group connected * @group relay-resp3 * @return void * @requiresRedisBfVersion >= 2.0.0 */ public function testReturnsInfoAboutGivenTopKStructure(): void { $redis = $this->getClient(); $redis->topkreserve('key', 50); $this->assertSameWithPrecision( ['k' => 50, 'width' => 8, 'depth' => 7, 'decay' => '0.90000000000000002'], $redis->topkinfo('key'), 1 ); } /** * @group connected * @return void * @requiresRedisBfVersion >= 2.0.0 */ public function testThrowsExceptionOnNonExistingKey(): void { $redis = $this->getClient(); $this->expectException(ServerException::class); $this->expectExceptionMessage('TopK: key does not exist'); $redis->topkinfo('key'); } }