1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00
appwrite/tests/e2e/Services/Database/DatabasePermissionsGuestTest.php

81 lines
2.3 KiB
PHP
Raw Normal View History

2021-10-09 01:49:45 +13:00
<?php
namespace Tests\E2E\Services\Database;
use Tests\E2E\Client;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\SideClient;
class DatabasePermissionsGuestTest extends Scope
{
use ProjectCustom;
use SideClient;
use DatabasePermissionsScope;
public function createCollection(): array
{
$movies = $this->client->call(Client::METHOD_POST, '/database/collections', $this->getServerHeader(), [
'collectionId' => 'unique()',
'name' => 'Movies',
'read' => ['role:all'],
'write' => ['role:all'],
'permission' => 'document',
]);
$collection = ['id' => $movies['body']['$id']];
$this->client->call(Client::METHOD_POST, '/database/collections/' . $collection['id'] . '/attributes/string', $this->getServerHeader(), [
'attributeId' => 'title',
'size' => 256,
'required' => true,
]);
sleep(2);
return $collection;
}
/**
* [string[] $read, string[] $write]
*/
public function readDocumentsProvider()
{
return [
[['role:all'], []],
[['role:member'], []],
[[] ,['role:all']],
[['role:all'], ['role:all']],
[['role:member'], ['role:member']],
[['role:all'], ['role:member']],
];
}
/**
* @dataProvider readDocumentsProvider
*/
public function testReadDocuments($read, $write)
2021-10-09 01:49:45 +13:00
{
$collection = $this->createCollection();
$response = $this->client->call(Client::METHOD_POST, '/database/collections/' . $collection['id'] . '/documents', $this->getServerHeader(), [
'documentId' => 'unique()',
'data' => [
'title' => 'Lorem',
],
'read' => $read,
'write' => $write,
]);
$this->assertEquals(201, $response['headers']['status-code']);
2021-10-09 01:49:45 +13:00
$documents = $this->client->call(Client::METHOD_GET, '/database/collections/' . $collection['id'] . '/documents', [
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
]);
foreach ($documents['body']['documents'] as $document) {
$this->assertContains('role:all', $document['$read']);
}
}
}