-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from julien-jourde/fix-payload-vector-params
Fix `with_payload` and `with_vector` params.
- Loading branch information
Showing
4 changed files
with
241 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
tests/Integration/Endpoints/Collections/SearchPayloadTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
/** | ||
* @since Mar 2023 | ||
* @author Haydar KULEKCI <haydarkulekci@gmail.com> | ||
*/ | ||
|
||
namespace Qdrant\Tests\Integration\Endpoints\Collections; | ||
|
||
use Qdrant\Endpoints\Collections; | ||
use Qdrant\Exception\InvalidArgumentException; | ||
use Qdrant\Models\PointsStruct; | ||
use Qdrant\Models\Request\CreateIndex; | ||
use Qdrant\Models\Request\ScrollRequest; | ||
use Qdrant\Models\VectorStruct; | ||
use Qdrant\Tests\Integration\AbstractIntegration; | ||
|
||
class SearchPayloadTest extends AbstractIntegration | ||
{ | ||
/** | ||
* @throws InvalidArgumentException | ||
*/ | ||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->createCollections('sample-collection'); | ||
|
||
$response = $this->getCollections('sample-collection')->index()->create( | ||
(new CreateIndex('payload', [ | ||
'type' => 'integer', | ||
'range' => true, | ||
'lookup' => false, | ||
'is_principal' => true | ||
])), | ||
[ | ||
'wait' => 'true' | ||
] | ||
); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertEquals('completed', $response['result']['status']); | ||
|
||
$response = $this->getCollections('sample-collection')->points() | ||
->upsert( | ||
PointsStruct::createFromArray(self::basicPointDataProvider()[0][0]), | ||
[ | ||
'wait' => 'true' | ||
] | ||
); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertEquals('completed', $response['result']['status']); | ||
} | ||
|
||
public static function basicPointDataProvider(): array | ||
{ | ||
return [ | ||
[ | ||
[ | ||
[ | ||
'id' => 1, | ||
'vector' => new VectorStruct([1, 3, 400], 'image'), | ||
'payload' => [ | ||
'sort' => 1, | ||
'color' => 'red' | ||
] | ||
], | ||
[ | ||
'id' => 2, | ||
'vector' => new VectorStruct([1, 3, 300], 'image'), | ||
'payload' => [ | ||
'sort' => 2, | ||
'color' => 'red' | ||
] | ||
], | ||
[ | ||
'id' => 3, | ||
'vector' => new VectorStruct([1, 3, 300], 'image'), | ||
'payload' => [ | ||
'sort' => 3, | ||
'color' => 'green' | ||
] | ||
], | ||
] | ||
] | ||
]; | ||
} | ||
|
||
public function testScrollWithPayload(): void | ||
{ | ||
$scroll = (new ScrollRequest())->setWithPayload(true); | ||
$response = $this->getCollections('sample-collection')->points()->scroll($scroll); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertCount(2, $response['result']); | ||
$this->assertCount(3, $response['result']['points']); | ||
$this->assertArrayHasKey('payload', $response['result']['points'][0]); | ||
} | ||
|
||
public function testScrollWithoutPayload(): void | ||
{ | ||
$scroll = (new ScrollRequest())->setWithPayload(false); | ||
$response = $this->getCollections('sample-collection')->points()->scroll($scroll); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertCount(2, $response['result']); | ||
$this->assertCount(3, $response['result']['points']); | ||
$this->assertArrayNotHasKey('payload', $response['result']['points'][0]); | ||
} | ||
|
||
protected function tearDown(): void | ||
{ | ||
parent::tearDown(); | ||
$collections = new Collections($this->client); | ||
|
||
$collections->setCollectionName('sample-collection')->delete(); | ||
} | ||
} |
118 changes: 118 additions & 0 deletions
118
tests/Integration/Endpoints/Collections/SearchVectorTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
/** | ||
* @since Mar 2023 | ||
* @author Haydar KULEKCI <haydarkulekci@gmail.com> | ||
*/ | ||
|
||
namespace Qdrant\Tests\Integration\Endpoints\Collections; | ||
|
||
use Qdrant\Endpoints\Collections; | ||
use Qdrant\Exception\InvalidArgumentException; | ||
use Qdrant\Models\PointsStruct; | ||
use Qdrant\Models\Request\CreateIndex; | ||
use Qdrant\Models\Request\ScrollRequest; | ||
use Qdrant\Models\VectorStruct; | ||
use Qdrant\Tests\Integration\AbstractIntegration; | ||
|
||
class SearchVectorTest extends AbstractIntegration | ||
{ | ||
/** | ||
* @throws InvalidArgumentException | ||
*/ | ||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->createCollections('sample-collection'); | ||
|
||
$response = $this->getCollections('sample-collection')->index()->create( | ||
(new CreateIndex('payload', [ | ||
'type' => 'integer', | ||
'range' => true, | ||
'lookup' => false, | ||
'is_principal' => true | ||
])), | ||
[ | ||
'wait' => 'true' | ||
] | ||
); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertEquals('completed', $response['result']['status']); | ||
|
||
$response = $this->getCollections('sample-collection')->points() | ||
->upsert( | ||
PointsStruct::createFromArray(self::basicPointDataProvider()[0][0]), | ||
[ | ||
'wait' => 'true' | ||
] | ||
); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertEquals('completed', $response['result']['status']); | ||
} | ||
|
||
public static function basicPointDataProvider(): array | ||
{ | ||
return [ | ||
[ | ||
[ | ||
[ | ||
'id' => 1, | ||
'vector' => new VectorStruct([1, 3, 400], 'image'), | ||
'payload' => [ | ||
'sort' => 1, | ||
'color' => 'red' | ||
] | ||
], | ||
[ | ||
'id' => 2, | ||
'vector' => new VectorStruct([1, 3, 300], 'image'), | ||
'payload' => [ | ||
'sort' => 2, | ||
'color' => 'red' | ||
] | ||
], | ||
[ | ||
'id' => 3, | ||
'vector' => new VectorStruct([1, 3, 300], 'image'), | ||
'payload' => [ | ||
'sort' => 3, | ||
'color' => 'green' | ||
] | ||
], | ||
] | ||
] | ||
]; | ||
} | ||
|
||
public function testScrollWithVector(): void | ||
{ | ||
$scroll = (new ScrollRequest())->setWithVector(true); | ||
$response = $this->getCollections('sample-collection')->points()->scroll($scroll); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertCount(2, $response['result']); | ||
$this->assertCount(3, $response['result']['points']); | ||
$this->assertArrayHasKey('vector', $response['result']['points'][0]); | ||
} | ||
|
||
public function testScrollWithoutVector(): void | ||
{ | ||
$scroll = (new ScrollRequest())->setWithPayload(false); | ||
$response = $this->getCollections('sample-collection')->points()->scroll($scroll); | ||
|
||
$this->assertEquals('ok', $response['status']); | ||
$this->assertCount(2, $response['result']); | ||
$this->assertCount(3, $response['result']['points']); | ||
$this->assertArrayNotHasKey('vector', $response['result']['points'][0]); | ||
} | ||
|
||
protected function tearDown(): void | ||
{ | ||
parent::tearDown(); | ||
$collections = new Collections($this->client); | ||
|
||
$collections->setCollectionName('sample-collection')->delete(); | ||
} | ||
} |