2016-07-25 16:37:14 +05:30
|
|
|
<?php
|
|
|
|
namespace codeception\api\unit\validators;
|
|
|
|
|
2019-02-23 04:41:57 +05:30
|
|
|
use api\tests\unit\TestCase;
|
2016-07-25 16:37:14 +05:30
|
|
|
use api\validators\PasswordRequiredValidator;
|
2018-04-18 02:17:25 +05:30
|
|
|
use common\helpers\Error as E;
|
2016-07-25 16:37:14 +05:30
|
|
|
use common\models\Account;
|
2017-09-30 03:14:05 +05:30
|
|
|
use common\rbac\Permissions as P;
|
2019-02-21 01:28:52 +05:30
|
|
|
use common\tests\_support\ProtectedCaller;
|
2017-09-30 03:14:05 +05:30
|
|
|
use yii\web\User;
|
2016-07-25 16:37:14 +05:30
|
|
|
|
2016-10-29 03:17:31 +05:30
|
|
|
class PasswordRequiredValidatorTest extends TestCase {
|
2016-07-25 16:37:14 +05:30
|
|
|
use ProtectedCaller;
|
|
|
|
|
|
|
|
public function testValidateValue() {
|
|
|
|
$account = new Account(['password' => '12345678']);
|
2017-09-30 03:14:05 +05:30
|
|
|
$model = new PasswordRequiredValidator(['account' => $account]);
|
|
|
|
|
|
|
|
// Get error.password_required if password is empty
|
|
|
|
$this->assertEquals([E::PASSWORD_REQUIRED, []], $this->callProtected($model, 'validateValue', ''));
|
|
|
|
|
|
|
|
// Get error.password_incorrect if password is incorrect
|
|
|
|
$this->assertEquals([E::PASSWORD_INCORRECT, []], $this->callProtected($model, 'validateValue', '87654321'));
|
|
|
|
|
|
|
|
// No errors, if password is correct for provided account
|
|
|
|
$this->assertNull($this->callProtected($model, 'validateValue', '12345678'));
|
|
|
|
|
|
|
|
// Skip validation if user can skip identity verification
|
|
|
|
/** @var User|\Mockery\MockInterface $component */
|
|
|
|
$component = mock(User::class . '[can]', [['identityClass' => '']]);
|
|
|
|
$component->shouldReceive('can')->withArgs([P::ESCAPE_IDENTITY_VERIFICATION])->andReturn(true);
|
|
|
|
$model->user = $component;
|
|
|
|
$this->assertNull($this->callProtected($model, 'validateValue', ''));
|
2016-07-25 16:37:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
}
|