mirror of
https://github.com/elyby/accounts.git
synced 2024-12-03 12:10:57 +05:30
111 lines
3.7 KiB
PHP
111 lines
3.7 KiB
PHP
<?php
|
|
namespace api\tests\functional\oauth;
|
|
|
|
use api\tests\_pages\OauthRoute;
|
|
use api\tests\FunctionalTester;
|
|
|
|
class CreateClientCest {
|
|
|
|
/**
|
|
* @var OauthRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new OauthRoute($I);
|
|
}
|
|
|
|
public function testCreateApplicationWithWrongParams(FunctionalTester $I) {
|
|
$I->amAuthenticated('admin');
|
|
|
|
$this->route->createClient('application', []);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => false,
|
|
'errors' => [
|
|
'name' => 'error.name_required',
|
|
'redirectUri' => 'error.redirectUri_required',
|
|
],
|
|
]);
|
|
|
|
$this->route->createClient('application', [
|
|
'name' => 'my test oauth client',
|
|
'redirectUri' => 'localhost',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => false,
|
|
'errors' => [
|
|
'redirectUri' => 'error.redirectUri_invalid',
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function testCreateApplication(FunctionalTester $I) {
|
|
$I->amAuthenticated('admin');
|
|
$this->route->createClient('application', [
|
|
'name' => 'My admin application',
|
|
'description' => 'Application description.',
|
|
'redirectUri' => 'http://some-site.com/oauth/ely',
|
|
'websiteUrl' => 'http://some-site.com',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
'data' => [
|
|
'clientId' => 'my-admin-application',
|
|
'name' => 'My admin application',
|
|
'description' => 'Application description.',
|
|
'websiteUrl' => 'http://some-site.com',
|
|
'countUsers' => 0,
|
|
'redirectUri' => 'http://some-site.com/oauth/ely',
|
|
],
|
|
]);
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.data.clientSecret');
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.data.createdAt');
|
|
}
|
|
|
|
public function testCreateMinecraftServer(FunctionalTester $I) {
|
|
$I->amAuthenticated('admin');
|
|
$this->route->createClient('minecraft-server', [
|
|
'name' => 'My amazing server',
|
|
'websiteUrl' => 'http://some-site.com',
|
|
'minecraftServerIp' => 'hypixel.com:25565',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
'data' => [
|
|
'clientId' => 'my-amazing-server',
|
|
'name' => 'My amazing server',
|
|
'websiteUrl' => 'http://some-site.com',
|
|
'minecraftServerIp' => 'hypixel.com:25565',
|
|
],
|
|
]);
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.data.clientSecret');
|
|
$I->canSeeResponseJsonMatchesJsonPath('$.data.createdAt');
|
|
}
|
|
|
|
public function testCreateApplicationWithTheSameNameAsDeletedApp(FunctionalTester $I) {
|
|
$I->wantTo('create application with the same name as the recently deleted application');
|
|
$I->amAuthenticated('admin');
|
|
$this->route->createClient('application', [
|
|
'name' => 'Deleted OAuth Client',
|
|
'description' => '',
|
|
'redirectUri' => 'http://some-site.com/oauth/ely',
|
|
'websiteUrl' => 'http://some-site.com',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
'data' => [
|
|
'clientId' => 'deleted-oauth-client1',
|
|
],
|
|
]);
|
|
}
|
|
|
|
}
|