appwrite/tests/e2e/Services/GraphQL/DatabaseClientTest.php

306 lines
9.9 KiB
PHP
Raw Normal View History

2022-06-30 12:00:00 +00:00
<?php
namespace Tests\E2E\Services\GraphQL;
2022-07-07 00:53:58 +00:00
use Tests\E2E\Client;
2022-06-30 12:00:00 +00:00
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideClient;
2023-01-16 09:25:40 +00:00
use Utopia\Database\Helpers\ID;
use Utopia\Database\Helpers\Permission;
use Utopia\Database\Helpers\Role;
2022-06-30 12:00:00 +00:00
2022-09-22 08:29:42 +00:00
class DatabaseClientTest extends Scope
2022-06-30 12:00:00 +00:00
{
use ProjectCustom;
use SideClient;
2022-09-22 08:29:42 +00:00
use Base;
2022-07-07 00:53:58 +00:00
public function testCreateDatabase(): array
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$CREATE_DATABASE);
$gqlPayload = [
'query' => $query,
'variables' => [
2022-09-22 01:53:41 +00:00
'databaseId' => ID::unique(),
2022-07-07 00:53:58 +00:00
'name' => 'Actors',
]
];
$database = $this->client->call(Client::METHOD_POST, '/graphql', [
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
'x-appwrite-key' => $this->getProject()['apiKey'],
], $gqlPayload);
$this->assertIsArray($database['body']['data']);
$this->assertArrayNotHasKey('errors', $database['body']);
$database = $database['body']['data']['databasesCreate'];
$this->assertEquals('Actors', $database['name']);
return $database;
}
/**
* @depends testCreateDatabase
*/
public function testCreateCollection($database): array
{
$projectId = $this->getProject()['$id'];
2025-04-27 08:38:26 +00:00
$query = $this->getQuery(self::$CREATE_TABLE);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $database['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => 'actors',
2022-07-07 00:53:58 +00:00
'name' => 'Actors',
2022-09-21 08:17:17 +00:00
'documentSecurity' => false,
'permissions' => [
Permission::read(Role::any()),
Permission::create(Role::users()),
Permission::update(Role::users()),
Permission::delete(Role::users()),
],
2022-07-07 00:53:58 +00:00
]
];
2025-04-27 09:17:59 +00:00
$table = $this->client->call(Client::METHOD_POST, '/graphql', [
2022-07-07 00:53:58 +00:00
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
'x-appwrite-key' => $this->getProject()['apiKey'],
], $gqlPayload);
2025-04-27 09:17:59 +00:00
$this->assertIsArray($table['body']['data']);
$this->assertArrayNotHasKey('errors', $table['body']);
$table = $table['body']['data']['databasesCreateTable'];
$this->assertEquals('Actors', $table['name']);
2022-07-07 00:53:58 +00:00
return [
'database' => $database,
2025-04-27 09:17:59 +00:00
'table' => $table,
2022-07-07 00:53:58 +00:00
];
}
/**
* @depends testCreateCollection
*/
public function testCreateStringAttribute($data): array
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$CREATE_STRING_COLUMN);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
2022-07-07 00:53:58 +00:00
'key' => 'name',
'size' => 256,
'required' => true,
]
];
$attribute = $this->client->call(Client::METHOD_POST, '/graphql', [
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
'x-appwrite-key' => $this->getProject()['apiKey'],
], $gqlPayload);
$this->assertArrayNotHasKey('errors', $attribute['body']);
$this->assertIsArray($attribute['body']['data']);
2025-04-27 09:17:59 +00:00
$this->assertIsArray($attribute['body']['data']['databasesCreateStringColumn']);
2022-07-07 00:53:58 +00:00
return $data;
}
/**
* @depends testCreateCollection
*/
public function testCreateIntegerAttribute($data): array
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$CREATE_INTEGER_COLUMN);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
2022-07-07 00:53:58 +00:00
'key' => 'age',
'min' => 18,
'max' => 150,
'required' => true,
]
];
$attribute = $this->client->call(Client::METHOD_POST, '/graphql', [
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
'x-appwrite-key' => $this->getProject()['apiKey'],
], $gqlPayload);
$this->assertArrayNotHasKey('errors', $attribute['body']);
$this->assertIsArray($attribute['body']['data']);
2025-04-27 09:17:59 +00:00
$this->assertIsArray($attribute['body']['data']['databasesCreateIntegerColumn']);
2022-07-07 00:53:58 +00:00
return $data;
}
/**
* @depends testCreateStringAttribute
* @depends testCreateIntegerAttribute
*/
public function testCreateDocument($data): array
{
sleep(1);
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$CREATE_ROW);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
'rowId' => ID::unique(),
2022-07-07 00:53:58 +00:00
'data' => [
'name' => 'John Doe',
'age' => 35,
],
2022-09-21 08:17:17 +00:00
'permissions' => [
Permission::read(Role::any()),
Permission::update(Role::any()),
Permission::delete(Role::any()),
],
2022-07-07 00:53:58 +00:00
]
];
$document = $this->client->call(Client::METHOD_POST, '/graphql', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $gqlPayload);
$this->assertArrayNotHasKey('errors', $document['body']);
$this->assertIsArray($document['body']['data']);
2025-04-27 09:17:59 +00:00
$document = $document['body']['data']['databasesCreateRow'];
2022-07-07 00:53:58 +00:00
$this->assertIsArray($document);
return [
'database' => $data['database'],
2025-04-27 09:17:59 +00:00
'table' => $data['table'],
'row' => $document,
2022-07-07 00:53:58 +00:00
];
}
/**
* @depends testCreateCollection
* @throws \Exception
*/
public function testGetDocuments($data): void
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$GET_ROWS);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
2022-07-07 00:53:58 +00:00
]
];
$documents = $this->client->call(Client::METHOD_POST, '/graphql', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $gqlPayload);
$this->assertArrayNotHasKey('errors', $documents['body']);
$this->assertIsArray($documents['body']['data']);
2025-04-27 09:17:59 +00:00
$this->assertIsArray($documents['body']['data']['databasesListRows']);
2022-07-07 00:53:58 +00:00
}
/**
* @depends testCreateDocument
* @throws \Exception
*/
public function testGetDocument($data): void
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$GET_ROW);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
'rowId' => $data['row']['_id'],
2022-07-07 00:53:58 +00:00
]
];
$document = $this->client->call(Client::METHOD_POST, '/graphql', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $gqlPayload);
$this->assertArrayNotHasKey('errors', $document['body']);
$this->assertIsArray($document['body']['data']);
2025-04-27 09:17:59 +00:00
$this->assertIsArray($document['body']['data']['databasesGetRow']);
2022-07-07 00:53:58 +00:00
}
/**
* @depends testCreateDocument
* @throws \Exception
*/
public function testUpdateDocument($data): void
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$UPDATE_ROW);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
'rowId' => $data['row']['_id'],
2022-07-07 00:53:58 +00:00
'data' => [
'name' => 'New Document Name',
],
]
];
$document = $this->client->call(Client::METHOD_POST, '/graphql', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $gqlPayload);
$this->assertArrayNotHasKey('errors', $document['body']);
$this->assertIsArray($document['body']['data']);
2025-04-27 09:17:59 +00:00
$document = $document['body']['data']['databasesUpdateRow'];
2022-07-07 00:53:58 +00:00
$this->assertIsArray($document);
2022-12-08 03:08:57 +00:00
2022-07-07 00:53:58 +00:00
$this->assertStringContainsString('New Document Name', $document['data']);
}
/**
* @depends testCreateDocument
* @throws \Exception
*/
public function testDeleteDocument($data): void
{
$projectId = $this->getProject()['$id'];
2025-04-27 09:17:59 +00:00
$query = $this->getQuery(self::$DELETE_ROW);
2022-07-07 00:53:58 +00:00
$gqlPayload = [
'query' => $query,
'variables' => [
2022-12-08 03:08:57 +00:00
'databaseId' => $data['database']['_id'],
2025-04-27 09:17:59 +00:00
'tableId' => $data['table']['_id'],
'rowId' => $data['row']['_id'],
2022-07-07 00:53:58 +00:00
]
];
$document = $this->client->call(Client::METHOD_POST, '/graphql', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $gqlPayload);
2022-07-18 09:38:13 +00:00
$this->assertIsNotArray($document['body']);
2022-07-13 07:45:54 +00:00
$this->assertEquals(204, $document['headers']['status-code']);
2022-07-07 00:53:58 +00:00
}
2022-07-06 03:51:37 +00:00
}