2017-11-27 04:59:15 +05:30
|
|
|
<?php
|
2019-02-21 01:28:52 +05:30
|
|
|
namespace common\tests\unit\tasks;
|
2017-11-27 04:59:15 +05:30
|
|
|
|
|
|
|
use common\models\Account;
|
|
|
|
use common\models\confirmations\CurrentEmailConfirmation;
|
|
|
|
use common\tasks\SendCurrentEmailConfirmation;
|
2019-02-21 01:28:52 +05:30
|
|
|
use common\tests\unit\TestCase;
|
2017-11-27 04:59:15 +05:30
|
|
|
use yii\queue\Queue;
|
|
|
|
|
|
|
|
class SendCurrentEmailConfirmationTest extends TestCase {
|
|
|
|
|
|
|
|
public function testCreateFromConfirmation() {
|
|
|
|
$account = new Account();
|
|
|
|
$account->username = 'mock-username';
|
|
|
|
$account->email = 'mock@ely.by';
|
|
|
|
$account->lang = 'id';
|
|
|
|
|
|
|
|
/** @var \Mockery\Mock|CurrentEmailConfirmation $confirmation */
|
|
|
|
$confirmation = mock(CurrentEmailConfirmation::class)->makePartial();
|
|
|
|
$confirmation->key = 'ABCDEFG';
|
|
|
|
$confirmation->shouldReceive('getAccount')->andReturn($account);
|
|
|
|
|
|
|
|
$result = SendCurrentEmailConfirmation::createFromConfirmation($confirmation);
|
|
|
|
$this->assertInstanceOf(SendCurrentEmailConfirmation::class, $result);
|
|
|
|
$this->assertSame('mock-username', $result->username);
|
|
|
|
$this->assertSame('mock@ely.by', $result->email);
|
|
|
|
$this->assertSame('ABCDEFG', $result->code);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testExecute() {
|
|
|
|
$task = new SendCurrentEmailConfirmation();
|
|
|
|
$task->username = 'mock-username';
|
|
|
|
$task->email = 'mock@ely.by';
|
|
|
|
$task->code = 'GFEDCBA';
|
|
|
|
|
|
|
|
$task->execute(mock(Queue::class));
|
|
|
|
|
|
|
|
$this->tester->canSeeEmailIsSent(1);
|
|
|
|
/** @var \yii\swiftmailer\Message $email */
|
|
|
|
$email = $this->tester->grabSentEmails()[0];
|
|
|
|
$this->assertSame(['mock@ely.by' => 'mock-username'], $email->getTo());
|
|
|
|
$this->assertSame('Ely.by Account change E-mail confirmation', $email->getSubject());
|
|
|
|
$children = $email->getSwiftMessage()->getChildren()[0];
|
2019-08-02 18:27:17 +05:30
|
|
|
$this->assertStringContainsString('GFEDCBA', $children->getBody());
|
2017-11-27 04:59:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
}
|