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

132 lines
4 KiB
PHP
Raw Normal View History

2019-09-14 16:37:37 +12:00
<?php
namespace Tests\E2E;
use Tests\E2E\Client;
use PHPUnit\Framework\TestCase;
class ConsoleTest extends TestCase
{
/**
* @var Client
*/
protected $client = null;
protected $endpoint = 'http://localhost/v1';
2019-09-14 20:33:24 +12:00
protected $demoEmail = '';
protected $demoPassword = '';
2019-09-14 16:37:37 +12:00
public function setUp()
{
2019-09-14 20:33:24 +12:00
$this->client = new Client();
2019-09-14 16:37:37 +12:00
$this->client
->setEndpoint($this->endpoint)
;
2019-09-14 20:33:24 +12:00
$this->demoEmail = 'user.' . rand(0,1000000) . '@appwrite.io';
$this->demoPassword = 'password.' . rand(0,1000000);
2019-09-14 16:37:37 +12:00
}
public function tearDown()
{
$this->client = null;
}
public function testRegisterSuccess()
{
$response = $this->client->call(Client::METHOD_POST, '/auth/register', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
], [
2019-09-14 20:33:24 +12:00
'email' => $this->demoEmail,
'password' => $this->demoPassword,
2019-09-14 17:44:55 +12:00
'redirect' => 'http://localhost/confirm',
2019-09-14 16:37:37 +12:00
'success' => 'http://localhost/success',
'failure' => 'http://localhost/failure',
2019-09-14 20:33:24 +12:00
'name' => 'Demo User',
2019-09-14 16:37:37 +12:00
]);
2019-09-14 20:33:24 +12:00
$this->assertEquals('http://localhost/success', $response['headers']['location']);
2019-09-14 16:37:37 +12:00
$this->assertEquals("\n", $response['body']);
2019-09-14 20:33:24 +12:00
return [
'demoEmail' => $this->demoEmail,
'demoPassword' => $this->demoPassword,
];
2019-09-14 16:37:37 +12:00
}
2019-09-14 20:33:24 +12:00
/**
* @depends testRegisterSuccess
*/
public function testLoginSuccess($data)
2019-09-14 16:37:37 +12:00
{
$response = $this->client->call(Client::METHOD_POST, '/auth/login', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
], [
2019-09-14 20:33:24 +12:00
'email' => $data['demoEmail'],
'password' => $data['demoPassword'],
2019-09-14 16:37:37 +12:00
'success' => 'http://localhost/success',
'failure' => 'http://localhost/failure',
]);
2019-09-16 04:50:57 +12:00
$session = $this->client->parseCookie($response['headers']['set-cookie'])['a-session-console'];
2019-09-16 06:56:04 +12:00
2019-09-16 04:50:57 +12:00
$this->assertEquals('http://localhost/success', $response['headers']['location']);
$this->assertEquals("\n", $response['body']);
2019-09-16 07:11:01 +12:00
return [
'email' => $data['demoEmail'],
'password' => $data['demoPassword'],
'session' => $session
];
2019-09-16 04:50:57 +12:00
}
/**
* @depends testLoginSuccess
*/
2019-09-16 07:11:01 +12:00
public function testAccountSuccess($data)
{
$response = $this->client->call(Client::METHOD_GET, '/account', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
'cookie' => 'a-session-console=' . $data['session'],
], []);
$this->assertEquals('Demo User', $response['body']['name']);
2019-09-16 07:25:16 +12:00
$this->assertEquals($data['email'], $response['body']['email']);
2019-09-16 07:11:01 +12:00
$this->assertEquals(false, $response['body']['confirm']);
$this->assertIsArray($response['body']['roles']);
2019-09-16 07:25:16 +12:00
$this->assertIsInt($response['body']['registration']);
2019-09-16 07:11:01 +12:00
$this->assertEquals('*', $response['body']['roles'][0]);
$this->assertEquals('user:' . $response['body']['$uid'], $response['body']['roles'][1]);
$this->assertEquals('role:1', $response['body']['roles'][2]);
return $data;
}
/**
* @depends testAccountSuccess
*/
2019-09-16 06:56:04 +12:00
public function testLogoutSuccess($data)
2019-09-16 04:50:57 +12:00
{
$response = $this->client->call(Client::METHOD_DELETE, '/auth/logout', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
'cookie' => 'a-session-console=' . $data['session'],
], []);
2019-09-15 00:47:47 +12:00
2019-09-16 06:56:04 +12:00
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertEquals('success', $response['body']['result']);
2019-09-14 16:37:37 +12:00
}
2019-09-16 04:50:57 +12:00
2019-09-16 06:56:04 +12:00
public function testLogoutFailure()
{
$response = $this->client->call(Client::METHOD_DELETE, '/auth/logout', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
], []);
2019-09-16 04:50:57 +12:00
2019-09-16 06:56:04 +12:00
$this->assertEquals('401', $response['body']['code']);
}
2019-09-14 16:37:37 +12:00
}