getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('member', $this->getCommand()->parseResponse('member')); } /** * @group disconnected */ public function testPrefixKeys(): void { /** @var PrefixableCommand $command */ $command = $this->getCommand(); $actualArguments = ['arg1', 'arg2', 'arg3', 'arg4']; $prefix = 'prefix:'; $expectedArguments = ['prefix:arg1', 'arg2', 'arg3', 'arg4']; $command->setArguments($actualArguments); $command->prefixKeys($prefix); $this->assertSame($expectedArguments, $command->getArguments()); } /** * @group connected */ public function testPopsRandomMemberFromSet(): void { $redis = $this->getClient(); $redis->sadd('letters', 'a', 'b'); $this->assertContains($redis->spop('letters'), ['a', 'b']); $this->assertContains($redis->spop('letters'), ['a', 'b']); $this->assertNull($redis->spop('letters')); } /** * @group connected * @requiresRedisVersion >= 6.0.0 */ public function testPopsRandomMemberFromSetResp3(): void { $redis = $this->getResp3Client(); $redis->sadd('letters', 'a', 'b'); $this->assertContains($redis->spop('letters'), ['a', 'b']); $this->assertContains($redis->spop('letters'), ['a', 'b']); $this->assertNull($redis->spop('letters')); } /** * @group connected * @requiresRedisVersion >= 3.2.0 */ public function testPopsMoreRandomMembersFromSet(): void { $redis = $this->getClient(); $redis->sadd('letters', 'a', 'b', 'c'); $this->assertSameValues(['a', 'b', 'c'], $redis->spop('letters', 3)); $this->assertEmpty($redis->spop('letters', 3)); $this->assertNull($redis->spop('letters')); } /** * @group connected */ public function testThrowsExceptionOnWrongType(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('Operation against a key holding the wrong kind of value'); $redis = $this->getClient(); $redis->set('foo', 'bar'); $redis->spop('foo'); } }