mirror of
https://github.com/predis/predis.git
synced 2026-08-26 15:29:55 +00:00
f4f7b3c013
* Added support for new arguments for BITPOS, BITCOUNT commands (#1045) * Added support for new arguments for EXPIRE, EXPIREAT commands (#1046) * Extended core support by implementing SORT_RO command (#1044) * Added support for SORT_RO command * Codestyle fixes * Added command description --------- Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> * fix deprecated call * Added support for container commands (#1049) * Added support for container commands FUNCTION LOAD, FUNCTION DELETE and FCALL * Changed ContainerInterface and AbstractContainer * Re-implement logic of abstract methods --------- Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> * Added stream commands to KeyPrefixProcessor (#1051) Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> * Fix return type of ReplicationInterface::getSlaves (#1111) * Codestyle fixes * Changed return annotation * Marked redis stack tests with appropriate annotation --------- Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> Co-authored-by: Till Krüss <till@kruss.io> Co-authored-by: Stephan <glaubinix@users.noreply.github.com>
167 lines
6.8 KiB
PHP
167 lines
6.8 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\Search;
|
|
|
|
use Predis\Command\Argument\Search\CreateArguments;
|
|
use Predis\Command\Argument\Search\Schema;
|
|
use Predis\Command\Redis\PredisCommandTestCase;
|
|
|
|
/**
|
|
* @group commands
|
|
* @group realm-stack
|
|
*/
|
|
class FTCREATE_Test extends PredisCommandTestCase
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected function getExpectedCommand(): string
|
|
{
|
|
return FTCREATE::class;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected function getExpectedId(): string
|
|
{
|
|
return 'FTCREATE';
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @dataProvider argumentsProvider
|
|
*/
|
|
public function testFilterArguments(array $actualArguments, array $expectedArguments): void
|
|
{
|
|
$command = $this->getCommand();
|
|
$command->setArguments($actualArguments);
|
|
|
|
$this->assertSameValues($expectedArguments, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testParseResponse(): void
|
|
{
|
|
$this->assertSame(1, $this->getCommand()->parseResponse(1));
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @return void
|
|
* @requiresRediSearchVersion >= 1.0.0
|
|
*/
|
|
public function testCreatesSearchIndexWithGivenArgumentsAndSchema(): void
|
|
{
|
|
$redis = $this->getClient();
|
|
|
|
$arguments = new CreateArguments();
|
|
$arguments->prefix(['prefix:', 'prefix1:']);
|
|
$arguments->filter('@age>16');
|
|
$arguments->stopWords(['hello', 'world']);
|
|
|
|
$schema = new Schema();
|
|
$schema->addTextField('first', 'fst', true, true);
|
|
$schema->addTextField('last');
|
|
$schema->addNumericField('age');
|
|
|
|
$actualResponse = $redis->ftcreate('index', $schema, $arguments);
|
|
|
|
$this->assertEquals('OK', $actualResponse);
|
|
}
|
|
|
|
public function argumentsProvider(): array
|
|
{
|
|
return [
|
|
'without arguments' => [
|
|
['index', (new Schema())->addTextField('field_name')],
|
|
['index', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with ON modifier - HASH' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->on('hash')],
|
|
['index', 'ON', 'HASH', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with ON modifier - JSON' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->on('json')],
|
|
['index', 'ON', 'JSON', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with prefixes' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->prefix(['prefix1:', 'prefix2:'])],
|
|
['index', 'PREFIX', 2, 'prefix1:', 'prefix2:', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with FILTER' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->filter('@age>16')],
|
|
['index', 'FILTER', '@age>16', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with LANGUAGE' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->language('english')],
|
|
['index', 'LANGUAGE', 'english', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with LANGUAGE_FIELD' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->languageField('language_attribute')],
|
|
['index', 'LANGUAGE_FIELD', 'language_attribute', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with SCORE' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->score(1.0)],
|
|
['index', 'SCORE', 1.0, 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with SCORE_FIELD' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->scoreField('score_attribute')],
|
|
['index', 'SCORE_FIELD', 'score_attribute', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with PAYLOAD_FIELD' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->payloadField('payload_attribute')],
|
|
['index', 'PAYLOAD_FIELD', 'payload_attribute', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with MAXTEXTFIELDS' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->maxTextFields()],
|
|
['index', 'MAXTEXTFIELDS', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with NOOFFSETS' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->noOffsets()],
|
|
['index', 'NOOFFSETS', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with NOHL' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->noHl()],
|
|
['index', 'NOHL', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with NOFIELDS' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->noFields()],
|
|
['index', 'NOFIELDS', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with NOFREQS' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->noFreqs()],
|
|
['index', 'NOFREQS', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with STOPWORDS' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->stopWords(['word1', 'word2'])],
|
|
['index', 'STOPWORDS', 2, 'word1', 'word2', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with SKIPINITIALSCAN' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->skipInitialScan()],
|
|
['index', 'SKIPINITIALSCAN', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with chain of arguments' => [
|
|
['index', (new Schema())->addTextField('field_name'), (new CreateArguments())->on('hash')->prefix(['prefix1:', 'prefix2:'])->filter('@age>16')],
|
|
['index', 'ON', 'HASH', 'PREFIX', 2, 'prefix1:', 'prefix2:', 'FILTER', '@age>16', 'SCHEMA', 'field_name', 'TEXT'],
|
|
],
|
|
'with multiple fields schema' => [
|
|
['index', (new Schema())->addTextField('field_name')->addNumericField('numeric_field')->addTagField('tag_field', 'tf'), (new CreateArguments())->on('hash')],
|
|
['index', 'ON', 'HASH', 'SCHEMA', 'field_name', 'TEXT', 'numeric_field', 'NUMERIC', 'tag_field', 'AS', 'tf', 'TAG'],
|
|
],
|
|
];
|
|
}
|
|
}
|