mirror of
https://github.com/predis/predis.git
synced 2026-08-22 11:01:02 +00:00
239 lines
5.4 KiB
PHP
239 lines
5.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2025 Till Krüss
|
|
*
|
|
* 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 = ['foo', 'bar'];
|
|
$expected = ['foo', 'bar'];
|
|
|
|
$command = $this->getCommand();
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame($expected, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testFilterArgumentsRedisWithModifiers(): void
|
|
{
|
|
$arguments = ['foo', 'bar', 'EX', '10', 'NX'];
|
|
$expected = ['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
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 6.0.0
|
|
*/
|
|
public function testSetStringValueUsingCluster(): void
|
|
{
|
|
$this->testSetStringValue();
|
|
}
|
|
|
|
/**
|
|
* @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
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 6.0.0
|
|
*/
|
|
public function testSetStringValueWithModifierEXUsingCluster(): void
|
|
{
|
|
$this->testSetStringValueWithModifierEX();
|
|
}
|
|
|
|
/**
|
|
* @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
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 6.0.0
|
|
*/
|
|
public function testSetStringValueWithModifierPXUsingCluster(): void
|
|
{
|
|
$this->testSetStringValueWithModifierPX();
|
|
}
|
|
|
|
/**
|
|
* @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
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 6.0.0
|
|
*/
|
|
public function testSetStringValueWithModifierNXUsingCluster(): void
|
|
{
|
|
$this->testSetStringValueWithModifierNX();
|
|
}
|
|
|
|
/**
|
|
* @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'));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @requiresRedisVersion >= 2.6.12
|
|
*/
|
|
public function testSetStringDoesNotFailWithExplicitlySetNullArguments(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$this->assertEquals(
|
|
'OK', $redis->set('foo', 'barbar', null, null, null)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @requiresRedisVersion >= 2.6.12
|
|
*/
|
|
public function testSetNull(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$this->assertEquals(
|
|
'OK', $redis->set('foo', null)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @requiresRedisVersion >= 2.6.12
|
|
*/
|
|
public function testSetFalse(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$this->assertEquals(
|
|
'OK', $redis->set('foo', false)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 6.0.0
|
|
*/
|
|
public function testSetStringValueWithModifierXXUsingCluster(): void
|
|
{
|
|
$this->testSetStringValueWithModifierXX();
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @group cluster
|
|
* @requiresRedisVersion >= 3.0.0
|
|
*/
|
|
public function testSetStringValueInClusterMode(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$this->assertEquals('OK', $redis->set('foo', 'bar'));
|
|
}
|
|
}
|