mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
883 lines
37 KiB
PHP
883 lines
37 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 TeamsBaseClient
|
|
{
|
|
/**
|
|
* Helper method to create a team membership and accept the invitation.
|
|
* Returns all data needed for membership-related tests.
|
|
*
|
|
* @param string $teamUid Team ID
|
|
* @param string $teamName Team name
|
|
* @return array{teamUid: string, teamName: string, secret: string, membershipUid: string, userUid: string, email: string, name: string, session: string}
|
|
*/
|
|
protected function createAndAcceptMembershipHelper(string $teamUid, string $teamName): array
|
|
{
|
|
$email = uniqid() . 'friend@localhost.test';
|
|
$name = 'Friend User';
|
|
|
|
// Create membership invitation
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $email,
|
|
'name' => $name,
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
// Get invitation details from email
|
|
$lastEmail = $this->getLastEmailByAddress($email);
|
|
$this->assertNotEmpty($lastEmail, 'Email not found for address: ' . $email);
|
|
|
|
$tokens = $this->extractQueryParamsFromEmailLink($lastEmail['html']);
|
|
$membershipUid = $tokens['membershipId'];
|
|
$userUid = $tokens['userId'];
|
|
$secret = $tokens['secret'];
|
|
|
|
// Accept the invitation
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$session = $response['cookies']['a_session_' . $this->getProject()['$id']];
|
|
|
|
return [
|
|
'teamUid' => $teamUid,
|
|
'teamName' => $teamName,
|
|
'secret' => $secret,
|
|
'membershipUid' => $membershipUid,
|
|
'userUid' => $userUid,
|
|
'email' => $email,
|
|
'name' => $name,
|
|
'session' => $session,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Helper method to create a pending membership (not accepted).
|
|
* Returns membership data for tests that need unaccepted memberships.
|
|
*
|
|
* @param string $teamUid Team ID
|
|
* @param string $teamName Team name
|
|
* @return array{teamUid: string, teamName: string, secret: string, membershipUid: string, userUid: string, email: string, name: string}
|
|
*/
|
|
protected function createPendingMembershipHelper(string $teamUid, string $teamName): array
|
|
{
|
|
$email = uniqid() . 'friend@localhost.test';
|
|
$name = 'Friend User';
|
|
|
|
// Create membership invitation
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $email,
|
|
'name' => $name,
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
// Get invitation details from email
|
|
$lastEmail = $this->getLastEmailByAddress($email);
|
|
$this->assertNotEmpty($lastEmail, 'Email not found for address: ' . $email);
|
|
|
|
$tokens = $this->extractQueryParamsFromEmailLink($lastEmail['html']);
|
|
|
|
return [
|
|
'teamUid' => $tokens['teamId'],
|
|
'teamName' => $tokens['teamName'],
|
|
'secret' => $tokens['secret'],
|
|
'membershipUid' => $tokens['membershipId'],
|
|
'userUid' => $tokens['userId'],
|
|
'email' => $email,
|
|
'name' => $name,
|
|
];
|
|
}
|
|
|
|
public function testGetTeamMemberships(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$teamUid = $teamData['teamUid'];
|
|
$teamName = $teamData['teamName'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertNotEmpty($response['body']['memberships'][0]['$id']);
|
|
$this->assertFalse($response['body']['memberships'][0]['mfa']);
|
|
$this->assertArrayHasKey('userName', $response['body']['memberships'][0]);
|
|
$this->assertArrayHasKey('userEmail', $response['body']['memberships'][0]);
|
|
$this->assertEquals($teamName, $response['body']['memberships'][0]['teamName']);
|
|
$this->assertContains('owner', $response['body']['memberships'][0]['roles']);
|
|
$this->assertContains('player', $response['body']['memberships'][0]['roles']);
|
|
|
|
$membershipId = $response['body']['memberships'][0]['$id'];
|
|
|
|
$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(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertCount(1, $response['body']['memberships']);
|
|
|
|
$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::offset(1)->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertCount(0, $response['body']['memberships']);
|
|
|
|
$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::equal('confirm', [true])->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertCount(1, $response['body']['memberships']);
|
|
|
|
$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::equal('confirm', [false])->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertCount(0, $response['body']['memberships']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => $this->getUser()['$id']
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertNotEmpty($response['body']['memberships'][0]);
|
|
$this->assertArrayHasKey('userName', $response['body']['memberships'][0]);
|
|
$this->assertArrayHasKey('userEmail', $response['body']['memberships'][0]);
|
|
$this->assertEquals($teamName, $response['body']['memberships'][0]['teamName']);
|
|
$this->assertContains('owner', $response['body']['memberships'][0]['roles']);
|
|
$this->assertContains('player', $response['body']['memberships'][0]['roles']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => $membershipId
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertNotEmpty($response['body']['memberships'][0]);
|
|
$this->assertArrayHasKey('userName', $response['body']['memberships'][0]);
|
|
$this->assertArrayHasKey('userEmail', $response['body']['memberships'][0]);
|
|
$this->assertEquals($teamName, $response['body']['memberships'][0]['teamName']);
|
|
$this->assertContains('owner', $response['body']['memberships'][0]['roles']);
|
|
$this->assertContains('player', $response['body']['memberships'][0]['roles']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'search' => 'unknown'
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertEmpty($response['body']['memberships']);
|
|
$this->assertEquals(0, $response['body']['total']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
}
|
|
|
|
public function testGetTeamMembership(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$membershipData = $this->createPendingMembershipHelper($teamData['teamUid'], $teamData['teamName']);
|
|
$teamUid = $membershipData['teamUid'];
|
|
$membershipUid = $membershipData['membershipUid'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships/' . $membershipUid, 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->assertFalse($response['body']['mfa']);
|
|
$this->assertArrayHasKey('userId', $response['body']);
|
|
$this->assertArrayHasKey('userName', $response['body']);
|
|
$this->assertArrayHasKey('userEmail', $response['body']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertNotEmpty($response['body']['teamName']);
|
|
$this->assertCount(1, $response['body']['roles']);
|
|
$this->assertEquals(false, (new DatetimeValidator())->isValid($response['body']['joined'])); // is null in DB
|
|
$this->assertEquals(false, $response['body']['confirm']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships/' . $membershipUid . 'dasdasd', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships/' . $membershipUid, [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
}
|
|
|
|
public function testCreateTeamMembership(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$teamUid = $teamData['teamUid'];
|
|
$teamName = $teamData['teamName'];
|
|
$email = uniqid() . 'friend@localhost.test';
|
|
$name = 'Friend User';
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $email,
|
|
'name' => $name,
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertNotEmpty($response['body']['userId']);
|
|
$this->assertEquals($name, $response['body']['userName']);
|
|
$this->assertEquals($email, $response['body']['userEmail']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertNotEmpty($response['body']['teamName']);
|
|
$this->assertCount(1, $response['body']['roles']);
|
|
$this->assertEquals(false, (new DatetimeValidator())->isValid($response['body']['joined'])); // is null in DB
|
|
$this->assertEquals(false, $response['body']['confirm']);
|
|
|
|
$lastEmail = $this->getLastEmailByAddress($email);
|
|
|
|
$this->assertNotEmpty($lastEmail, 'Email not found for address: ' . $email);
|
|
$this->assertEquals($name, $lastEmail['to'][0]['name']);
|
|
$this->assertEquals('Invitation to ' . $teamName . ' Team at ' . $this->getProject()['name'], $lastEmail['subject']);
|
|
|
|
$tokens = $this->extractQueryParamsFromEmailLink($lastEmail['html']);
|
|
$this->assertEquals($teamName, $tokens['teamName']);
|
|
$this->assertEquals($response['body']['teamId'], $tokens['teamId']);
|
|
|
|
/**
|
|
* Test with UserId
|
|
* Create user
|
|
*/
|
|
$secondEmail = uniqid() . 'foe@localhost.test';
|
|
$secondName = 'Another Foe';
|
|
$response = $this->client->call(Client::METHOD_POST, '/account', [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], [
|
|
'userId' => 'unique()',
|
|
'email' => $secondEmail,
|
|
'password' => 'password',
|
|
'name' => $secondName
|
|
]);
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$userId = $response['body']['$id'];
|
|
|
|
/**
|
|
* Test for UserID
|
|
* Failure
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'userId' => 'abcdefdg',
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* Test for UserID
|
|
* SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'userId' => $userId,
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertNotEmpty($response['body']['userId']);
|
|
$this->assertEquals($secondName, $response['body']['userName']);
|
|
$this->assertEquals($secondEmail, $response['body']['userEmail']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertNotEmpty($response['body']['teamName']);
|
|
$this->assertCount(1, $response['body']['roles']);
|
|
$this->assertEquals(false, (new DateTimeValidator())->isValid($response['body']['joined'])); // is null in DB
|
|
$this->assertEquals(false, $response['body']['confirm']);
|
|
|
|
$lastEmail = $this->getLastEmailByAddress($secondEmail);
|
|
|
|
$this->assertNotEmpty($lastEmail, 'Email not found for address: ' . $secondEmail);
|
|
$this->assertEquals($secondName, $lastEmail['to'][0]['name']);
|
|
$this->assertEquals('Invitation to ' . $teamName . ' Team at ' . $this->getProject()['name'], $lastEmail['subject']);
|
|
|
|
$tokens = $this->extractQueryParamsFromEmailLink($lastEmail['html']);
|
|
$this->assertEquals($teamName, $tokens['teamName']);
|
|
$this->assertEquals($response['body']['teamId'], $tokens['teamId']);
|
|
|
|
// test for resending invitation
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $email,
|
|
'name' => 'Friend User',
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => 'dasdkaskdjaskdjasjkd',
|
|
'name' => $name,
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $email,
|
|
'name' => $name,
|
|
'roles' => 'bad string',
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
}
|
|
|
|
public function testListTeamMemberships(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$teamUid = $teamData['teamUid'];
|
|
$teamName = $teamData['teamName'];
|
|
|
|
// Create additional memberships for testing list functionality
|
|
$this->createPendingMembershipHelper($teamUid, $teamName);
|
|
$this->createPendingMembershipHelper($teamUid, $teamName);
|
|
|
|
$memberships = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $memberships['headers']['status-code']);
|
|
$this->assertIsInt($memberships['body']['total']);
|
|
$this->assertNotEmpty($memberships['body']['memberships']);
|
|
$this->assertCount(3, $memberships['body']['memberships']);
|
|
|
|
$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::cursorAfter(new Document(['$id' => $memberships['body']['memberships'][0]['$id']]))->toString(),
|
|
],
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertIsInt($response['body']['total']);
|
|
$this->assertNotEmpty($response['body']['memberships']);
|
|
$this->assertCount(2, $response['body']['memberships']);
|
|
$this->assertEquals($memberships['body']['memberships'][1]['$id'], $response['body']['memberships'][0]['$id']);
|
|
}
|
|
|
|
public function testUpdateTeamMembership(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$membershipData = $this->createPendingMembershipHelper($teamData['teamUid'], $teamData['teamName']);
|
|
|
|
$teamUid = $membershipData['teamUid'];
|
|
$secret = $membershipData['secret'];
|
|
$membershipUid = $membershipData['membershipUid'];
|
|
$userUid = $membershipData['userUid'];
|
|
$email = $membershipData['email'];
|
|
$name = $membershipData['name'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertNotEmpty($response['body']['userId']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertCount(1, $response['body']['roles']);
|
|
$this->assertEquals(true, (new DatetimeValidator())->isValid($response['body']['joined']));
|
|
$this->assertEquals(true, $response['body']['confirm']);
|
|
$session = $response['cookies']['a_session_' . $this->getProject()['$id']];
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/account', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertEquals(true, $response['body']['emailVerification']);
|
|
|
|
|
|
/** [START] TESTS TO CHECK PASSWORD UPDATE OF NEW USER CREATED USING TEAM INVITE */
|
|
/**
|
|
* New User tries to update password without old password -> SHOULD PASS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/account/password', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]), [
|
|
'password' => 'new-password'
|
|
]);
|
|
|
|
$this->assertEquals($response['headers']['status-code'], 200);
|
|
$this->assertIsArray($response['body']);
|
|
$this->assertNotEmpty($response['body']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals(true, (new DatetimeValidator())->isValid($response['body']['registration']));
|
|
$this->assertEquals($response['body']['email'], $email);
|
|
$this->assertEquals($response['body']['name'], $name);
|
|
|
|
/**
|
|
* New User again tries to update password with ONLY new password -> SHOULD FAIL
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/account/password', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]), [
|
|
'password' => 'new-password',
|
|
]);
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* New User tries to update password by passing both old and new password -> SHOULD PASS
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/account/password', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]), [
|
|
'password' => 'newer-password',
|
|
'oldPassword' => 'new-password'
|
|
]);
|
|
|
|
$this->assertEquals($response['headers']['status-code'], 200);
|
|
$this->assertIsArray($response['body']);
|
|
$this->assertNotEmpty($response['body']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertEquals(true, (new DatetimeValidator())->isValid($response['body']['registration']));
|
|
$this->assertEquals($response['body']['email'], $email);
|
|
$this->assertEquals($response['body']['name'], $name);
|
|
|
|
/** [END] TESTS TO CHECK PASSWORD UPDATE OF NEW USER CREATED USING TEAM INVITE */
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => 'sdasdasd',
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => '',
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => ID::custom('sdasd'),
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => ID::custom('$notallowed'),
|
|
]);
|
|
|
|
$this->assertEquals(400, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => ID::custom('asdf'),
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
]), [
|
|
'secret' => $secret,
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(409, $response['headers']['status-code']);
|
|
}
|
|
|
|
|
|
public function testUpdateMembershipWithSession(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$teamUid = $teamData['teamUid'];
|
|
|
|
// create user
|
|
$response = $this->client->call(Client::METHOD_POST, '/account', [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], [
|
|
'userId' => 'unique()',
|
|
'email' => uniqid() . 'foe@localhost.test',
|
|
'password' => 'password',
|
|
'name' => 'test'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
$user = $response['body'];
|
|
|
|
// create session
|
|
$response = $this->client->call(Client::METHOD_POST, '/account/sessions', [
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], [
|
|
'email' => $user['email'],
|
|
'password' => 'password'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
$session = $response['cookies']['a_session_' . $this->getProject()['$id']];
|
|
|
|
$response = $this->client->call(Client::METHOD_POST, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'email' => $user['email'],
|
|
'roles' => ['developer'],
|
|
'url' => 'http://localhost:5000/join-us#title'
|
|
]);
|
|
|
|
$this->assertEquals(201, $response['headers']['status-code']);
|
|
|
|
$lastEmail = $this->getLastEmailByAddress($user['email']);
|
|
$this->assertNotEmpty($lastEmail, 'Email not found for address: ' . $user['email']);
|
|
$tokens = $this->extractQueryParamsFromEmailLink($lastEmail['html']);
|
|
|
|
$secret = $tokens['secret'];
|
|
$membershipUid = $tokens['membershipId'];
|
|
$userUid = $tokens['userId'];
|
|
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid . '/status', [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
], [
|
|
'secret' => $secret,
|
|
'userId' => $userUid,
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertNotEmpty($response['body']['userId']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertCount(1, $response['body']['roles']);
|
|
$this->assertEmpty($response['cookies']);
|
|
}
|
|
|
|
public function testUpdateTeamMembershipRoles(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$membershipData = $this->createAndAcceptMembershipHelper($teamData['teamUid'], $teamData['teamName']);
|
|
|
|
$teamUid = $membershipData['teamUid'];
|
|
$membershipUid = $membershipData['membershipUid'];
|
|
$session = $membershipData['session'];
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
$roles = ['editor', 'uncle'];
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid, array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'roles' => $roles
|
|
]);
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertNotEmpty($response['body']['$id']);
|
|
$this->assertNotEmpty($response['body']['userId']);
|
|
$this->assertNotEmpty($response['body']['teamId']);
|
|
$this->assertCount(count($roles), $response['body']['roles']);
|
|
$this->assertEquals($roles[0], $response['body']['roles'][0]);
|
|
$this->assertEquals($roles[1], $response['body']['roles'][1]);
|
|
|
|
/**
|
|
* Test for unknown team
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . 'abc' . '/memberships/' . $membershipUid, array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'roles' => $roles
|
|
]);
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* Test for unknown membership ID
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . 'abc', array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()), [
|
|
'roles' => $roles
|
|
]);
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
|
|
|
|
/**
|
|
* Test for when a user other than the owner tries to update membership
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_PATCH, '/teams/' . $teamUid . '/memberships/' . $membershipUid, [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
], [
|
|
'roles' => $roles
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
$this->assertEquals('User is not allowed to modify roles', $response['body']['message']);
|
|
}
|
|
|
|
public function testDeleteTeamMembership(): void
|
|
{
|
|
$teamData = $this->createTeamHelper();
|
|
$teamUid = $teamData['teamUid'];
|
|
$teamName = $teamData['teamName'];
|
|
|
|
// Create multiple memberships for the delete test
|
|
$this->createPendingMembershipHelper($teamUid, $teamName);
|
|
$this->createPendingMembershipHelper($teamUid, $teamName);
|
|
$membershipData = $this->createAndAcceptMembershipHelper($teamUid, $teamName);
|
|
|
|
$membershipUid = $membershipData['membershipUid'];
|
|
$session = $membershipData['session'];
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertEquals(4, $response['body']['total']);
|
|
|
|
$ownerMembershipUid = $response['body']['memberships'][0]['$id'];
|
|
|
|
/**
|
|
* Test for FAILURE
|
|
*/
|
|
|
|
/**
|
|
* Test deleting a membership that does not exists
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/teams/' . $teamUid . '/memberships/dne', [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]);
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* Test deleting another user's membership
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/teams/' . $teamUid . '/memberships/' . $ownerMembershipUid, [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]);
|
|
|
|
$this->assertEquals(401, $response['headers']['status-code']);
|
|
|
|
/**
|
|
* Test for SUCCESS
|
|
*/
|
|
|
|
/**
|
|
* Test for when a user other than the owner tries to delete their membership
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/teams/' . $teamUid . '/memberships/' . $membershipUid, [
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
'cookie' => 'a_session_' . $this->getProject()['$id'] . '=' . $session,
|
|
]);
|
|
|
|
$this->assertEquals(204, $response['headers']['status-code']);
|
|
$this->assertEmpty($response['body']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships', array_merge([
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertEquals(3, $response['body']['total']);
|
|
|
|
/**
|
|
* Test for when the owner tries to delete their membership
|
|
*/
|
|
$response = $this->client->call(Client::METHOD_DELETE, '/teams/' . $teamUid . '/memberships/' . $ownerMembershipUid, array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(204, $response['headers']['status-code']);
|
|
$this->assertEmpty($response['body']);
|
|
|
|
$response = $this->client->call(Client::METHOD_GET, '/teams/' . $teamUid . '/memberships/' . $ownerMembershipUid, array_merge([
|
|
'origin' => 'http://localhost',
|
|
'content-type' => 'application/json',
|
|
'x-appwrite-project' => $this->getProject()['$id'],
|
|
], $this->getHeaders()));
|
|
|
|
$this->assertEquals(404, $response['headers']['status-code']);
|
|
}
|
|
}
|