1
0
Fork 0
mirror of synced 2024-08-02 20:12:01 +12:00
appwrite/tests/e2e/Services/GraphQL/TeamsClientTest.php
2023-01-16 11:25:40 +02:00

191 lines
6.1 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\SideClient;
use Utopia\Database\Helpers\ID;
class TeamsClientTest extends Scope
{
use ProjectCustom;
use Base;
use SideClient;
public function testCreateTeam(): array
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$CREATE_TEAM);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => ID::unique(),
'name' => 'Team Name',
'roles' => ['admin', 'developer', 'guest'],
],
];
$team = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsArray($team['body']['data']);
$this->assertArrayNotHasKey('errors', $team['body']);
$team = $team['body']['data']['teamsCreate'];
$this->assertEquals('Team Name', $team['name']);
return $team;
}
/**
* @depends testCreateTeam
*/
public function testCreateTeamMembership($team): array
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$CREATE_TEAM_MEMBERSHIP);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => $team['_id'],
'email' => 'user@appwrite.io',
'roles' => ['developer'],
'url' => 'http://localhost/membership',
],
];
$membership = $this->client->call(Client::METHOD_POST, '/graphql', [
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
'x-appwrite-key' => $this->getProject()['apiKey'],
], $graphQLPayload);
$this->assertIsArray($membership['body']['data']);
$this->assertArrayNotHasKey('errors', $membership['body']);
$membership = $membership['body']['data']['teamsCreateMembership'];
$this->assertEquals($team['_id'], $membership['teamId']);
$this->assertEquals(['developer'], $membership['roles']);
return $membership;
}
public function testGetTeams()
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$GET_TEAMS);
$graphQLPayload = [
'query' => $query,
];
$teams = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsArray($teams['body']['data']);
$this->assertArrayNotHasKey('errors', $teams['body']);
}
/**
* @depends testCreateTeam
*/
public function testGetTeam($team)
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$GET_TEAM);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => $team['_id'],
],
];
$team = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsArray($team['body']['data']);
$this->assertArrayNotHasKey('errors', $team['body']);
$team = $team['body']['data']['teamsGet'];
$this->assertIsArray($team);
}
/**
* @depends testCreateTeam
*/
public function testGetTeamMemberships($team)
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$GET_TEAM_MEMBERSHIPS);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => $team['_id'],
],
];
$memberships = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsArray($memberships['body']['data']);
$this->assertArrayNotHasKey('errors', $memberships['body']);
$this->assertIsArray($memberships['body']['data']['teamsListMemberships']);
}
/**
* @depends testCreateTeam
* @depends testCreateTeamMembership
*/
public function testGetTeamMembership($team, $membership)
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$GET_TEAM_MEMBERSHIP);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => $team['_id'],
'membershipId' => $membership['_id'],
],
];
$membership = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsArray($membership['body']['data']['teamsGetMembership']);
$this->assertArrayNotHasKey('errors', $membership['body']);
}
/**
* @depends testCreateTeam
* @depends testCreateTeamMembership
*/
public function testDeleteTeamMembership($team, $membership)
{
$projectId = $this->getProject()['$id'];
$query = $this->getQuery(self::$DELETE_TEAM_MEMBERSHIP);
$graphQLPayload = [
'query' => $query,
'variables' => [
'teamId' => $team['_id'],
'membershipId' => $membership['_id'],
],
];
$team = $this->client->call(Client::METHOD_POST, '/graphql', \array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $projectId,
], $this->getHeaders()), $graphQLPayload);
$this->assertIsNotArray($team['body']);
$this->assertEquals(204, $team['headers']['status-code']);
}
}