Files
predis/tests/Predis/Command/Redis/ARRING_Test.php
Vladyslav Vildanov d6f91964e0 Added support for new array commands (#1672)
* Added support for new array commands

* Updated test image, fixed tests

* Updated CHANGELOG.md

* Removed ARLASTITEMS from ClusterStrategy testing

* Fixed broken tests

* Fixed broken test

* Updated 8.8-RC1 image

* Fixed Vector Set tests
2026-05-19 12:19:46 +03:00

155 lines
3.6 KiB
PHP

<?php
/*
* This file is part of the Predis package.
*
* (c) 2009-2020 Daniele Alessandri
* (c) 2021-2026 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;
use Predis\Command\PrefixableCommand;
/**
* @group commands
* @group realm-array
*/
class ARRING_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return ARRING::class;
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'ARRING';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = ['key', 3, 'a', 'b', 'c'];
$expected = ['key', 3, 'a', 'b', 'c'];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testFilterArgumentsValuesAsSingleArray(): void
{
$arguments = ['key', 3, ['a', 'b', 'c']];
$expected = ['key', 3, 'a', 'b', 'c'];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame(2, $this->getCommand()->parseResponse(2));
}
/**
* @group disconnected
*/
public function testPrefixKeys(): void
{
/** @var PrefixableCommand $command */
$command = $this->getCommand();
$actualArguments = ['arg1', 3, 'a'];
$prefix = 'prefix:';
$expectedArguments = ['prefix:arg1', 3, 'a'];
$command->setArguments($actualArguments);
$command->prefixKeys($prefix);
$this->assertSame($expectedArguments, $command->getArguments());
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testInsertsValuesSequentiallyStartingAtZero(): void
{
$redis = $this->getClient();
$this->assertSame(0, $redis->arring('arr', 3, 'a'));
$this->assertSame('a', $redis->arget('arr', 0));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testInsertsMultipleValuesInSingleCall(): void
{
$redis = $this->getClient();
$this->assertSame(2, $redis->arring('arr', 3, 'a', 'b', 'c'));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testWrapsAroundOnceRingIsFull(): void
{
$redis = $this->getClient();
$redis->arring('arr', 3, 'a', 'b', 'c');
$this->assertSame(0, $redis->arring('arr', 3, 'd'));
$this->assertSame('d', $redis->arget('arr', 0));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testInsertsValuesResp3(): void
{
$redis = $this->getResp3Client();
$this->assertSame(2, $redis->arring('arr', 3, 'a', 'b', 'c'));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testThrowsExceptionOnWrongType(): void
{
$this->expectException('Predis\Response\ServerException');
$this->expectExceptionMessage('Operation against a key holding the wrong kind of value');
$redis = $this->getClient();
$redis->set('foo', 'bar');
$redis->arring('foo', 3, 'a');
}
}