mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 15:33:21 +05:30
dd2c4bc413
Все действия, связанные с аккаунтами, теперь вызываются через url `/api/v1/accounts/<id>/<action>`. Добавлена вменяемая система разграничения прав на основе RBAC. Теперь oAuth2 токены генерируются как случайная строка в 40 символов длинной, а не UUID. Исправлен баг с неправильным временем жизни токена в ответе успешного запроса аутентификации. Теперь все unit тесты можно успешно прогнать без наличия интернета.
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
namespace tests\codeception\api\functional;
|
|
|
|
use common\models\Account;
|
|
use tests\codeception\api\_pages\AccountsRoute;
|
|
use tests\codeception\api\_pages\AuthenticationRoute;
|
|
use tests\codeception\api\FunctionalTester;
|
|
|
|
class AccountsChangePasswordCest {
|
|
|
|
/**
|
|
* @var AccountsRoute
|
|
*/
|
|
private $route;
|
|
|
|
public function _before(FunctionalTester $I) {
|
|
$this->route = new AccountsRoute($I);
|
|
}
|
|
|
|
public function _after() {
|
|
/** @var Account $account */
|
|
$account = Account::findOne(1);
|
|
$account->setPassword('password_0');
|
|
$account->save();
|
|
}
|
|
|
|
public function testChangePassword(FunctionalTester $I) {
|
|
$I->wantTo('change my password');
|
|
$id = $I->amAuthenticated();
|
|
|
|
$this->route->changePassword($id, 'password_0', 'new-password', 'new-password');
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
|
|
$I->notLoggedIn();
|
|
|
|
$loginRoute = new AuthenticationRoute($I);
|
|
$loginRoute->login('Admin', 'new-password');
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
|
|
}
|