2016-05-10 17:37:32 +05:30
|
|
|
<?php
|
|
|
|
namespace tests\codeception\api;
|
|
|
|
|
2017-01-24 04:30:08 +05:30
|
|
|
use api\models\AccountIdentity;
|
2016-05-16 13:51:12 +05:30
|
|
|
use Codeception\Actor;
|
|
|
|
use InvalidArgumentException;
|
2017-01-24 04:30:08 +05:30
|
|
|
use Yii;
|
2016-05-10 17:37:32 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Inherited Methods
|
|
|
|
* @method void wantToTest($text)
|
|
|
|
* @method void wantTo($text)
|
|
|
|
* @method void execute($callable)
|
|
|
|
* @method void expectTo($prediction)
|
|
|
|
* @method void expect($prediction)
|
|
|
|
* @method void amGoingTo($argumentation)
|
|
|
|
* @method void am($role)
|
|
|
|
* @method void lookForwardTo($achieveValue)
|
|
|
|
* @method void comment($description)
|
|
|
|
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
|
|
|
|
*
|
|
|
|
* @SuppressWarnings(PHPMD)
|
|
|
|
*/
|
2016-05-16 13:51:12 +05:30
|
|
|
class FunctionalTester extends Actor {
|
2016-05-10 17:37:32 +05:30
|
|
|
use _generated\FunctionalTesterActions;
|
|
|
|
|
2017-01-24 04:30:08 +05:30
|
|
|
public function amAuthenticated(string $asUsername = 'admin') {
|
|
|
|
/** @var AccountIdentity $account */
|
|
|
|
$account = AccountIdentity::findOne(['username' => $asUsername]);
|
|
|
|
if ($account === null) {
|
|
|
|
throw new InvalidArgumentException("Cannot find account for username \"$asUsername\"");
|
2016-05-16 13:51:12 +05:30
|
|
|
}
|
|
|
|
|
2017-01-24 04:30:08 +05:30
|
|
|
$result = Yii::$app->user->login($account);
|
|
|
|
$this->amBearerAuthenticated($result->getJwt());
|
2016-05-10 17:37:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
public function notLoggedIn() {
|
|
|
|
$this->haveHttpHeader('Authorization', null);
|
|
|
|
}
|
|
|
|
|
2016-05-30 05:14:17 +05:30
|
|
|
public function canSeeAuthCredentials($expectRefresh = false) {
|
|
|
|
$this->canSeeResponseJsonMatchesJsonPath('$.access_token');
|
|
|
|
$this->canSeeResponseJsonMatchesJsonPath('$.expires_in');
|
|
|
|
if ($expectRefresh) {
|
|
|
|
$this->canSeeResponseJsonMatchesJsonPath('$.refresh_token');
|
|
|
|
} else {
|
|
|
|
$this->cantSeeResponseJsonMatchesJsonPath('$.refresh_token');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-10 17:37:32 +05:30
|
|
|
}
|