-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0232926
commit 4945d8b
Showing
3 changed files
with
80 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Concerns; | ||
|
||
use Upstash\Vector\Contracts\IndexInterface; | ||
use Upstash\Vector\Contracts\IndexNamespaceInterface; | ||
use Upstash\Vector\Index; | ||
|
||
trait UsesDenseIndexWithEmbedding | ||
{ | ||
protected IndexInterface $index; | ||
|
||
protected IndexNamespaceInterface $namespace; | ||
|
||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->index = new Index( | ||
url: getenv('DENSE_EMBEDDING_UPSTASH_VECTOR_REST_URL'), | ||
token: getenv('DENSE_EMBEDDING_UPSTASH_VECTOR_REST_TOKEN'), | ||
); | ||
|
||
$this->namespace = $this->index->namespace(bin2hex(random_bytes(32))); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
$this->namespace->delete(); | ||
|
||
parent::tearDown(); | ||
} | ||
} |
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,43 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Dense\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\DataUpsert; | ||
use Upstash\Vector\Tests\Concerns\UsesDenseIndexWithEmbedding; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
|
||
class UpsertDataTest extends TestCase | ||
{ | ||
use UsesDenseIndexWithEmbedding; | ||
use WaitsForIndex; | ||
|
||
public function test_upsert_data(): void | ||
{ | ||
$this->namespace->upsertData(new DataUpsert( | ||
id: '1', | ||
data: 'The capital of Japan is Tokyo', | ||
)); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(1, $info->vectorCount); | ||
} | ||
|
||
public function test_upsert_many_data(): void | ||
{ | ||
$this->namespace->upsertDataMany([ | ||
new DataUpsert(id: '1', data: 'The capital of Japan is Tokyo'), | ||
new DataUpsert(id: '2', data: 'The capital of France is Paris'), | ||
new DataUpsert(id: '3', data: 'The capital of Germany is Berlin'), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(3, $info->vectorCount); | ||
} | ||
} |