1
0
Fork 0
mirror of synced 2024-08-20 20:51:40 +12:00
appwrite/tests/e2e/Services/GraphQL/GraphQLAbuseTest.php
2022-07-19 00:44:02 +12:00

68 lines
2.3 KiB
PHP

<?php
namespace Tests\E2E\Services\GraphQL;
use Tests\E2E\Client;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
use Utopia\App;
class GraphQLAbuseTest extends Scope
{
use ProjectCustom;
use SideServer;
use GraphQLBase;
public function testComplexQueryBlocked()
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$CREATE_DATABASE_STACK);
$graphQLPayload = [
'query' => $query,
'variables' => [
'userId' => 'user',
'email' => 'user@appwrite.io',
'password' => 'password',
'databaseId' => 'database',
'databaseName' => 'database',
'collectionId' => 'collection',
'collectionName' => 'collection',
'collectionPermission' => 'collection',
'collectionRead' => ['role:member'],
'collectionWrite' => ['role:member'],
'documentId' => 'document',
'documentData' => ['name' => 'foobar'],
'documentRead' => ['role:member'],
'documentWrite' => ['role:member'],
],
];
$response = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$max = App::getEnv('_APP_GRAPHQL_MAX_QUERY_COMPLEXITY', 50);
$this->assertEquals('Max query complexity should be ' . $max . ' but got 51.', $response['body']['errors'][0]['message']);
}
public function testTooManyQueriesBlocked()
{
$projectId = $this->getProject()['$id'];
$maxQueries = App::getEnv('_APP_GRAPHQL_MAX_QUERIES', 50);
$query = [];
for ($i = 0; $i <= $maxQueries + 1; $i++) {
$query[] = ['query' => $this->getQuery(self::$LIST_COUNTRIES)];
}
$response = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $query);
$this->assertEquals('Too many queries.', $response['body']['message']);
}
}