mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
333 lines
13 KiB
PHP
333 lines
13 KiB
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\Databases\DocumentsDB;
|
|
|
|
use Tests\E2E\Client;
|
|
use Tests\E2E\Scopes\ProjectCustom;
|
|
use Tests\E2E\Scopes\Scope;
|
|
use Tests\E2E\Scopes\SideServer;
|
|
use Utopia\Database\Database;
|
|
use Utopia\Database\Document;
|
|
use Utopia\Database\Helpers\ID;
|
|
use Utopia\Database\Query;
|
|
|
|
class DatabasesCustomServerTest extends Scope
|
|
{
|
|
use DatabasesBase;
|
|
use ProjectCustom;
|
|
use SideServer;
|
|
|
|
public function testListDatabases()
|
|
{
|
|
$test1 = $this->client->call(Client::METHOD_POST, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
]), [
|
|
'databaseId' => ID::custom('first'),
|
|
'name' => 'Test 1',
|
|
]);
|
|
|
|
$this->assertEquals(201, $test1['headers']['status-code']);
|
|
$this->assertEquals('Test 1', $test1['body']['name']);
|
|
|
|
$test2 = $this->client->call(Client::METHOD_POST, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
]), [
|
|
'databaseId' => ID::custom('second'),
|
|
'name' => 'Test 2',
|
|
]);
|
|
$this->assertEquals(201, $test2['headers']['status-code']);
|
|
$this->assertEquals('Test 2', $test2['body']['name']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(2, $databases['body']['total']);
|
|
$this->assertEquals($test1['body']['$id'], $databases['body']['databases'][0]['$id']);
|
|
$this->assertEquals($test2['body']['$id'], $databases['body']['databases'][1]['$id']);
|
|
|
|
$base = array_reverse($databases['body']['databases']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(1)->toString(),
|
|
],
|
|
]);
|
|
$this->assertEquals(200, $databases['headers']['status-code']);
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::offset(1)->toString(),
|
|
],
|
|
]);
|
|
$this->assertEquals(200, $databases['headers']['status-code']);
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::equal('name', ['Test 1', 'Test 2'])->toString(),
|
|
],
|
|
]);
|
|
$this->assertEquals(200, $databases['headers']['status-code']);
|
|
$this->assertCount(2, $databases['body']['databases']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::equal('name', ['Test 2'])->toString(),
|
|
],
|
|
]);
|
|
$this->assertEquals(200, $databases['headers']['status-code']);
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::equal('$id', ['first'])->toString(),
|
|
],
|
|
]);
|
|
$this->assertEquals(200, $databases['headers']['status-code']);
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
|
|
/**
|
|
* Test for Order
|
|
*/
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::orderDesc()->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(2, $databases['body']['total']);
|
|
$this->assertEquals($base[0]['$id'], $databases['body']['databases'][0]['$id']);
|
|
$this->assertEquals($base[1]['$id'], $databases['body']['databases'][1]['$id']);
|
|
|
|
/**
|
|
* Test for After
|
|
*/
|
|
$base = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::cursorAfter(new Document(['$id' => $base['body']['databases'][0]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
$this->assertEquals($base['body']['databases'][1]['$id'], $databases['body']['databases'][0]['$id']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::cursorAfter(new Document(['$id' => $base['body']['databases'][1]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertCount(0, $databases['body']['databases']);
|
|
$this->assertEmpty($databases['body']['databases']);
|
|
|
|
/**
|
|
* Test for Before
|
|
*/
|
|
$base = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::cursorBefore(new Document(['$id' => $base['body']['databases'][1]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertCount(1, $databases['body']['databases']);
|
|
$this->assertEquals($base['body']['databases'][0]['$id'], $databases['body']['databases'][0]['$id']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::cursorBefore(new Document(['$id' => $base['body']['databases'][0]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertCount(0, $databases['body']['databases']);
|
|
$this->assertEmpty($databases['body']['databases']);
|
|
|
|
/**
|
|
* Test for Search
|
|
*/
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'first'
|
|
]);
|
|
|
|
$this->assertEquals(1, $databases['body']['total']);
|
|
$this->assertEquals('first', $databases['body']['databases'][0]['$id']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'Test'
|
|
]);
|
|
|
|
$this->assertEquals(2, $databases['body']['total']);
|
|
$this->assertEquals('Test 1', $databases['body']['databases'][0]['name']);
|
|
$this->assertEquals('Test 2', $databases['body']['databases'][1]['name']);
|
|
|
|
$databases = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'Nonexistent'
|
|
]);
|
|
|
|
$this->assertEquals(0, $databases['body']['total']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::cursorAfter(new Document(['$id' => 'unknown']))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
|
|
// This collection already exists
|
|
$response = $this->client->call(Client::METHOD_POST, '/documentsdb', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
]), [
|
|
'name' => 'Test 1',
|
|
'databaseId' => ID::custom('first'),
|
|
]);
|
|
|
|
$this->assertEquals(409, $response['headers']['status-code']);
|
|
return ['databaseId' => $test1['body']['$id']];
|
|
}
|
|
|
|
/**
|
|
* @depends testListDatabases
|
|
*/
|
|
public function testGetDatabase(array $data): array
|
|
{
|
|
$databaseId = $data['databaseId'];
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$database = $this->client->call(Client::METHOD_GET, '/documentsdb/' . $databaseId, [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
]);
|
|
|
|
$this->assertEquals(200, $database['headers']['status-code']);
|
|
$this->assertEquals($databaseId, $database['body']['$id']);
|
|
$this->assertEquals('Test 1', $database['body']['name']);
|
|
$this->assertEquals(true, $database['body']['enabled']);
|
|
return ['databaseId' => $database['body']['$id']];
|
|
}
|
|
|
|
/**
|
|
* @depends testListDatabases
|
|
*/
|
|
public function testUpdateDatabase(array $data)
|
|
{
|
|
$databaseId = $data['databaseId'];
|
|
|
|
$database = $this->client->call(Client::METHOD_PUT, '/documentsdb/' . $databaseId, [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
], [
|
|
'name' => 'Test 1 Updated',
|
|
'enabled' => false,
|
|
]);
|
|
|
|
$this->assertEquals(200, $database['headers']['status-code']);
|
|
$this->assertEquals('Test 1 Updated', $database['body']['name']);
|
|
$this->assertFalse($database['body']['enabled']);
|
|
|
|
// Now update the database without the passing the enabled parameter
|
|
$database = $this->client->call(Client::METHOD_PUT, '/documentsdb/' . $databaseId, [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
], [
|
|
'name' => 'Test 1'
|
|
]);
|
|
|
|
$this->assertEquals(200, $database['headers']['status-code']);
|
|
$this->assertEquals('Test 1', $database['body']['name']);
|
|
$this->assertTrue($database['body']['enabled']);
|
|
}
|
|
|
|
/**
|
|
* @depends testListDatabases
|
|
*/
|
|
public function testDeleteDatabase($data)
|
|
{
|
|
$databaseId = $data['databaseId'];
|
|
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/documentsdb/' . $databaseId, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'x-appwrite-key' => $this->getProject()['apiKey']
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(204, $response['headers']['status-code']);
|
|
$this->assertEquals("", $response['body']);
|
|
|
|
// Try to get the collection and check if it has been deleted
|
|
$response = $this->client->call(Client::METHOD_GET, '/documentsdb/' . $databaseId, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id']
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
}
|
|
}
|