mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
9f9d195daf
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
531 lines
22 KiB
PHP
531 lines
22 KiB
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\Teams;
|
|
|
|
use Tests\E2E\Client;
|
|
use Utopia\Database\Document;
|
|
use Utopia\Database\Helpers\ID;
|
|
use Utopia\Database\Query;
|
|
use Utopia\Database\Validator\Datetime as DatetimeValidator;
|
|
|
|
trait TeamsBase
|
|
{
|
|
/**
|
|
* Helper method to create a team with specific roles.
|
|
* Returns team ID and name for use in other tests.
|
|
*
|
|
* @param string $name Team name
|
|
* @param array $roles Team roles
|
|
* @return array{teamUid: string, teamName: string}
|
|
*/
|
|
protected function createTeamHelper(string $name = 'Arsenal', array $roles = ['player']): array
|
|
{
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => $name,
|
|
'roles' => $roles,
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
return [
|
|
'teamUid' => $response['body']['$id'],
|
|
'teamName' => $response['body']['name'],
|
|
];
|
|
}
|
|
|
|
public function testCreateTeam(): void
|
|
{
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response1 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => 'Arsenal',
|
|
'roles' => ['player'],
|
|
]);
|
|
|
|
$this->assertEquals(201, $response1['headers']['status-code']);
|
|
$this->assertNotEmpty($response1['body']['$id']);
|
|
$this->assertEquals('Arsenal', $response1['body']['name']);
|
|
$this->assertGreaterThan(-1, $response1['body']['total']);
|
|
$this->assertIsInt($response1['body']['total']);
|
|
$this->assertArrayHasKey('prefs', $response1['body']);
|
|
|
|
$dateValidator = new DatetimeValidator();
|
|
$this->assertEquals(true, $dateValidator->isValid($response1['body']['$createdAt']));
|
|
|
|
$teamUid = $response1['body']['$id'];
|
|
|
|
/**
|
|
* Test: Attempt to downgrade the only OWNER in an organization (should fail)
|
|
*/
|
|
if ($this->getProject()['$id'] === 'console') {
|
|
// Step 1: Fetch all team memberships — only one exists at this point
|
|
// Add small delay for membership to be created under parallel load
|
|
usleep(100000); // 100ms
|
|
|
|
$maxRetries = 3;
|
|
$membershipID = null;
|
|
for ($i = 0; $i < $maxRetries; $i++) {
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(1)->toString(),
|
|
],
|
|
]);
|
|
|
|
if ($response['headers']['status-code'] === 200 && !empty($response['body']['memberships'])) {
|
|
$membershipID = $response['body']['memberships'][0]['$id'];
|
|
break;
|
|
}
|
|
|
|
if ($i < $maxRetries - 1) {
|
|
usleep(500000); // 500ms delay before retry
|
|
}
|
|
}
|
|
|
|
// Skip test if membership not found (parallel test interference)
|
|
if ($membershipID === null) {
|
|
$this->markTestSkipped('Could not retrieve membership for owner downgrade test');
|
|
}
|
|
|
|
// Step 2: Attempt to downgrade the member's role to 'developer'
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipID, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'roles' => ['developer']
|
|
]);
|
|
|
|
// Step 3: Assert failure — cannot remove the only OWNER from a team
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
$this->assertEquals('membership_downgrade_prohibited', $response['body']['type']);
|
|
$this->assertEquals('There must be at least one owner in the organization.', $response['body']['message']);
|
|
}
|
|
|
|
$teamId = ID::unique();
|
|
$response2 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => $teamId,
|
|
'name' => 'Manchester United'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response2['headers']['status-code']);
|
|
$this->assertNotEmpty($response2['body']['$id']);
|
|
$this->assertEquals($teamId, $response2['body']['$id']);
|
|
$this->assertEquals('Manchester United', $response2['body']['name']);
|
|
$this->assertGreaterThan(-1, $response2['body']['total']);
|
|
$this->assertIsInt($response2['body']['total']);
|
|
$this->assertArrayHasKey('prefs', $response2['body']);
|
|
$this->assertEquals(true, $dateValidator->isValid($response2['body']['$createdAt']));
|
|
|
|
$response3 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => 'Newcastle'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response3['headers']['status-code']);
|
|
$this->assertNotEmpty($response3['body']['$id']);
|
|
$this->assertEquals('Newcastle', $response3['body']['name']);
|
|
$this->assertGreaterThan(-1, $response3['body']['total']);
|
|
$this->assertIsInt($response3['body']['total']);
|
|
$this->assertEquals(true, $dateValidator->isValid($response3['body']['$createdAt']));
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => $teamId,
|
|
'name' => 'John'
|
|
]);
|
|
|
|
$this->assertEquals(409, $response['headers']['status-code']);
|
|
$this->assertEquals('team_already_exists', $response['body']['type']);
|
|
}
|
|
|
|
public function testGetTeam(): void
|
|
{
|
|
$data = $this->createTeamHelper();
|
|
$id = $data['teamUid'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $id, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals('Arsenal', $response['body']['name']);
|
|
$this->assertGreaterThan(-1, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertArrayHasKey('prefs', $response['body']);
|
|
$dateValidator = new DatetimeValidator();
|
|
$this->assertEquals(true, $dateValidator->isValid($response['body']['$createdAt']));
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
}
|
|
|
|
public function testListTeams(): void
|
|
{
|
|
// Create teams for this test
|
|
$team1 = $this->createTeamHelper('Arsenal');
|
|
$this->createTeamHelper('Manchester United');
|
|
$this->createTeamHelper('Newcastle');
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertGreaterThan(2, count($response['body']['teams']));
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(2)->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertEquals(2, count($response['body']['teams']));
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::offset(1)->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(1, count($response['body']['teams']));
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::greaterThanEqual('total', 0)->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(2, count($response['body']['teams']));
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::equal('name', ['Arsenal', 'Newcastle'])->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThanOrEqual(2, count($response['body']['teams']));
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'Manchester',
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertGreaterThanOrEqual(1, count($response['body']['teams']));
|
|
$this->assertEquals('Manchester United', $response['body']['teams'][0]['name']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'United',
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertGreaterThanOrEqual(1, count($response['body']['teams']));
|
|
$this->assertEquals('Manchester United', $response['body']['teams'][0]['name']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => $team1['teamUid'],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertCount(1, $response['body']['teams']);
|
|
$this->assertEquals('Arsenal', $response['body']['teams'][0]['name']);
|
|
|
|
$teams = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(2)->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $teams['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $teams['body']['total']);
|
|
$this->assertIsInt($teams['body']['total']);
|
|
$this->assertCount(2, $teams['body']['teams']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(1)->toString(),
|
|
Query::cursorAfter(new Document(['$id' => $teams['body']['teams'][0]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertCount(1, $response['body']['teams']);
|
|
$this->assertEquals($teams['body']['teams'][1]['$id'], $response['body']['teams'][0]['$id']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'queries' => [
|
|
Query::limit(1)->toString(),
|
|
Query::cursorBefore(new Document(['$id' => $teams['body']['teams'][1]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertGreaterThan(0, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertCount(1, $response['body']['teams']);
|
|
$this->assertEquals($teams['body']['teams'][0]['$id'], $response['body']['teams'][0]['$id']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams', 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']);
|
|
|
|
/**
|
|
* Test for SUCCESS with total=false
|
|
*/
|
|
$teamsWithIncludeTotalFalse = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'total' => false
|
|
]);
|
|
|
|
$this->assertEquals(200, $teamsWithIncludeTotalFalse['headers']['status-code']);
|
|
$this->assertIsArray($teamsWithIncludeTotalFalse['body']);
|
|
$this->assertIsArray($teamsWithIncludeTotalFalse['body']['teams']);
|
|
$this->assertIsInt($teamsWithIncludeTotalFalse['body']['total']);
|
|
$this->assertEquals(0, $teamsWithIncludeTotalFalse['body']['total']);
|
|
$this->assertGreaterThan(0, count($teamsWithIncludeTotalFalse['body']['teams']));
|
|
}
|
|
|
|
public function testUpdateTeam(): void
|
|
{
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => 'Demo'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals('Demo', $response['body']['name']);
|
|
$this->assertGreaterThan(-1, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertEquals(true, (new DatetimeValidator())->isValid($response['body']['$createdAt']));
|
|
|
|
$response = $this->client->call(Client::METHOD_PUT, '/teams/' . $response['body']['$id'], array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => 'Demo New'
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals('Demo New', $response['body']['name']);
|
|
$this->assertGreaterThan(-1, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertEquals(true, (new DatetimeValidator())->isValid($response['body']['$createdAt']));
|
|
$this->assertArrayHasKey('prefs', $response['body']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PUT, '/teams/' . $response['body']['$id'], array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
}
|
|
|
|
public function testDeleteTeam(): void
|
|
{
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'teamId' => ID::unique(),
|
|
'name' => 'Demo'
|
|
]);
|
|
|
|
$teamUid = $response['body']['$id'];
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals('Demo', $response['body']['name']);
|
|
$this->assertGreaterThan(-1, $response['body']['total']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertArrayHasKey('prefs', $response['body']);
|
|
$dateValidator = new DatetimeValidator();
|
|
$this->assertEquals(true, $dateValidator->isValid($response['body']['$createdAt']));
|
|
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/teams/' . $teamUid, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(204, $response['headers']['status-code']);
|
|
$this->assertEmpty($response['body']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
}
|
|
|
|
public function testUpdateAndGetUserPrefs(): void
|
|
{
|
|
$data = $this->createTeamHelper();
|
|
$id = $data['teamUid'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$team = $this->client->call(Client::METHOD_PUT, '/teams/' . $id . '/prefs', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'prefs' => [
|
|
'funcKey1' => 'funcValue1',
|
|
'funcKey2' => 'funcValue2',
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals($team['headers']['status-code'], 200);
|
|
$this->assertEquals($team['body']['funcKey1'], 'funcValue1');
|
|
$this->assertEquals($team['body']['funcKey2'], 'funcValue2');
|
|
|
|
$team = $this->client->call(Client::METHOD_GET, '/teams/' . $id . '/prefs', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals($team['headers']['status-code'], 200);
|
|
$this->assertEquals($team['body'], [
|
|
'funcKey1' => 'funcValue1',
|
|
'funcKey2' => 'funcValue2',
|
|
]);
|
|
|
|
$team = $this->client->call(Client::METHOD_GET, '/teams/' . $id, array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals($team['headers']['status-code'], 200);
|
|
$this->assertEquals($team['body']['prefs'], [
|
|
'funcKey1' => 'funcValue1',
|
|
'funcKey2' => 'funcValue2',
|
|
]);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$user = $this->client->call(Client::METHOD_PUT, '/teams/' . $id . '/prefs', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'prefs' => 'bad-string',
|
|
]);
|
|
|
|
$this->assertEquals($user['headers']['status-code'], 400);
|
|
}
|
|
}
|