Files
predis/tests/Predis/Command/StringPreciseSetExpireTest.php
T
Raza Mehdi 5edf443141 Fix tests.
2020-08-16 01:59:41 +05:00

117 lines
2.6 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 StringPreciseSetExpireTest extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand()
{
return 'Predis\Command\StringPreciseSetExpire';
}
/**
* {@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
*/
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
*/
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
*/
public function testThrowsExceptionOnNonIntegerTTL()
{
$this->expectException('Predis\Response\ServerException');
$this->expectExceptionMessage('ERR value is not an integer or out of range');
$this->getClient()->psetex('foo', 2.5, 'bar');
}
/**
* @group connected
*/
public function testThrowsExceptionOnZeroTTL()
{
$this->expectException('Predis\Response\ServerException');
$this->expectExceptionMessage('ERR invalid expire time');
$this->getClient()->psetex('foo', 0, 'bar');
}
/**
* @group connected
*/
public function testThrowsExceptionOnNegativeTTL()
{
$this->expectException('Predis\Response\ServerException');
$this->expectExceptionMessage('ERR invalid expire time');
$this->getClient()->psetex('foo', -10000, 'bar');
}
}