mirror of
https://github.com/elyby/accounts.git
synced 2024-11-17 18:53:00 +05:30
106 lines
3.6 KiB
PHP
106 lines
3.6 KiB
PHP
<?php
|
|
namespace tests\codeception\api\models\authentication;
|
|
|
|
use api\models\authentication\LoginForm;
|
|
use Codeception\Specify;
|
|
use common\models\Account;
|
|
use tests\codeception\api\unit\TestCase;
|
|
use Yii;
|
|
|
|
class LoginFormTest extends TestCase {
|
|
use Specify;
|
|
|
|
public function testValidateLogin() {
|
|
$this->specify('error.login_not_exist if login not exists', function () {
|
|
$model = $this->createModel([
|
|
'login' => 'mr-test',
|
|
'account' => null,
|
|
]);
|
|
$model->validateLogin('login');
|
|
expect($model->getErrors('login'))->equals(['error.login_not_exist']);
|
|
});
|
|
|
|
$this->specify('no errors if login exists', function () {
|
|
$model = $this->createModel([
|
|
'login' => 'mr-test',
|
|
'account' => new Account(),
|
|
]);
|
|
$model->validateLogin('login');
|
|
expect($model->getErrors('login'))->isEmpty();
|
|
});
|
|
}
|
|
|
|
public function testValidatePassword() {
|
|
$this->specify('error.password_incorrect if password invalid', function () {
|
|
$model = $this->createModel([
|
|
'password' => '87654321',
|
|
'account' => new Account(['password' => '12345678']),
|
|
]);
|
|
$model->validatePassword('password');
|
|
expect($model->getErrors('password'))->equals(['error.password_incorrect']);
|
|
});
|
|
|
|
$this->specify('no errors if password valid', function () {
|
|
$model = $this->createModel([
|
|
'password' => '12345678',
|
|
'account' => new Account(['password' => '12345678']),
|
|
]);
|
|
$model->validatePassword('password');
|
|
expect($model->getErrors('password'))->isEmpty();
|
|
});
|
|
}
|
|
|
|
public function testValidateActivity() {
|
|
$this->specify('error.account_not_activated if account in not activated state', function () {
|
|
$model = $this->createModel([
|
|
'account' => new Account(['status' => Account::STATUS_REGISTERED]),
|
|
]);
|
|
$model->validateActivity('login');
|
|
expect($model->getErrors('login'))->equals(['error.account_not_activated']);
|
|
});
|
|
|
|
$this->specify('no errors if account active', function () {
|
|
$model = $this->createModel([
|
|
'account' => new Account(['status' => Account::STATUS_ACTIVE]),
|
|
]);
|
|
$model->validateActivity('login');
|
|
expect($model->getErrors('login'))->isEmpty();
|
|
});
|
|
}
|
|
|
|
public function testLogin() {
|
|
$this->specify('user should be able to login with correct username and password', function () {
|
|
$model = $this->createModel([
|
|
'login' => 'erickskrauch',
|
|
'password' => '12345678',
|
|
'account' => new Account([
|
|
'username' => 'erickskrauch',
|
|
'password' => '12345678',
|
|
'status' => Account::STATUS_ACTIVE,
|
|
]),
|
|
]);
|
|
expect('model should login user', $model->login())->notEquals(false);
|
|
expect('error message should not be set', $model->errors)->isEmpty();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param array $params
|
|
* @return LoginForm
|
|
*/
|
|
private function createModel(array $params = []) {
|
|
return new class($params) extends LoginForm {
|
|
private $_account;
|
|
|
|
public function setAccount($value) {
|
|
$this->_account = $value;
|
|
}
|
|
|
|
public function getAccount() {
|
|
return $this->_account;
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|