1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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\Commands;
- use \PHPUnit_Framework_TestCase as StandardTestCase;
- /**
- * @group commands
- * @group realm-key
- */
- class KeyTypeTest extends CommandTestCase
- {
- /**
- * {@inheritdoc}
- */
- protected function getExpectedCommand()
- {
- return 'Predis\Commands\KeyType';
- }
- /**
- * {@inheritdoc}
- */
- protected function getExpectedId()
- {
- return 'TYPE';
- }
- /**
- * @group disconnected
- */
- public function testFilterArguments()
- {
- $arguments = array('key');
- $expected = array('key');
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group disconnected
- */
- public function testParseResponse()
- {
- $this->assertSame('type', $this->getCommand()->parseResponse('type'));
- }
- /**
- * @group disconnected
- */
- public function testPrefixKeys()
- {
- $arguments = array('key');
- $expected = array('prefix:key');
- $command = $this->getCommandWithArgumentsArray($arguments);
- $command->prefixKeys('prefix:');
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group connected
- */
- public function testReturnsTypeOfKey()
- {
- $redis = $this->getClient();
- $this->assertSame('none', $redis->type('type:keydoesnotexist'));
- $redis->set('type:string', 'foobar');
- $this->assertSame('string', $redis->type('type:string'));
- $redis->lpush('type:list', 'foobar');
- $this->assertSame('list', $redis->type('type:list'));
- $redis->sadd('type:set', 'foobar');
- $this->assertSame('set', $redis->type('type:set'));
- $redis->zadd('type:zset', 0, 'foobar');
- $this->assertSame('zset', $redis->type('type:zset'));
- $redis->hset('type:hash', 'foo', 'bar');
- $this->assertSame('hash', $redis->type('type:hash'));
- }
- }
|