Отрефакторены тесты для форм

This commit is contained in:
ErickSkrauch 2016-03-20 23:33:09 +03:00
parent ddb5fd813c
commit b277f48785
6 changed files with 137 additions and 124 deletions

View File

@ -2,12 +2,12 @@
namespace api\models; namespace api\models;
use api\models\base\ApiForm; use api\models\base\ApiForm;
use api\models\base\PasswordProtectedForm;
use common\models\Account; use common\models\Account;
use Yii; use Yii;
use yii\helpers\ArrayHelper;
class ChangePasswordForm extends ApiForm { class ChangePasswordForm extends PasswordProtectedForm {
public $password;
public $newPassword; public $newPassword;
@ -18,33 +18,16 @@ class ChangePasswordForm extends ApiForm {
*/ */
private $_account; private $_account;
/**
* @param Account $account
* @param array $config
*/
public function __construct(Account $account, array $config = []) {
$this->_account = $account;
parent::__construct($config);
}
/** /**
* @inheritdoc * @inheritdoc
*/ */
public function rules() { public function rules() {
return [ return ArrayHelper::merge(parent::rules(), [
['password', 'required', 'message' => 'error.password_required'],
['newPassword', 'required', 'message' => 'error.newPassword_required'], ['newPassword', 'required', 'message' => 'error.newPassword_required'],
['newRePassword', 'required', 'message' => 'error.newRePassword_required'], ['newRePassword', 'required', 'message' => 'error.newRePassword_required'],
['password', 'validatePassword'],
['newPassword', 'string', 'min' => 8, 'tooShort' => 'error.password_too_short'], ['newPassword', 'string', 'min' => 8, 'tooShort' => 'error.password_too_short'],
['newRePassword', 'validatePasswordAndRePasswordMatch'], ['newRePassword', 'validatePasswordAndRePasswordMatch'],
]; ]);
}
public function validatePassword($attribute) {
if (!$this->hasErrors() && !$this->_account->validatePassword($this->$attribute)) {
$this->addError($attribute, 'error.' . $attribute . '_incorrect');
}
} }
public function validatePasswordAndRePasswordMatch($attribute) { public function validatePasswordAndRePasswordMatch($attribute) {
@ -69,4 +52,17 @@ class ChangePasswordForm extends ApiForm {
return $account->save(); return $account->save();
} }
protected function getAccount() {
return $this->_account;
}
/**
* @param Account $account
* @param array $config
*/
public function __construct(Account $account, array $config = []) {
$this->_account = $account;
parent::__construct($config);
}
} }

View File

@ -71,11 +71,14 @@ class LoginForm extends ApiForm {
*/ */
public function getAccount() { public function getAccount() {
if ($this->_account === NULL) { if ($this->_account === NULL) {
$attribute = strpos($this->login, '@') ? 'email' : 'username'; $this->_account = Account::findOne([$this->getLoginAttribute() => $this->login]);
$this->_account = Account::findOne([$attribute => $this->login]);
} }
return $this->_account; return $this->_account;
} }
public function getLoginAttribute() {
return strpos($this->login, '@') ? 'email' : 'username';
}
} }

View File

@ -23,57 +23,29 @@ class ChangePasswordFormTest extends DbTestCase {
]; ];
} }
public function testChangePasswordErrors() { public function testValidatePasswordAndRePasswordMatch() {
/** @var Account $account */ $this->specify('error.newRePassword_does_not_match expected if passwords not match', function() {
$account = Account::findOne($this->accounts['admin']['id']); $account = new Account();
$model = new ChangePasswordForm($account); $account->setPassword('12345678');
$this->specify('expected error.{field}_required if we don\'t pass some fields', function() use ($model, $account) { $model = new ChangePasswordForm($account, [
expect('form should return false', $model->changePassword())->false(); 'password' => '12345678',
expect('form should contain errors', $model->getErrors())->equals([ 'newPassword' => 'my-new-password',
'password' => ['error.password_required'], 'newRePassword' => 'another-password',
'newPassword' => ['error.newPassword_required'],
'newRePassword' => ['error.newRePassword_required'],
]); ]);
expect('password not changed', $account->validatePassword('password_0'))->true(); $model->validatePasswordAndRePasswordMatch('newRePassword');
expect($model->getErrors('newRePassword'))->equals(['error.newRePassword_does_not_match']);
}); });
$model = new ChangePasswordForm($account, [ $this->specify('no errors expected if passwords are valid', function() {
'password' => 'this-is-wrong-password', $account = new Account();
'newPassword' => 'my-new-password', $account->setPassword('12345678');
'newRePassword' => 'my-new-password', $model = new ChangePasswordForm($account, [
]); 'password' => '12345678',
$this->specify('expected error.password_incorrect if we pass invalid current account password', function() use ($model, $account) { 'newPassword' => 'my-new-password',
expect('form should return false', $model->changePassword())->false(); 'newRePassword' => 'my-new-password',
expect('form should contain errors', $model->getErrors())->equals([
'password' => ['error.password_incorrect'],
]); ]);
expect('password not changed', $account->validatePassword('password_0'))->true(); $model->validatePasswordAndRePasswordMatch('newRePassword');
}); expect($model->getErrors('newRePassword'))->isEmpty();
$model = new ChangePasswordForm($account, [
'password' => 'password_0',
'newPassword' => 'short',
'newRePassword' => 'short',
]);
$this->specify('expected error.password_too_short if we pass short password', function() use ($model, $account) {
expect('form should return false', $model->changePassword())->false();
expect('form should contain errors', $model->getErrors())->equals([
'newPassword' => ['error.password_too_short'],
]);
expect('password not changed', $account->validatePassword('password_0'))->true();
});
$model = new ChangePasswordForm($account, [
'password' => 'password_0',
'newPassword' => 'first-valid-pass',
'newRePassword' => 'another-valid-pass',
]);
$this->specify('expected error.newRePassword_does_not_match if we passwords mismatch', function() use ($model, $account) {
expect('form should return false', $model->changePassword())->false();
expect('form should contain errors', $model->getErrors())->equals([
'newRePassword' => ['error.newRePassword_does_not_match'],
]);
expect('password not changed', $account->validatePassword('password_0'))->true();
}); });
} }
@ -88,7 +60,6 @@ class ChangePasswordFormTest extends DbTestCase {
$this->specify('successfully change password with modern hash strategy', function() use ($model, $account) { $this->specify('successfully change password with modern hash strategy', function() use ($model, $account) {
expect('form should return true', $model->changePassword())->true(); expect('form should return true', $model->changePassword())->true();
expect('new password should be successfully stored into account', $account->validatePassword('my-new-password'))->true(); expect('new password should be successfully stored into account', $account->validatePassword('my-new-password'))->true();
expect('always use new strategy', $account->password_hash_strategy)->equals(Account::PASS_HASH_STRATEGY_YII2);
}); });
/** @var Account $account */ /** @var Account $account */
@ -101,7 +72,6 @@ class ChangePasswordFormTest extends DbTestCase {
$this->specify('successfully change password with legacy hash strategy', function() use ($model, $account) { $this->specify('successfully change password with legacy hash strategy', function() use ($model, $account) {
expect('form should return true', $model->changePassword())->true(); expect('form should return true', $model->changePassword())->true();
expect('new password should be successfully stored into account', $account->validatePassword('my-new-password'))->true(); expect('new password should be successfully stored into account', $account->validatePassword('my-new-password'))->true();
expect('strategy should be changed to modern', $account->password_hash_strategy)->equals(Account::PASS_HASH_STRATEGY_YII2);
}); });
} }

