getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $raw = ['member1', 'member2', 'member3']; $expected = ['member1', 'member2', 'member3']; $command = $this->getCommand(); $this->assertSame($expected, $command->parseResponse($raw)); } /** * @group connected */ public function testReturnsEmptyArrayOnNonExistingSet(): void { $redis = $this->getClient(); $redis->sadd('letters', 'a', 'b', 'c', 'd', 'e'); $this->assertSameValues(['a', 'b', 'c', 'd', 'e'], $redis->smembers('letters')); $this->assertSame([], $redis->smembers('digits')); } /** * @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->smembers('foo'); } }