Files
predis/tests/Predis/Command/Redis/ARGET_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

146 lines
3.3 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 ARGET_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return ARGET::class;
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'ARGET';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = ['key', 0];
$expected = ['key', 0];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame('value', $this->getCommand()->parseResponse('value'));
}
/**
* @group disconnected
*/
public function testPrefixKeys(): void
{
/** @var PrefixableCommand $command */
$command = $this->getCommand();
$actualArguments = ['arg1', 0];
$prefix = 'prefix:';
$expectedArguments = ['prefix:arg1', 0];
$command->setArguments($actualArguments);
$command->prefixKeys($prefix);
$this->assertSame($expectedArguments, $command->getArguments());
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testReturnsValueAtSpecifiedIndex(): void
{
$redis = $this->getClient();
$redis->arset('arr', 0, 'a', 'b', 'c');
$this->assertSame('a', $redis->arget('arr', 0));
$this->assertSame('b', $redis->arget('arr', 1));
$this->assertSame('c', $redis->arget('arr', 2));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testReturnsNullWhenKeyDoesNotExist(): void
{
$redis = $this->getClient();
$this->assertNull($redis->arget('nonexistent', 0));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testReturnsNullWhenIndexDoesNotExist(): void
{
$redis = $this->getClient();
$redis->arset('arr', 0, 'a');
$this->assertNull($redis->arget('arr', 100));
}
/**
* @group connected
* @requiresRedisVersion >= 8.8.0
*/
public function testReturnsValueAtSpecifiedIndexResp3(): void
{
$redis = $this->getResp3Client();
$redis->arset('arr', 0, 'a', 'b', 'c');
$this->assertSame('b', $redis->arget('arr', 1));
$this->assertNull($redis->arget('nonexistent', 0));
}
/**
* @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->arget('foo', 0);
}
}