View File

@ -30,12 +30,13 @@ class ConfirmEmailFormTest extends DbTestCase {
]); ]);
} }
public function testValidInput() { public function testConfirm() {
$fixture = $this->emailActivations[0]; $fixture = $this->emailActivations[0];
$model = $this->createModel($fixture['key']); $model = $this->createModel($fixture['key']);
$this->specify('expect true result', function() use ($model, $fixture) { $this->specify('expect true result', function() use ($model, $fixture) {
expect('model return successful result', $model->confirm())->notEquals(false); expect('model return successful result', $model->confirm())->notEquals(false);
expect('email activation key is not exist', EmailActivation::find()->andWhere(['key' => $fixture['key']])->exists())->false(); $activationExists = EmailActivation::find()->andWhere(['key' => $fixture['key']])->exists();
expect('email activation key is not exist', $activationExists)->false();
/** @var Account $user */ /** @var Account $user */
$user = Account::findOne($fixture['account_id']); $user = Account::findOne($fixture['account_id']);
expect('user status changed to active', $user->status)->equals(Account::STATUS_ACTIVE); expect('user status changed to active', $user->status)->equals(Account::STATUS_ACTIVE);

View File

@ -3,69 +3,111 @@ namespace tests\codeception\api\models;
use api\models\LoginForm; use api\models\LoginForm;
use Codeception\Specify; use Codeception\Specify;
use common\models\Account;
use tests\codeception\api\unit\DbTestCase; use tests\codeception\api\unit\DbTestCase;
use tests\codeception\common\fixtures\AccountFixture;
use Yii; use Yii;
/**
* @property array $accounts
*/
class LoginFormTest extends DbTestCase { class LoginFormTest extends DbTestCase {
use Specify; use Specify;
protected function tearDown() { public function testValidateLogin() {
Yii::$app->user->logout(); $this->specify('error.login_not_exist if login not exists', function() {
parent::tearDown(); $model = new DummyLoginForm([
} 'login' => 'mr-test',
'account' => null,
public function fixtures() {
return [
'accounts' => [
'class' => AccountFixture::class,
'dataFile' => '@tests/codeception/common/fixtures/data/accounts.php',
],
];
}
protected function createModel($login = '', $password = '') {
return new LoginForm([
'login' => $login,
'password' => $password,
]);
}
public function testIncorrectLogin() {
$model = $this->createModel('not-esist-login', 'fully-invalid-password');
$this->specify('get errors and don\'t log in into account with wrong credentials', function () use ($model) {
expect('model should not login user', $model->login())->false();
expect('error messages should be set', $model->errors)->notEmpty();
});
$model = $this->createModel($this->accounts['not-activated-account']['username'], 'password_0');
$this->specify('get error if account data valid, but account is not activated', function () use ($model) {
expect('model should not login user', $model->login())->false();
expect('error messages should be set', $model->errors)->equals([
'login' => [
'error.account_not_activated',
],
]); ]);
$model->validateLogin('login');
expect($model->getErrors('login'))->equals(['error.login_not_exist']);
});
$this->specify('no errors if login exists', function() {
$model = new DummyLoginForm([
'login' => 'mr-test',
'account' => new Account(),
]);
$model->validateLogin('login');
expect($model->getErrors('login'))->isEmpty();
}); });
} }
public function testLoginByUsernameCorrect() { public function testValidatePassword() {
$model = $this->createModel($this->accounts['admin']['username'], 'password_0'); $this->specify('error.password_incorrect if password invalid', function() {
$this->specify('user should be able to login with correct username and password', function () use ($model) { $model = new DummyLoginForm([
'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 = new DummyLoginForm([
'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 = new DummyLoginForm([
'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 = new DummyLoginForm([
'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 = new DummyLoginForm([
'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('model should login user', $model->login())->notEquals(false);
expect('error message should not be set', $model->errors)->isEmpty(); expect('error message should not be set', $model->errors)->isEmpty();
}); });
} }
public function testLoginByEmailCorrect() { public function testGetLoginAttribute() {
$model = $this->createModel($this->accounts['admin']['email'], 'password_0'); $this->specify('email if login look like email value', function() {
$this->specify('user should be able to login with correct email and password', function () use ($model) { $model = new DummyLoginForm(['login' => 'erickskrauch@ely.by']);
expect('model should login user', $model->login())->notEquals(false); expect($model->getLoginAttribute())->equals('email');
expect('error message should not be set', $model->errors)->isEmpty(); });
$this->specify('username in any other case', function() {
$model = new DummyLoginForm(['login' => 'erickskrauch']);
expect($model->getLoginAttribute())->equals('username');
}); });
} }
} }
class DummyLoginForm extends LoginForm {
private $_account;
public function setAccount($value) {
$this->_account = $value;
}
public function getAccount() {
return $this->_account;
}
}

View File

@ -2,6 +2,7 @@
namespace tests\codeception\common\_support; namespace tests\codeception\common\_support;
use Codeception\Module; use Codeception\Module;
use Codeception\TestCase;
use tests\codeception\common\fixtures\AccountFixture; use tests\codeception\common\fixtures\AccountFixture;
use tests\codeception\common\fixtures\EmailActivationFixture; use tests\codeception\common\fixtures\EmailActivationFixture;
use tests\codeception\common\fixtures\OauthClientFixture; use tests\codeception\common\fixtures\OauthClientFixture;
@ -29,11 +30,11 @@ class FixtureHelper extends Module {
getFixture as protected; getFixture as protected;
} }
public function _beforeSuite($settings = []) { public function _before(TestCase $test) {
$this->loadFixtures(); $this->loadFixtures();
} }
public function _afterSuite() { public function _after(TestCase $test) {
$this->unloadFixtures(); $this->unloadFixtures();
} }