1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/tests/e2e/Services/Teams/TeamsBase.php

265 lines
9.8 KiB
PHP
Raw Normal View History

2020-01-17 03:06:28 +13:00
<?php
namespace Tests\E2E\Services\Teams;
use Tests\E2E\Client;
trait TeamsBase
{
public function testCreateTeam():array
{
/**
* Test for SUCCESS
*/
$response1 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Arsenal'
]);
$this->assertEquals(201, $response1['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response1['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Arsenal', $response1['body']['name']);
$this->assertGreaterThan(-1, $response1['body']['sum']);
$this->assertIsInt($response1['body']['sum']);
$this->assertIsInt($response1['body']['dateCreated']);
2020-02-17 20:16:11 +13:00
$teamUid = $response1['body']['$id'];
2020-01-20 01:22:54 +13:00
$teamName = $response1['body']['name'];
2020-01-17 03:06:28 +13:00
$response2 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Manchester United'
]);
$this->assertEquals(201, $response2['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response2['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Manchester United', $response2['body']['name']);
$this->assertGreaterThan(-1, $response2['body']['sum']);
$this->assertIsInt($response2['body']['sum']);
$this->assertIsInt($response2['body']['dateCreated']);
$response3 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Newcastle'
]);
$this->assertEquals(201, $response3['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response3['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Newcastle', $response3['body']['name']);
$this->assertGreaterThan(-1, $response3['body']['sum']);
$this->assertIsInt($response3['body']['sum']);
$this->assertIsInt($response3['body']['dateCreated']);
/**
* Test for FAILURE
*/
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
]);
$this->assertEquals(400, $response['headers']['status-code']);
2020-01-20 01:22:54 +13:00
return ['teamUid' => $teamUid, 'teamName' => $teamName];
2020-01-17 03:06:28 +13:00
}
/**
* @depends testCreateTeam
*/
public function testGetTeam($data):array
{
2020-10-15 10:11:12 +13:00
$id = $data['teamUid'] ?? '';
2020-01-17 03:06:28 +13:00
/**
* Test for SUCCESS
*/
2020-02-17 20:16:11 +13:00
$response = $this->client->call(Client::METHOD_GET, '/teams/'.$id, array_merge([
2020-01-17 03:06:28 +13:00
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()));
$this->assertEquals(200, $response['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Arsenal', $response['body']['name']);
$this->assertGreaterThan(-1, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertIsInt($response['body']['dateCreated']);
/**
* Test for FAILURE
*/
2020-10-28 08:48:38 +13:00
return [];
2020-01-17 03:06:28 +13:00
}
/**
* @depends testCreateTeam
*/
public function testListTeams($data):array
{
/**
* Test for SUCCESS
*/
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()));
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
2020-07-09 01:02:01 +12:00
$this->assertGreaterThan(2, count($response['body']['teams']));
2020-01-17 03:06:28 +13:00
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'limit' => 2,
]);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertCount(2, $response['body']['teams']);
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'offset' => 1,
]);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
2020-07-09 02:17:02 +12:00
$this->assertGreaterThan(2, $response['body']['teams']);
2020-01-17 03:06:28 +13:00
$response = $this->client->call(Client::METHOD_GET, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'search' => 'Manchester',
]);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertCount(1, $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',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'search' => 'United',
]);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertGreaterThan(0, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertCount(1, $response['body']['teams']);
$this->assertEquals('Manchester United', $response['body']['teams'][0]['name']);
/**
* Test for FAILURE
*/
2020-10-28 08:48:38 +13:00
return [];
2020-01-17 03:06:28 +13:00
}
public function testUpdateTeam():array
{
/**
* Test for SUCCESS
*/
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Demo'
]);
$this->assertEquals(201, $response['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Demo', $response['body']['name']);
$this->assertGreaterThan(-1, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertIsInt($response['body']['dateCreated']);
2020-02-17 20:16:11 +13:00
$response = $this->client->call(Client::METHOD_PUT, '/teams/'.$response['body']['$id'], array_merge([
2020-01-17 03:06:28 +13:00
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Demo New'
]);
$this->assertEquals(200, $response['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response['body']['$id']);
2020-01-17 03:06:28 +13:00
$this->assertEquals('Demo New', $response['body']['name']);
$this->assertGreaterThan(-1, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertIsInt($response['body']['dateCreated']);
/**
* Test for FAILURE
*/
2020-02-17 20:16:11 +13:00
$response = $this->client->call(Client::METHOD_PUT, '/teams/'.$response['body']['$id'], array_merge([
2020-01-17 03:06:28 +13:00
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
]);
$this->assertEquals(400, $response['headers']['status-code']);
return [];
}
public function testDeleteTeam():array
{
/**
* Test for SUCCESS
*/
$response = $this->client->call(Client::METHOD_POST, '/teams', array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-17 03:06:28 +13:00
], $this->getHeaders()), [
'name' => 'Demo'
]);
2020-02-17 20:16:11 +13:00
$teamUid = $response['body']['$id'];
2020-01-17 03:06:28 +13:00
$this->assertEquals(201, $response['headers']['status-code']);
2020-02-17 20:16:11 +13:00
$this->assertNotEmpty($response['body']['$id']);
2020-01-19 03:00:15 +13:00
$this->assertEquals('Demo', $response['body']['name']);
$this->assertGreaterThan(-1, $response['body']['sum']);
$this->assertIsInt($response['body']['sum']);
$this->assertIsInt($response['body']['dateCreated']);
$response = $this->client->call(Client::METHOD_DELETE, '/teams/'.$teamUid, array_merge([
'content-type' => 'application/json',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-19 03:00:15 +13:00
], $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',
2020-02-17 20:16:11 +13:00
'x-appwrite-project' => $this->getProject()['$id'],
2020-01-19 03:00:15 +13:00
], $this->getHeaders()));
$this->assertEquals(404, $response['headers']['status-code']);
return [];
}
2020-01-17 03:06:28 +13:00
}