Added Redis stack support (JSON, Search, TimeSeries, Bloom) (#1253)

This commit is contained in:
Vladyslav Vildanov
2023-04-11 18:09:14 +03:00
committed by GitHub
parent f9b755ece9
commit 971e47672d
351 changed files with 24718 additions and 44 deletions
@@ -0,0 +1,28 @@
<?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\Argument\Search\SchemaFields;
use PHPUnit\Framework\TestCase;
class VectorFieldTest extends TestCase
{
/**
* @return void
*/
public function testReturnsCorrectFieldArgumentsArray(): void
{
$this->assertSame(
['field_name', 'AS', 'field', 'VECTOR', 'FLAT', 2, 'attribute_name', 'attribute_value'],
(new VectorField('field_name', 'FLAT', ['attribute_name', 'attribute_value'], 'field'))->toArray());
}
}