mirror of
https://github.com/elyby/accounts.git
synced 2024-12-02 03:31:05 +05:30
Добавлена поддержка запоминания языка для аккаунта
Обновлена минимальная версия Yii2 Удалено немного хлама от Yii2 Advanced Исправлены некоторые тесты
This commit is contained in:
parent
65382fa1ce
commit
ecd92b8fda
@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
# vendor будет заполнен уже внутри контейнера
|
# vendor будет заполнен уже внутри контейнера
|
||||||
vendor
|
vendor
|
||||||
# frontend и его node_modules внутри контейнера не нужны
|
# node_modules для этого контейнера не нужны
|
||||||
frontend
|
node_modules
|
||||||
|
|
||||||
# Все -local файлы
|
# Все -local файлы
|
||||||
*/config/*-local.php
|
*/config/*-local.php
|
||||||
|
@ -52,6 +52,7 @@ class AccountsController extends Controller {
|
|||||||
'uuid' => $account->uuid,
|
'uuid' => $account->uuid,
|
||||||
'username' => $account->username,
|
'username' => $account->username,
|
||||||
'email' => $account->email,
|
'email' => $account->email,
|
||||||
|
'lang' => $account->lang,
|
||||||
'shouldChangePassword' => $account->password_hash_strategy === Account::PASS_HASH_STRATEGY_OLD_ELY,
|
'shouldChangePassword' => $account->password_hash_strategy === Account::PASS_HASH_STRATEGY_OLD_ELY,
|
||||||
'isActive' => $account->status === Account::STATUS_ACTIVE,
|
'isActive' => $account->status === Account::STATUS_ACTIVE,
|
||||||
'passwordChangedAt' => $account->password_changed_at,
|
'passwordChangedAt' => $account->password_changed_at,
|
||||||
|
@ -1,60 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace api\models;
|
|
||||||
|
|
||||||
use common\models\Account;
|
|
||||||
use yii\base\Model;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Password reset request form
|
|
||||||
*/
|
|
||||||
class PasswordResetRequestForm extends Model
|
|
||||||
{
|
|
||||||
public $email;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
public function rules()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
['email', 'filter', 'filter' => 'trim'],
|
|
||||||
['email', 'required'],
|
|
||||||
['email', 'email'],
|
|
||||||
['email', 'exist',
|
|
||||||
'targetClass' => '\common\models\User',
|
|
||||||
'filter' => ['status' => Account::STATUS_ACTIVE],
|
|
||||||
'message' => 'There is no user with such email.'
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends an email with a link, for resetting the password.
|
|
||||||
*
|
|
||||||
* @return boolean whether the email was send
|
|
||||||
*/
|
|
||||||
public function sendEmail()
|
|
||||||
{
|
|
||||||
/* @var $user Account */
|
|
||||||
$user = Account::findOne([
|
|
||||||
'status' => Account::STATUS_ACTIVE,
|
|
||||||
'email' => $this->email,
|
|
||||||
]);
|
|
||||||
|
|
||||||
if ($user) {
|
|
||||||
if (!Account::isPasswordResetTokenValid($user->password_reset_token)) {
|
|
||||||
$user->generatePasswordResetToken();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($user->save()) {
|
|
||||||
return \Yii::$app->mailer->compose(['html' => 'passwordResetToken-html', 'text' => 'passwordResetToken-text'], ['user' => $user])
|
|
||||||
->setFrom([\Yii::$app->params['supportEmail'] => \Yii::$app->name . ' robot'])
|
|
||||||
->setTo($this->email)
|
|
||||||
->setSubject('Password reset for ' . \Yii::$app->name)
|
|
||||||
->send();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
@ -7,6 +7,7 @@ use common\components\UserFriendlyRandomKey;
|
|||||||
use common\models\Account;
|
use common\models\Account;
|
||||||
use common\models\confirmations\RegistrationConfirmation;
|
use common\models\confirmations\RegistrationConfirmation;
|
||||||
use common\models\EmailActivation;
|
use common\models\EmailActivation;
|
||||||
|
use common\validators\LanguageValidator;
|
||||||
use common\validators\PasswordValidate;
|
use common\validators\PasswordValidate;
|
||||||
use Ramsey\Uuid\Uuid;
|
use Ramsey\Uuid\Uuid;
|
||||||
use Yii;
|
use Yii;
|
||||||
@ -20,6 +21,7 @@ class RegistrationForm extends ApiForm {
|
|||||||
public $password;
|
public $password;
|
||||||
public $rePassword;
|
public $rePassword;
|
||||||
public $rulesAgreement;
|
public $rulesAgreement;
|
||||||
|
public $lang;
|
||||||
|
|
||||||
public function rules() {
|
public function rules() {
|
||||||
return [
|
return [
|
||||||
@ -33,6 +35,8 @@ class RegistrationForm extends ApiForm {
|
|||||||
['rePassword', 'required', 'message' => 'error.rePassword_required'],
|
['rePassword', 'required', 'message' => 'error.rePassword_required'],
|
||||||
['password', PasswordValidate::class],
|
['password', PasswordValidate::class],
|
||||||
['rePassword', 'validatePasswordAndRePasswordMatch'],
|
['rePassword', 'validatePasswordAndRePasswordMatch'],
|
||||||
|
|
||||||
|
['lang', LanguageValidator::class],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,6 +79,7 @@ class RegistrationForm extends ApiForm {
|
|||||||
$account->email = $this->email;
|
$account->email = $this->email;
|
||||||
$account->username = $this->username;
|
$account->username = $this->username;
|
||||||
$account->password = $this->password;
|
$account->password = $this->password;
|
||||||
|
$account->lang = $this->lang;
|
||||||
$account->status = Account::STATUS_REGISTERED;
|
$account->status = Account::STATUS_REGISTERED;
|
||||||
if (!$account->save()) {
|
if (!$account->save()) {
|
||||||
throw new ErrorException('Account not created.');
|
throw new ErrorException('Account not created.');
|
||||||
|
@ -2,3 +2,4 @@
|
|||||||
Yii::setAlias('common', dirname(__DIR__));
|
Yii::setAlias('common', dirname(__DIR__));
|
||||||
Yii::setAlias('api', dirname(dirname(__DIR__)) . '/api');
|
Yii::setAlias('api', dirname(dirname(__DIR__)) . '/api');
|
||||||
Yii::setAlias('console', dirname(dirname(__DIR__)) . '/console');
|
Yii::setAlias('console', dirname(dirname(__DIR__)) . '/console');
|
||||||
|
Yii::setAlias('frontend', dirname(dirname(__DIR__)) . '/frontend');
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
<?php
|
|
||||||
use yii\helpers\Html;
|
|
||||||
|
|
||||||
/* @var $this yii\web\View */
|
|
||||||
/* @var $user common\models\Account */
|
|
||||||
|
|
||||||
$resetLink = Yii::$app->urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]);
|
|
||||||
?>
|
|
||||||
<div class="password-reset">
|
|
||||||
<p>Hello <?= Html::encode($user->email) ?>,</p>
|
|
||||||
|
|
||||||
<p>Follow the link below to reset your password:</p>
|
|
||||||
|
|
||||||
<p><?= Html::a(Html::encode($resetLink), $resetLink) ?></p>
|
|
||||||
</div>
|
|
@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/* @var $this yii\web\View */
|
|
||||||
/* @var $user common\models\Account */
|
|
||||||
|
|
||||||
$resetLink = Yii::$app->urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]);
|
|
||||||
?>
|
|
||||||
Hello <?= $user->email ?>,
|
|
||||||
|
|
||||||
Follow the link below to reset your password:
|
|
||||||
|
|
||||||
<?= $resetLink ?>
|
|
@ -2,6 +2,7 @@
|
|||||||
namespace common\models;
|
namespace common\models;
|
||||||
|
|
||||||
use common\components\UserPass;
|
use common\components\UserPass;
|
||||||
|
use common\validators\LanguageValidator;
|
||||||
use damirka\JWT\UserTrait as UserJWTTrait;
|
use damirka\JWT\UserTrait as UserJWTTrait;
|
||||||
use Ely\Yii2\TempmailValidator;
|
use Ely\Yii2\TempmailValidator;
|
||||||
use Yii;
|
use Yii;
|
||||||
@ -17,7 +18,7 @@ use yii\db\ActiveRecord;
|
|||||||
* @property string $email
|
* @property string $email
|
||||||
* @property string $password_hash
|
* @property string $password_hash
|
||||||
* @property integer $password_hash_strategy
|
* @property integer $password_hash_strategy
|
||||||
* @property string $password_reset_token
|
* @property string $lang
|
||||||
* @property integer $status
|
* @property integer $status
|
||||||
* @property integer $created_at
|
* @property integer $created_at
|
||||||
* @property integer $updated_at
|
* @property integer $updated_at
|
||||||
@ -73,6 +74,9 @@ class Account extends ActiveRecord {
|
|||||||
[['email'], 'email', 'checkDNS' => true, 'enableIDN' => true, 'message' => 'error.email_invalid'],
|
[['email'], 'email', 'checkDNS' => true, 'enableIDN' => true, 'message' => 'error.email_invalid'],
|
||||||
[['email'], TempmailValidator::class, 'message' => 'error.email_is_tempmail'],
|
[['email'], TempmailValidator::class, 'message' => 'error.email_is_tempmail'],
|
||||||
[['email'], 'unique', 'message' => 'error.email_not_available'],
|
[['email'], 'unique', 'message' => 'error.email_not_available'],
|
||||||
|
|
||||||
|
[['lang'], LanguageValidator::class],
|
||||||
|
[['lang'], 'default', 'value' => 'en'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
38
common/validators/LanguageValidator.php
Normal file
38
common/validators/LanguageValidator.php
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\validators;
|
||||||
|
|
||||||
|
use Yii;
|
||||||
|
use yii\validators\Validator;
|
||||||
|
|
||||||
|
class LanguageValidator extends Validator {
|
||||||
|
|
||||||
|
public $message = 'error.unsupported_language';
|
||||||
|
|
||||||
|
protected function validateValue($value) {
|
||||||
|
if (empty($value)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$files = $this->getFilesNames();
|
||||||
|
if (in_array($value, $files)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [$this->message, []];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getFilesNames() {
|
||||||
|
$files = array_values(array_filter(scandir($this->getFolderPath()), function(&$value) {
|
||||||
|
return $value !== '..' && $value !== '.';
|
||||||
|
}));
|
||||||
|
|
||||||
|
return array_map(function($value) {
|
||||||
|
return basename($value, '.json');
|
||||||
|
}, $files);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getFolderPath() {
|
||||||
|
return Yii::getAlias('@frontend/src/i18n');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -15,7 +15,7 @@
|
|||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.0.6",
|
"php": "~7.0.6",
|
||||||
"yiisoft/yii2": "~2.0.6",
|
"yiisoft/yii2": "~2.0.8",
|
||||||
"yiisoft/yii2-bootstrap": "*",
|
"yiisoft/yii2-bootstrap": "*",
|
||||||
"yiisoft/yii2-swiftmailer": "*",
|
"yiisoft/yii2-swiftmailer": "*",
|
||||||
"ramsey/uuid": "~3.1",
|
"ramsey/uuid": "~3.1",
|
||||||
|
17
console/migrations/m160512_194546_account_language.php
Normal file
17
console/migrations/m160512_194546_account_language.php
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use console\db\Migration;
|
||||||
|
|
||||||
|
class m160512_194546_account_language extends Migration {
|
||||||
|
|
||||||
|
public function safeUp() {
|
||||||
|
$this->addColumn('{{%accounts}}', 'lang', $this->string(5)->notNull()->defaultValue('en')->after('password_hash_strategy'));
|
||||||
|
$this->dropColumn('{{%accounts}}', 'password_reset_token');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function safeDown() {
|
||||||
|
$this->dropColumn('{{%accounts}}', 'lang');
|
||||||
|
$this->addColumn('{{%accounts}}', 'password_reset_token', $this->string()->unique());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -26,8 +26,12 @@ class AccountsCurrentCest {
|
|||||||
'id' => 1,
|
'id' => 1,
|
||||||
'username' => 'Admin',
|
'username' => 'Admin',
|
||||||
'email' => 'admin@ely.by',
|
'email' => 'admin@ely.by',
|
||||||
|
'lang' => 'en',
|
||||||
'shouldChangePassword' => false,
|
'shouldChangePassword' => false,
|
||||||
|
'isActive' => true,
|
||||||
|
'hasMojangUsernameCollision' => false,
|
||||||
]);
|
]);
|
||||||
|
$I->canSeeResponseJsonMatchesJsonPath('$.passwordChangedAt');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -214,6 +214,7 @@ class RegisterCest {
|
|||||||
'password' => 'some_password',
|
'password' => 'some_password',
|
||||||
'rePassword' => 'some_password',
|
'rePassword' => 'some_password',
|
||||||
'rulesAgreement' => true,
|
'rulesAgreement' => true,
|
||||||
|
'lang' => 'ru',
|
||||||
]);
|
]);
|
||||||
$I->canSeeResponseCodeIs(200);
|
$I->canSeeResponseCodeIs(200);
|
||||||
$I->canSeeResponseIsJson();
|
$I->canSeeResponseIsJson();
|
||||||
|
@ -85,9 +85,10 @@ class ChangePasswordFormTest extends DbTestCase {
|
|||||||
'newRePassword' => 'my-new-password',
|
'newRePassword' => 'my-new-password',
|
||||||
]);
|
]);
|
||||||
$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) {
|
||||||
|
$callTime = time();
|
||||||
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('password change time updated', $account->password_changed_at)->greaterOrEquals(time() - 2);
|
expect('password change time updated', $account->password_changed_at)->greaterOrEquals($callTime);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,19 +68,43 @@ class RegistrationFormTest extends DbTestCase {
|
|||||||
'password' => 'some_password',
|
'password' => 'some_password',
|
||||||
'rePassword' => 'some_password',
|
'rePassword' => 'some_password',
|
||||||
'rulesAgreement' => true,
|
'rulesAgreement' => true,
|
||||||
|
'lang' => 'ru',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$user = $model->signup();
|
$account = $model->signup();
|
||||||
|
|
||||||
expect('user should be valid', $user)->isInstanceOf(Account::class);
|
$this->expectSuccessRegistration($account);
|
||||||
expect('password should be correct', $user->validatePassword('some_password'))->true();
|
expect('lang is set', $account->lang)->equals('ru');
|
||||||
expect('uuid is set', $user->uuid)->notEmpty();
|
}
|
||||||
|
|
||||||
|
public function testSignupWithDefaultLanguage() {
|
||||||
|
$model = new RegistrationForm([
|
||||||
|
'username' => 'some_username',
|
||||||
|
'email' => 'some_email@example.com',
|
||||||
|
'password' => 'some_password',
|
||||||
|
'rePassword' => 'some_password',
|
||||||
|
'rulesAgreement' => true,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$account = $model->signup();
|
||||||
|
|
||||||
|
$this->expectSuccessRegistration($account);
|
||||||
|
expect('lang is set', $account->lang)->equals('en');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Account|null $account
|
||||||
|
*/
|
||||||
|
private function expectSuccessRegistration($account) {
|
||||||
|
expect('user should be valid', $account)->isInstanceOf(Account::class);
|
||||||
|
expect('password should be correct', $account->validatePassword('some_password'))->true();
|
||||||
|
expect('uuid is set', $account->uuid)->notEmpty();
|
||||||
expect('user model exists in database', Account::find()->andWhere([
|
expect('user model exists in database', Account::find()->andWhere([
|
||||||
'username' => 'some_username',
|
'username' => 'some_username',
|
||||||
'email' => 'some_email@example.com',
|
'email' => 'some_email@example.com',
|
||||||
])->exists())->true();
|
])->exists())->true();
|
||||||
expect('email activation code exists in database', EmailActivation::find()->andWhere([
|
expect('email activation code exists in database', EmailActivation::find()->andWhere([
|
||||||
'account_id' => $user->id,
|
'account_id' => $account->id,
|
||||||
'type' => EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
'type' => EmailActivation::TYPE_REGISTRATION_EMAIL_CONFIRMATION,
|
||||||
])->exists())->true();
|
])->exists())->true();
|
||||||
expect_file('message file exists', $this->getMessageFile())->exists();
|
expect_file('message file exists', $this->getMessageFile())->exists();
|
||||||
|
@ -7,7 +7,7 @@ return [
|
|||||||
'email' => 'admin@ely.by',
|
'email' => 'admin@ely.by',
|
||||||
'password_hash' => '$2y$13$CXT0Rkle1EMJ/c1l5bylL.EylfmQ39O5JlHJVFpNn618OUS1HwaIi', # password_0
|
'password_hash' => '$2y$13$CXT0Rkle1EMJ/c1l5bylL.EylfmQ39O5JlHJVFpNn618OUS1HwaIi', # password_0
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_ACTIVE,
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
||||||
'created_at' => 1451775316,
|
'created_at' => 1451775316,
|
||||||
'updated_at' => 1451775316,
|
'updated_at' => 1451775316,
|
||||||
@ -20,7 +20,7 @@ return [
|
|||||||
'email' => 'erickskrauch123@yandex.ru',
|
'email' => 'erickskrauch123@yandex.ru',
|
||||||
'password_hash' => '133c00c463cbd3e491c28cb653ce4718', # 12345678
|
'password_hash' => '133c00c463cbd3e491c28cb653ce4718', # 12345678
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_OLD_ELY,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_OLD_ELY,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_ACTIVE,
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
||||||
'created_at' => 1385225069,
|
'created_at' => 1385225069,
|
||||||
'updated_at' => 1385225069,
|
'updated_at' => 1385225069,
|
||||||
@ -33,7 +33,7 @@ return [
|
|||||||
'email' => 'achristiansen@gmail.com',
|
'email' => 'achristiansen@gmail.com',
|
||||||
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_REGISTERED,
|
'status' => \common\models\Account::STATUS_REGISTERED,
|
||||||
'created_at' => 1453146616,
|
'created_at' => 1453146616,
|
||||||
'updated_at' => 1453146616,
|
'updated_at' => 1453146616,
|
||||||
@ -46,7 +46,7 @@ return [
|
|||||||
'email' => 'jon@ely.by',
|
'email' => 'jon@ely.by',
|
||||||
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_REGISTERED,
|
'status' => \common\models\Account::STATUS_REGISTERED,
|
||||||
'created_at' => 1457890086,
|
'created_at' => 1457890086,
|
||||||
'updated_at' => 1457890086,
|
'updated_at' => 1457890086,
|
||||||
@ -58,7 +58,7 @@ return [
|
|||||||
'email' => 'notch@mojang.com',
|
'email' => 'notch@mojang.com',
|
||||||
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_ACTIVE,
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
||||||
'created_at' => 1462891432,
|
'created_at' => 1462891432,
|
||||||
'updated_at' => 1462891432,
|
'updated_at' => 1462891432,
|
||||||
@ -70,7 +70,7 @@ return [
|
|||||||
'email' => '23derevo@gmail.com',
|
'email' => '23derevo@gmail.com',
|
||||||
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
'password_hash' => '$2y$13$2rYkap5T6jG8z/mMK8a3Ou6aZxJcmAaTha6FEuujvHEmybSHRzW5e', # password_0
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => null,
|
'lang' => 'en',
|
||||||
'status' => \common\models\Account::STATUS_ACTIVE,
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
||||||
'created_at' => 1462891612,
|
'created_at' => 1462891612,
|
||||||
'updated_at' => 1462891612,
|
'updated_at' => 1462891612,
|
||||||
|
@ -12,7 +12,7 @@ return [
|
|||||||
'email' => $faker->email,
|
'email' => $faker->email,
|
||||||
'password_hash' => $security->generatePasswordHash('password_' . $index),
|
'password_hash' => $security->generatePasswordHash('password_' . $index),
|
||||||
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
'password_hash_strategy' => \common\models\Account::PASS_HASH_STRATEGY_YII2,
|
||||||
'password_reset_token' => NULL,
|
'lang' => 'en',
|
||||||
'auth_key' => $security->generateRandomString(),
|
'auth_key' => $security->generateRandomString(),
|
||||||
'status' => \common\models\Account::STATUS_ACTIVE,
|
'status' => \common\models\Account::STATUS_ACTIVE,
|
||||||
'created_at' => time(),
|
'created_at' => time(),
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace tests\codeception\common\unit;
|
namespace tests\codeception\common\unit;
|
||||||
|
|
||||||
/**
|
class TestCase extends \yii\codeception\TestCase {
|
||||||
* @inheritdoc
|
|
||||||
*/
|
|
||||||
class TestCase extends \yii\codeception\TestCase
|
|
||||||
{
|
|
||||||
public $appConfig = '@tests/codeception/config/common/unit.php';
|
public $appConfig = '@tests/codeception/config/common/unit.php';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
3
tests/codeception/common/unit/fixtures/data/i18n/en.json
Normal file
3
tests/codeception/common/unit/fixtures/data/i18n/en.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"testString": "testValue"
|
||||||
|
}
|
3
tests/codeception/common/unit/fixtures/data/i18n/ru.json
Normal file
3
tests/codeception/common/unit/fixtures/data/i18n/ru.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"testString": "тестовоеЗначение"
|
||||||
|
}
|
@ -1,14 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
return [
|
|
||||||
[
|
|
||||||
'username' => 'bayer.hudson',
|
|
||||||
'auth_key' => 'HP187Mvq7Mmm3CTU80dLkGmni_FUH_lR',
|
|
||||||
//password_0
|
|
||||||
'password_hash' => '$2y$13$EjaPFBnZOQsHdGuHI.xvhuDp1fHpo8hKRSk6yshqa9c5EG8s3C3lO',
|
|
||||||
'password_reset_token' => 'ExzkCOaYc1L8IOBs4wdTGGbgNiG3Wz1I_1402312317',
|
|
||||||
'created_at' => '1402312317',
|
|
||||||
'updated_at' => '1402312317',
|
|
||||||
'email' => 'nicole.paucek@schultz.info',
|
|
||||||
],
|
|
||||||
];
|
|
@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
namespace codeception\common\unit\validators;
|
||||||
|
|
||||||
|
use Codeception\Specify;
|
||||||
|
use common\validators\LanguageValidator;
|
||||||
|
use ReflectionClass;
|
||||||
|
use tests\codeception\common\unit\TestCase;
|
||||||
|
|
||||||
|
class LanguageValidatorTest extends TestCase {
|
||||||
|
use Specify;
|
||||||
|
|
||||||
|
public function testGetFilesNames() {
|
||||||
|
$this->specify('get list of 2 languages: ru and en', function() {
|
||||||
|
$model = $this->createModelWithFixturePath();
|
||||||
|
expect($this->callProtected($model, 'getFilesNames'))->equals(['en', 'ru']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testValidateValue() {
|
||||||
|
$this->specify('get null, because language is supported', function() {
|
||||||
|
$model = $this->createModelWithFixturePath();
|
||||||
|
expect($this->callProtected($model, 'validateValue', 'ru'))->null();
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->specify('get error message, because language is unsupported', function() {
|
||||||
|
$model = $this->createModelWithFixturePath();
|
||||||
|
expect($this->callProtected($model, 'validateValue', 'by'))->equals([
|
||||||
|
$model->message,
|
||||||
|
[],
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return LanguageValidator
|
||||||
|
*/
|
||||||
|
private function createModelWithFixturePath() {
|
||||||
|
return new class extends LanguageValidator {
|
||||||
|
public function getFolderPath() {
|
||||||
|
return __DIR__ . '/../fixtures/data/i18n';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private function callProtected($object, string $function, ...$args) {
|
||||||
|
$class = new ReflectionClass($object);
|
||||||
|
$method = $class->getMethod($function);
|
||||||
|
$method->setAccessible(true);
|
||||||
|
|
||||||
|
return $method->invokeArgs($object, $args);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user