mirror of
https://github.com/predis/predis.git
synced 2026-08-23 03:41:49 +00:00
b253bdc41e
We now have a base test case class for Predis (namely PredisTestCase) grouping various commonly used utility methods shared by all of the tests in the suite, greatly improving reusability.
114 lines
2.5 KiB
PHP
114 lines
2.5 KiB
PHP
<?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;
|
|
|
|
/**
|
|
* @group commands
|
|
* @group realm-string
|
|
*/
|
|
class StringSetExpireTest extends CommandTestCase
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getExpectedCommand()
|
|
{
|
|
return 'Predis\Command\StringSetExpire';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getExpectedId()
|
|
{
|
|
return 'SETEX';
|
|
}
|
|
|
|
/**
|
|
* @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->assertTrue($this->getCommand()->parseResponse(true));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
*/
|
|
public function testCreatesNewKeyAndSetsTTL()
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$this->assertTrue($redis->setex('foo', 10, 'bar'));
|
|
$this->assertTrue($redis->exists('foo'));
|
|
$this->assertEquals(10, $redis->ttl('foo'));
|
|
}
|
|
|
|
/**
|
|
* @medium
|
|
* @group connected
|
|
* @group slow
|
|
*/
|
|
public function testKeyExpiresAfterTTL()
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$redis->setex('foo', 1, 'bar');
|
|
$this->sleep(2.0);
|
|
$this->assertFalse($redis->exists('foo'));;
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @expectedException Predis\Response\ServerException
|
|
* @expectedExceptionMessage ERR value is not an integer or out of range
|
|
*/
|
|
public function testThrowsExceptionOnNonIntegerTTL()
|
|
{
|
|
$this->getClient()->setex('foo', 2.5, 'bar');
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @expectedException Predis\Response\ServerException
|
|
* @expectedExceptionMessage ERR invalid expire time in SETEX
|
|
*/
|
|
public function testThrowsExceptionOnZeroTTL()
|
|
{
|
|
$this->getClient()->setex('foo', 0, 'bar');
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @expectedException Predis\Response\ServerException
|
|
* @expectedExceptionMessage ERR invalid expire time in SETEX
|
|
*/
|
|
public function testThrowsExceptionOnNegativeTTL()
|
|
{
|
|
$this->getClient()->setex('foo', -10, 'bar');
|
|
}
|
|
}
|