mirror of
https://github.com/predis/predis.git
synced 2026-08-30 04:02:22 +00:00
662fdb99b3
* Added support for redis gears trigger function commands * Exclude gears tests from relay connection tests * Codestyle fixes * Added missing test coverage * Updated method description * Use redis-stack:edge image istead of separate container * Updated RESP3 modules responses * Removed redundant constants * Added additional timeout to make sure that index was created * Marked test as relay-incompatible * Mark tests as relay-incompatible * Mark tests as relay-incompatible * Increase timeout after index creation * Added support for trigger functions command run against OSS cluster * Mark gears cluster tests with appropriate annotation * Marked with cluster annotation * Codestyle fixes * Removed refresh cluster on connection, moved to refresh manually in tests * Removed redundant test * Updated README, added comments with README references * Revert "Marked test as relay-incompatible" This reverts commitd888968b7b. * Revert changes * Revert "Mark tests as relay-incompatible" This reverts commit7d34370c6b. * Revert "Updated RESP3 modules responses" This reverts commit5cf122ad71. * Removed latest image * Updated RESP3 modules responses (#4) * Marked tests as relay-incompatible (#3) * Marked test as relay-incompatible * Mark tests as relay-incompatible * Mark tests as relay-incompatible * Changed tests group for RESP3 not supported tests * Fixed broken tests * Removed redundant test * Marked test as relay-incompatible * Codestyle fixes * Updated CHANGELOG.md * Updated CHANGELOG.md * Revert php-cs-fixer style changes --------- Co-authored-by: Chayim <chayim@users.noreply.github.com>
222 lines
6.3 KiB
PHP
222 lines
6.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 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\RawCommand;
|
|
use Predis\Connection\Cluster\ClusterInterface;
|
|
|
|
class TFUNCTION_Test extends PredisCommandTestCase
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected function getExpectedCommand(): string
|
|
{
|
|
return TFUNCTION::class;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected function getExpectedId(): string
|
|
{
|
|
return 'TFUNCTION';
|
|
}
|
|
|
|
/**
|
|
* @dataProvider loadArgumentsProvider
|
|
* @group disconnected
|
|
* @param array $actualArguments
|
|
* @param array $expectedResponse
|
|
* @return void
|
|
*/
|
|
public function testSetLoadArguments(array $actualArguments, array $expectedResponse): void
|
|
{
|
|
$command = $this->getCommand();
|
|
$command->setArguments($actualArguments);
|
|
|
|
$this->assertSame($expectedResponse, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider listArgumentsProvider
|
|
* @group disconnected
|
|
* @param array $actualArguments
|
|
* @param array $expectedResponse
|
|
* @return void
|
|
*/
|
|
public function testSetListArguments(array $actualArguments, array $expectedResponse): void
|
|
{
|
|
$command = $this->getCommand();
|
|
$command->setArguments($actualArguments);
|
|
|
|
$this->assertSame($expectedResponse, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testDeleteFilterArguments(): void
|
|
{
|
|
$arguments = ['DELETE', 'libname'];
|
|
$expected = ['DELETE', 'libname'];
|
|
|
|
$command = $this->getCommand();
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSameValues($expected, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @dataProvider responseProvider
|
|
* @param array $arguments
|
|
* @param array $actualData
|
|
* @param array $expectedData
|
|
* @return void
|
|
*/
|
|
public function testParseResponse(array $arguments, array $actualData, array $expectedData): void
|
|
{
|
|
$command = $this->getCommand();
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertEquals($expectedData, $command->parseResponse($actualData));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @group gears
|
|
* @requiresRedisGearsVersion >= 2.0.0
|
|
* @return void
|
|
*/
|
|
public function testLoadAndDeletesGivenLibraryFromRedisGears(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
$libCode = "#!js api_version=1.0 name=lib\n redis.registerFunction('foo', ()=>{return 'bar'})";
|
|
|
|
$this->assertEquals('OK', $redis->tfunction->load($libCode));
|
|
$this->assertEquals('OK', $redis->tfunction->delete('lib'));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @group cluster
|
|
* @group gears-cluster
|
|
* @requiresRedisGearsVersion >= 2.0.0
|
|
* @requiresRedisVersion >= 7.1.0
|
|
* @return void
|
|
*/
|
|
public function testLoadAndDeletesGivenLibraryFromRedisGearsClusterMode(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
/** @var ClusterInterface $connection */
|
|
$connection = $redis->getConnection();
|
|
|
|
// https://github.com/predis/predis#redis-gears-with-cluster
|
|
$connection->executeCommandOnEachNode(
|
|
new RawCommand('REDISGEARS_2.REFRESHCLUSTER')
|
|
);
|
|
|
|
$libCode = "#!js api_version=1.0 name=lib\n redis.registerFunction('foo', ()=>{return 'bar'})";
|
|
|
|
$this->assertEquals('OK', $redis->tfunction->load($libCode));
|
|
$this->assertEquals('OK', $redis->tfunction->delete('lib'));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @group gears
|
|
* @requiresRedisGearsVersion >= 2.0.0
|
|
* @return void
|
|
*/
|
|
public function testListsRedisGearsLibraries(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
$libCode = "#!js api_version=1.0 name=lib\n redis.registerFunction('foo', ()=>{return 'bar'})";
|
|
|
|
$this->assertEquals('OK', $redis->tfunction->load($libCode));
|
|
$this->assertEquals('lib', $redis->tfunction->list()[0]['name']);
|
|
$this->assertEquals('OK', $redis->tfunction->delete('lib'));
|
|
}
|
|
|
|
public function loadArgumentsProvider(): array
|
|
{
|
|
return [
|
|
'with default arguments' => [
|
|
['LOAD', 'libcode'],
|
|
['LOAD', 'libcode'],
|
|
],
|
|
'with REPLACE argument' => [
|
|
['LOAD', 'libcode', true],
|
|
['LOAD', 'REPLACE', 'libcode'],
|
|
],
|
|
'with CONFIG argument' => [
|
|
['LOAD', 'libcode', false, 'config'],
|
|
['LOAD', 'CONFIG', 'config', 'libcode'],
|
|
],
|
|
'with all arguments' => [
|
|
['LOAD', 'libcode', true, 'config'],
|
|
['LOAD', 'REPLACE', 'CONFIG', 'config', 'libcode'],
|
|
],
|
|
];
|
|
}
|
|
|
|
public function listArgumentsProvider(): array
|
|
{
|
|
return [
|
|
'with default arguments' => [
|
|
['LIST'],
|
|
['LIST'],
|
|
],
|
|
'with WITHCODE argument' => [
|
|
['LIST', true],
|
|
['LIST', 'WITHCODE'],
|
|
],
|
|
'with verbose level argument' => [
|
|
['LIST', false, 2],
|
|
['LIST', 'v', 'v'],
|
|
],
|
|
'with verbose level above threshold' => [
|
|
['LIST', false, 9999],
|
|
['LIST', 'v', 'v', 'v'],
|
|
],
|
|
'with LIBRARY argument' => [
|
|
['LIST', false, 0, 'libname'],
|
|
['LIST', 'LIBRARY', 'libname'],
|
|
],
|
|
'with all arguments' => [
|
|
['LIST', true, 2, 'libname'],
|
|
['LIST', 'WITHCODE', 'v', 'v', 'LIBRARY', 'libname'],
|
|
],
|
|
];
|
|
}
|
|
|
|
public function responseProvider(): array
|
|
{
|
|
return [
|
|
'with non-LIST subcommand' => [
|
|
['LOAD', 'lib'],
|
|
[['key', 'value']],
|
|
[['key', 'value']],
|
|
],
|
|
'with LIST subcommand' => [
|
|
['LIST'],
|
|
[['key', 'value', ['key1', 'value1']]],
|
|
[['key' => 'value', 2 => ['key1' => 'value1']]],
|
|
],
|
|
];
|
|
}
|
|
}
|