123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?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-string
- */
- class PSETEX_Test extends PredisCommandTestCase
- {
- /**
- * {@inheritdoc}
- */
- protected function getExpectedCommand()
- {
- return 'Predis\Command\Redis\PSETEX';
- }
- /**
- * {@inheritdoc}
- */
- protected function getExpectedId()
- {
- return 'PSETEX';
- }
- /**
- * @group disconnected
- */
- public function testFilterArguments()
- {
- $arguments = array('key', 10, 'hello');
- $expected = array('key', 10, 'hello');
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group disconnected
- */
- public function testParseResponse()
- {
- $this->assertSame('OK', $this->getCommand()->parseResponse('OK'));
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.0
- */
- public function testCreatesNewKeyAndSetsTTL()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->psetex('foo', 10000, 'bar'));
- $this->assertSame(1, $redis->exists('foo'));
- $this->assertSame(10, $redis->ttl('foo'));
- }
- /**
- * @group connected
- * @group slow
- * @requiresRedisVersion >= 2.6.0
- */
- public function testKeyExpiresAfterTTL()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->psetex('foo', 50, 'bar'));
- $this->sleep(0.5);
- $this->assertSame(0, $redis->exists('foo'));
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.0
- * @expectedException \Predis\Response\ServerException
- * @expectedExceptionMessage ERR value is not an integer or out of range
- */
- public function testThrowsExceptionOnNonIntegerTTL()
- {
- $this->getClient()->psetex('foo', 2.5, 'bar');
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.0
- * @expectedException \Predis\Response\ServerException
- * @expectedExceptionMessage ERR invalid expire time
- */
- public function testThrowsExceptionOnZeroTTL()
- {
- $this->getClient()->psetex('foo', 0, 'bar');
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.0
- * @expectedException \Predis\Response\ServerException
- * @expectedExceptionMessage ERR invalid expire time
- */
- public function testThrowsExceptionOnNegativeTTL()
- {
- $this->getClient()->psetex('foo', -10000, 'bar');
- }
- }
|