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

106 lines
3.1 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'];
var_dump($response['headers']);
$this->assertEquals('http://localhost/success', $response['headers']['location']);
$this->assertEquals("\n", $response['body']);
return ['session' => $session];
}
/**
* @depends testLoginSuccess
*/
2019-09-16 05:23:00 +12:00
public function xtestLogoutSuccess($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 04:50:57 +12:00
var_dump($response);
2019-09-14 16:37:37 +12:00
$this->assertEquals('http://localhost/success', $response['headers']['location']);
$this->assertEquals("\n", $response['body']);
}
2019-09-16 04:50:57 +12:00
// 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']);
// }
2019-09-14 16:37:37 +12:00
}