$asUsername]); if ($account === null) { throw new InvalidArgumentException("Cannot find account with username \"{$asUsername}\""); } $token = Yii::$app->tokensFactory->createForWebAccount($account); $this->amBearerAuthenticated((string)$token); return $account->id; } public function notLoggedIn(): void { $this->haveHttpHeader('Authorization', null); Yii::$app->user->logout(); } public function canSeeAuthCredentials($expectRefreshToken = false): void { $this->canSeeResponseJsonMatchesJsonPath('$.access_token'); $this->canSeeResponseJsonMatchesJsonPath('$.expires_in'); if ($expectRefreshToken) { $this->canSeeResponseJsonMatchesJsonPath('$.refresh_token'); } else { $this->cantSeeResponseJsonMatchesJsonPath('$.refresh_token'); } } }