12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /*
- * This file is part of the Predis package.
- *
- * (c) Daniele Alessandri <suppakilla@gmail.com>
- *
- * 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 ZRANK_Test extends PredisCommandTestCase
- {
- /**
- * {@inheritdoc}
- */
- protected function getExpectedCommand()
- {
- return 'Predis\Command\Redis\ZRANK';
- }
- /**
- * {@inheritdoc}
- */
- protected function getExpectedId()
- {
- return 'ZRANK';
- }
- /**
- * @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(0, $redis->zrank('letters', 'a'));
- $this->assertSame(1, $redis->zrank('letters', 'b'));
- $this->assertSame(4, $redis->zrank('letters', 'e'));
- $this->assertNull($redis->zrank('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->zrank('foo', 'bar');
- }
- }
|