* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Command\Redis; /** * @group commands * @group realm-zset */ class ZREVRANK_Test extends PredisCommandTestCase { /** * {@inheritdoc} */ protected function getExpectedCommand() { return 'Predis\Command\Redis\ZREVRANK'; } /** * {@inheritdoc} */ protected function getExpectedId() { return 'ZREVRANK'; } /** * @group disconnected */ public function testFilterArguments() { $arguments = array('key', 'member'); $expected = array('key', 'member'); $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse() { $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group connected * @requiresRedisVersion >= 2.0.0 */ public function testReturnsRank() { $redis = $this->getClient(); $redis->zadd('letters', -10, 'a', 0, 'b', 10, 'c', 20, 'd', 20, 'e', 30, 'f'); $this->assertSame(5, $redis->zrevrank('letters', 'a')); $this->assertSame(4, $redis->zrevrank('letters', 'b')); $this->assertSame(1, $redis->zrevrank('letters', 'e')); $this->assertNull($redis->zrevrank('unknown', 'a')); } /** * @group connected * @requiresRedisVersion >= 2.0.0 * @expectedException \Predis\Response\ServerException * @expectedExceptionMessage Operation against a key holding the wrong kind of value */ public function testThrowsExceptionOnWrongType() { $redis = $this->getClient(); $redis->set('foo', 'bar'); $redis->zrevrank('foo', 'bar'); } }