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]
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\tests\functional\dev\applications;
|
|
|
|
use api\tests\_pages\OauthRoute;
|
|
use api\tests\FunctionalTester;
|
|
|
|
class UpdateClientCest {
|
|
|
|
/**
|
|
* @var OauthRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new OauthRoute($I);
|
|
}
|
|
|
|
public function testUpdateApplication(FunctionalTester $I) {
|
|
$I->amAuthenticated('TwoOauthClients');
|
|
$this->route->updateClient('first-test-oauth-client', [
|
|
'name' => 'Updated name',
|
|
'description' => 'Updated description.',
|
|
'redirectUri' => 'http://new-site.com/oauth/ely',
|
|
'websiteUrl' => 'http://new-site.com',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
'data' => [
|
|
'clientId' => 'first-test-oauth-client',
|
|
'clientSecret' => 'Zt1kEK7DQLXXYISLDvURVXK32Q58sHWSFKyO71iCIlv4YM2IHlLbhsvYoIJScUzT',
|
|
'name' => 'Updated name',
|
|
'description' => 'Updated description.',
|
|
'redirectUri' => 'http://new-site.com/oauth/ely',
|
|
'websiteUrl' => 'http://new-site.com',
|
|
'createdAt' => 1519487434,
|
|
'countUsers' => 0,
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function testUpdateMinecraftServer(FunctionalTester $I) {
|
|
$I->amAuthenticated('TwoOauthClients');
|
|
$this->route->updateClient('another-test-oauth-client', [
|
|
'name' => 'Updated server name',
|
|
'websiteUrl' => 'http://new-site.com',
|
|
'minecraftServerIp' => 'hypixel.com:25565',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
'data' => [
|
|
'clientId' => 'another-test-oauth-client',
|
|
'clientSecret' => 'URVXK32Q58sHWSFKyO71iCIlv4YM2Zt1kEK7DQLXXYISLDvIHlLbhsvYoIJScUzT',
|
|
'name' => 'Updated server name',
|
|
'websiteUrl' => 'http://new-site.com',
|
|
'minecraftServerIp' => 'hypixel.com:25565',
|
|
'createdAt' => 1519487472,
|
|
],
|
|
]);
|
|
}
|
|
|
|
}
|