mirror of
https://github.com/elyby/accounts.git
synced 2024-11-19 19:53:08 +05:30
a8c7118e38
Исправлен баг в форме ChangeUsernameForm Исправлен баг с конфигурацией тестов, который не позволял правильно проводить проверки на существование\несуществование моделей Добавлена поддержка передачи хоста Redis через env переменные в тестах
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<?php
|
|
namespace tests\codeception\api\models\authentication;
|
|
|
|
use api\components\User\LoginResult;
|
|
use api\models\authentication\ConfirmEmailForm;
|
|
use common\models\Account;
|
|
use common\models\AccountSession;
|
|
use common\models\EmailActivation;
|
|
use tests\codeception\api\unit\TestCase;
|
|
use tests\codeception\common\fixtures\EmailActivationFixture;
|
|
|
|
class ConfirmEmailFormTest extends TestCase {
|
|
|
|
public function _fixtures() {
|
|
return [
|
|
'emailActivations' => EmailActivationFixture::class,
|
|
];
|
|
}
|
|
|
|
public function testConfirm() {
|
|
$fixture = $this->tester->grabFixture('emailActivations', 'freshRegistrationConfirmation');
|
|
$model = $this->createModel($fixture['key']);
|
|
$result = $model->confirm();
|
|
$this->assertInstanceOf(LoginResult::class, $result);
|
|
$this->assertInstanceOf(AccountSession::class, $result->getSession(), 'session was generated');
|
|
$activationExists = EmailActivation::find()->andWhere(['key' => $fixture['key']])->exists();
|
|
$this->assertFalse($activationExists, 'email activation key is not exist');
|
|
/** @var Account $account */
|
|
$account = Account::findOne($fixture['account_id']);
|
|
$this->assertEquals(Account::STATUS_ACTIVE, $account->status, 'user status changed to active');
|
|
|
|
$message = $this->tester->grabLastSentAmqpMessage('events');
|
|
$body = json_decode($message->getBody(), true);
|
|
$this->assertEquals($account->id, $body['accountId']);
|
|
$this->assertEquals($account->username, $body['newUsername']);
|
|
$this->assertNull($body['oldUsername']);
|
|
}
|
|
|
|
private function createModel($key) {
|
|
return new ConfirmEmailForm([
|
|
'key' => $key,
|
|
]);
|
|
}
|
|
|
|
}
|