123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace Predis\Commands;
- use \PHPUnit_Framework_TestCase as StandardTestCase;
- class KeyTimeToLiveTest extends CommandTestCase
- {
-
- protected function getExpectedCommand()
- {
- return 'Predis\Commands\KeyTimeToLive';
- }
-
- protected function getExpectedId()
- {
- return 'TTL';
- }
-
- public function testFilterArguments()
- {
- $arguments = array('key', 10);
- $expected = array('key', 10);
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
-
- public function testParseResponse()
- {
- $command = $this->getCommand();
- $this->assertSame(100, $command->parseResponse(100));
- }
-
- public function testPrefixKeys()
- {
- $arguments = array('key', 10);
- $expected = array('prefix:key', 10);
- $command = $this->getCommandWithArgumentsArray($arguments);
- $command->prefixKeys('prefix:');
- $this->assertSame($expected, $command->getArguments());
- }
-
- public function testReturnsTTL()
- {
- $redis = $this->getClient();
- $redis->set('foo', 'bar');
- $redis->expire('foo', 10);
- $this->assertSame(10, $redis->ttl('foo'));
- }
-
- public function testReturnsLessThanZeroOnNonExistingKeys()
- {
- $redis = $this->getClient();
- $this->assertSame(-1, $redis->ttl('foo'));
- }
-
- public function testReturnsLessThanZeroOnNonExpiringKeys()
- {
- $redis = $this->getClient();
- $redis->set('foo', 'bar');
- $this->assertSame(-1, $redis->ttl('foo'));
- }
- }
|