Files
predis/tests/Predis/Command/Redis/SET_Test.php
T
Daniele Alessandri 36c9bb047e [tests] Start improving test suite.
- Make use of more typehints for function parameters
- Make use of typehints for function return values
- Use @var where needed to give proper hints to IDEs and avoid warnings
- Replace MockObject::setMethods() with addMethods() and onlyMethods()
- Rewording of some phpdocs
2020-09-01 13:58:14 +02:00

137 lines
3.2 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\Redis;
/**
* @group commands
* @group realm-string
*/
class SET_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return 'Predis\Command\Redis\SET';
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'SET';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = array('foo', 'bar');
$expected = array('foo', 'bar');
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testFilterArgumentsRedisWithModifiers(): void
{
$arguments = array('foo', 'bar', 'EX', '10', 'NX');
$expected = array('foo', 'bar', 'EX', '10', 'NX');
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame('OK', $this->getCommand()->parseResponse('OK'));
}
/**
* @group connected
*/
public function testSetStringValue(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->set('foo', 'bar'));
$this->assertSame(1, $redis->exists('foo'));
$this->assertSame('bar', $redis->get('foo'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.12
*/
public function testSetStringValueWithModifierEX(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->set('foo', 'bar', 'ex', 1));
$this->assertSame(1, $redis->ttl('foo'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.12
*/
public function testSetStringValueWithModifierPX(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->set('foo', 'bar', 'px', 1000));
$pttl = $redis->pttl('foo');
$this->assertGreaterThan(0, $pttl);
$this->assertLessThanOrEqual(1000, $pttl);
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.12
*/
public function testSetStringValueWithModifierNX(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->set('foo', 'bar', 'NX'));
$this->assertNull($redis->set('foo', 'bar', 'NX'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.12
*/
public function testSetStringValueWithModifierXX(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->set('foo', 'bar'));
$this->assertEquals('OK', $redis->set('foo', 'barbar', 'XX'));
$this->assertNull($redis->set('foofoo', 'barbar', 'XX'));
}
}