mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
45101d6453
Reworked oauth_sessions table. Added extension to use MariaDB's JSON columns. Rewritten tests for authorization_code grant for client side. Deprecate some old shit. [skip ci]
82 lines
2.6 KiB
PHP
82 lines
2.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\tests\functional\dev\applications;
|
|
|
|
use api\tests\_pages\IdentityInfoRoute;
|
|
use api\tests\functional\_steps\OauthSteps;
|
|
use api\tests\FunctionalTester;
|
|
|
|
class IdentityInfoCest {
|
|
|
|
/**
|
|
* @var IdentityInfoRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new IdentityInfoRoute($I);
|
|
}
|
|
|
|
public function testGetErrorIfNoAccessToken(OauthSteps $I) {
|
|
$I->wantToTest('behavior when this endpoint called without Authorization header');
|
|
$this->route->info();
|
|
$I->canSeeResponseCodeIs(401);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'name' => 'Unauthorized',
|
|
'status' => 401,
|
|
'message' => 'Your request was made with invalid credentials.',
|
|
]);
|
|
}
|
|
|
|
public function testGetErrorIfNotEnoughPerms(OauthSteps $I) {
|
|
$I->wantToTest('behavior when this endpoint called with token, that have not enough scopes');
|
|
$accessToken = $I->getAccessToken();
|
|
$I->amBearerAuthenticated($accessToken);
|
|
$this->route->info();
|
|
$I->canSeeResponseCodeIs(403);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'name' => 'Forbidden',
|
|
'status' => 403,
|
|
'message' => 'You are not allowed to perform this action.',
|
|
]);
|
|
}
|
|
|
|
public function testGetInfo(OauthSteps $I) {
|
|
$accessToken = $I->getAccessToken(['account_info']);
|
|
$I->amBearerAuthenticated($accessToken);
|
|
$this->route->info();
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'id' => 1,
|
|
'uuid' => 'df936908-b2e1-544d-96f8-2977ec213022',
|
|
'username' => 'Admin',
|
|
'registeredAt' => 1451775316,
|
|
'profileLink' => 'http://ely.by/u1',
|
|
'preferredLanguage' => 'en',
|
|
]);
|
|
$I->cantSeeResponseJsonMatchesJsonPath('$.email');
|
|
}
|
|
|
|
public function testGetInfoWithEmail(OauthSteps $I) {
|
|
$accessToken = $I->getAccessToken(['account_info', 'account_email']);
|
|
$I->amBearerAuthenticated($accessToken);
|
|
$this->route->info();
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'id' => 1,
|
|
'uuid' => 'df936908-b2e1-544d-96f8-2977ec213022',
|
|
'username' => 'Admin',
|
|
'registeredAt' => 1451775316,
|
|
'profileLink' => 'http://ely.by/u1',
|
|
'preferredLanguage' => 'en',
|
|
'email' => 'admin@ely.by',
|
|
]);
|
|
}
|
|
|
|
}
|