1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/tests/e2e/ConsoleTest.php
2019-09-30 11:43:40 +05:30

99 lines
3.1 KiB
PHP

<?php
namespace Tests\E2E;
use Tests\E2E\Client;
class ConsoleTest extends BaseConsole
{
public function testRegisterSuccess()
{
$response = $this->register();
var_dump($_SERVER);
$this->assertEquals('http://localhost/success', $response['headers']['location']);
$this->assertEquals("\n", $response['body']);
return [
'email' => $this->demoEmail,
'password' => $this->demoPassword,
];
}
/**
* @depends testRegisterSuccess
*/
public function testLoginSuccess($data)
{
$response = $this->client->call(Client::METHOD_POST, '/auth/login', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
], [
'email' => $data['email'],
'password' => $data['password'],
'success' => 'http://localhost/success',
'failure' => 'http://localhost/failure',
]);
$session = $this->client->parseCookie($response['headers']['set-cookie'])['a-session-console'];
$this->assertEquals('http://localhost/success', $response['headers']['location']);
$this->assertEquals("\n", $response['body']);
return [
'email' => $data['email'],
'password' => $data['password'],
'session' => $session
];
}
/**
* @depends testLoginSuccess
*/
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']);
$this->assertEquals($data['email'], $response['body']['email']);
$this->assertEquals(false, $response['body']['confirm']);
$this->assertIsArray($response['body']['roles']);
$this->assertIsInt($response['body']['registration']);
$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
*/
public function testLogoutSuccess($data)
{
$response = $this->client->call(Client::METHOD_DELETE, '/auth/logout', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
'cookie' => 'a-session-console=' . $data['session'],
], []);
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertEquals('success', $response['body']['result']);
}
public function testLogoutFailure()
{
$response = $this->client->call(Client::METHOD_DELETE, '/auth/logout', [
'origin' => 'http://localhost',
'content-type' => 'application/json',
], []);
$this->assertEquals('401', $response['body']['code']);
}
}