getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $command = $this->getCommand(); $this->assertSame(0, $command->parseResponse(0)); $this->assertSame(1, $command->parseResponse(1)); } /** * @group connected */ public function testReturnsMemberExistenceInSet(): void { $redis = $this->getClient(); $redis->sadd('letters:source', 'a', 'b', 'c'); $this->assertSame(1, $redis->smove('letters:source', 'letters:destination', 'b')); $this->assertSame(0, $redis->smove('letters:source', 'letters:destination', 'z')); $this->assertSameValues(['a', 'c'], $redis->smembers('letters:source')); $this->assertSameValues(['b'], $redis->smembers('letters:destination')); } /** * @group connected */ public function testThrowsExceptionOnWrongTypeOfSourceKey(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('Operation against a key holding the wrong kind of value'); $redis = $this->getClient(); $redis->set('set:source', 'foo'); $redis->sadd('set:destination', 'bar'); $redis->smove('set:destination', 'set:source', 'foo'); } /** * @group connected */ public function testThrowsExceptionOnWrongTypeOfDestinationKey(): void { $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('Operation against a key holding the wrong kind of value'); $redis = $this->getClient(); $redis->sadd('set:source', 'foo'); $redis->set('set:destination', 'bar'); $redis->smove('set:destination', 'set:source', 'foo'); } }