Files
predis/tests/Predis/Command/Redis/CONFIG_Test.php
T
Vladyslav Vildanov 02e2a7e1cc Added test coverage for compatibility with Redis 8.0 (#1513)
* Added testing with 8.0

* Removed old service

* Moved checkout stage above image

* Changed service name

* Override config options for Redis < 7

* Exported to github env

* Print major version output

* Added double quotes

* Test fixes

* Merge cluster and standalone infrastructure

* Removed separate cluster job and merge together with standalone

* Merge stack tests into main test job

* Fixed annotation condition

* tweaks

* Moved docker-compose.yml to root folder

* Added compose file to expected

* fixed in v0.10.1

* move docker file

* Added -all profile in docker-compose

* Removed redis official image, reduce test matrix, moved docker-compose.yml

* Revert docker-compose moving

* Added test coverage to verify compatibility with 8.0

* Mark tests as relay-incompatible

* Codestyle fix

* Marked as relay-incompatible

---------

Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>
2025-02-24 09:22:45 -08:00

228 lines
6.2 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;
use Predis\Response\ServerException;
/**
* @group commands
* @group realm-server
*/
class CONFIG_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return 'Predis\Command\Redis\CONFIG';
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'CONFIG';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = ['GET', 'slowlog'];
$expected = ['GET', 'slowlog'];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponseOfConfigGet(): void
{
$raw = ['slowlog-log-slower-than', '10000', 'slowlog-max-len', '64', 'loglevel', 'verbose'];
$expected = [
'slowlog-log-slower-than' => '10000',
'slowlog-max-len' => '64',
'loglevel' => 'verbose',
];
$command = $this->getCommand();
$this->assertSame($expected, $command->parseResponse($raw));
}
/**
* @group disconnected
*/
public function testParseResponseOfConfigSet(): void
{
$this->assertSame('OK', $this->getCommand()->parseResponse('OK'));
}
/**
* @group disconnected
*/
public function testParseResponseOfConfigResetstat(): void
{
$this->assertSame('OK', $this->getCommand()->parseResponse('OK'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testReturnsListOfConfigurationValues(): void
{
$redis = $this->getClient();
$this->assertIsArray($configs = $redis->config('GET', '*'));
$this->assertGreaterThan(1, count($configs));
$this->assertArrayHasKey('loglevel', $configs);
$this->assertArrayHasKey('appendonly', $configs);
$this->assertArrayHasKey('dbfilename', $configs);
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testReturnsListOfOneConfigurationEntry(): void
{
$redis = $this->getClient();
$this->assertIsArray($configs = $redis->config('GET', 'dbfilename'));
$this->assertCount(1, $configs);
$this->assertArrayHasKey('dbfilename', $configs);
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testReturnsEmptyListOnUnknownConfigurationEntry(): void
{
$redis = $this->getClient();
$this->assertSame([], $redis->config('GET', 'foobar'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testReturnsTrueOnSuccessfulConfiguration(): void
{
$redis = $this->getClient();
$previous = $redis->config('GET', 'loglevel');
$this->assertEquals('OK', $redis->config('SET', 'loglevel', 'notice'));
$this->assertSame(['loglevel' => 'notice'], $redis->config('GET', 'loglevel'));
// We set the loglevel configuration to the previous value.
$redis->config('SET', 'loglevel', $previous['loglevel']);
}
/**
* @group connected
* @group relay-incompatible
* @requiresRedisVersion >= 7.9.0
*/
public function testOverrideDefaultDialectWithConfigCommand()
{
$redis = $this->getClient();
$default_dialect = (int) $redis
->config('GET', 'search-default-dialect')['search-default-dialect'];
$this->assertEquals('OK', $redis->config('SET', 'search-default-dialect', 2));
$this->assertEquals(2, (int) $redis->ftconfig->get('DEFAULT_DIALECT')[0][1]);
$this->assertEquals(2,
(int) $redis->config('GET', 'search-default-dialect')['search-default-dialect']);
$this->assertEquals(
'OK',
$redis->config('SET', 'search-default-dialect', $default_dialect)
);
}
/**
* @group connected
* @requiresRedisVersion >= 7.9.0
*/
public function testSetGetSearchConfiguration()
{
$redis = $this->getClient();
$this->assertGreaterThan(0,
(int) $redis->config('GET', 'search-timeout')['search-timeout']);
$this->assertGreaterThanOrEqual(0,
(int) $redis->config('GET', 'ts-retention-policy')['ts-retention-policy']);
$this->assertGreaterThanOrEqual(0,
(int) $redis->config('GET', 'bf-error-rate')['bf-error-rate']);
$this->assertGreaterThan(0,
(int) $redis->config('GET', 'cf-initial-size')['cf-initial-size']);
$this->expectException(ServerException::class);
$redis->config('SET', 'search-max-doctablesize', 10000);
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testThrowsExceptionWhenSettingUnknownConfiguration(): void
{
$this->expectException('Predis\Response\ServerException');
if ($this->isRedisServerVersion('<=', '6.0')) {
$this->expectExceptionMessage('ERR Unsupported CONFIG parameter: foo');
}
if ($this->isRedisServerVersion('>=', '7.0')) {
$this->expectExceptionMessage("ERR Unknown option or number of arguments for CONFIG SET - 'foo'");
}
$redis = $this->getClient();
$redis->config('SET', 'foo', 'bar');
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testReturnsTrueOnResetstat(): void
{
$redis = $this->getClient();
$this->assertEquals('OK', $redis->config('RESETSTAT'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.0.0
*/
public function testThrowsExceptionOnUnknownSubcommand(): void
{
$this->expectException('Predis\Response\ServerException');
$redis = $this->getClient();
$redis->config('FOO');
}
}