mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
Refactor emails models objects, rework related tests
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace common\tests\unit\emails\templates;
|
||||
|
||||
use common\emails\RendererInterface;
|
||||
use common\emails\templates\ForgotPasswordEmail;
|
||||
use common\emails\templates\ForgotPasswordParams;
|
||||
use common\tests\unit\TestCase;
|
||||
use yii\base\InvalidCallException;
|
||||
use yii\mail\MailerInterface;
|
||||
|
||||
class ForgotPasswordEmailTest extends TestCase {
|
||||
|
||||
/**
|
||||
* @var ForgotPasswordEmail|\PHPUnit\Framework\MockObject\MockObject
|
||||
*/
|
||||
private $template;
|
||||
|
||||
public function testParams() {
|
||||
$this->template->setParams(new ForgotPasswordParams('mock-username', 'mock-code', 'mock-link'));
|
||||
$params = $this->template->getParams();
|
||||
$this->assertSame('mock-username', $params['username']);
|
||||
$this->assertSame('mock-code', $params['code']);
|
||||
$this->assertSame('mock-link', $params['link']);
|
||||
}
|
||||
|
||||
public function testInvalidCallOfParams() {
|
||||
$this->expectException(InvalidCallException::class);
|
||||
$this->template->getParams();
|
||||
}
|
||||
|
||||
protected function _before() {
|
||||
parent::_before();
|
||||
/** @var MailerInterface|\PHPUnit\Framework\MockObject\MockObject $mailer */
|
||||
$mailer = $this->createMock(MailerInterface::class);
|
||||
/** @var RendererInterface|\PHPUnit\Framework\MockObject\MockObject $renderer */
|
||||
$renderer = $this->createMock(RendererInterface::class);
|
||||
$this->template = new ForgotPasswordEmail($mailer, $renderer);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user