mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
74 lines
2.4 KiB
PHP
74 lines
2.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace common\tests\unit\emails;
|
|
|
|
use common\emails\exceptions\CannotSendEmailException;
|
|
use common\emails\Template;
|
|
use common\tests\unit\TestCase;
|
|
use Yii;
|
|
use yii\mail\MailerInterface;
|
|
use yii\mail\MessageInterface;
|
|
|
|
class TemplateTest extends TestCase {
|
|
|
|
/**
|
|
* @var Template|\PHPUnit\Framework\MockObject\MockObject $template
|
|
*/
|
|
private $template;
|
|
|
|
/**
|
|
* @var MailerInterface|\PHPUnit\Framework\MockObject\MockObject
|
|
*/
|
|
private $mailer;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $initialFromEmail;
|
|
|
|
public function testGetters() {
|
|
$this->assertSame(['find-me' => 'Ely.by Accounts'], $this->template->getFrom());
|
|
$this->assertSame([], $this->template->getParams());
|
|
}
|
|
|
|
public function testSend() {
|
|
$this->runTestForSend(true);
|
|
}
|
|
|
|
public function testNotSend() {
|
|
$this->expectException(CannotSendEmailException::class);
|
|
$this->runTestForSend(false);
|
|
}
|
|
|
|
protected function _before() {
|
|
parent::_before();
|
|
$this->mailer = $this->createMock(MailerInterface::class);
|
|
$this->template = $this->getMockForAbstractClass(Template::class, [$this->mailer]);
|
|
$this->initialFromEmail = Yii::$app->params['fromEmail'];
|
|
Yii::$app->params['fromEmail'] = 'find-me';
|
|
}
|
|
|
|
protected function _after() {
|
|
parent::_after();
|
|
Yii::$app->params['fromEmail'] = $this->initialFromEmail;
|
|
}
|
|
|
|
private function runTestForSend(bool $sendResult) {
|
|
$this->template->expects($this->once())->method('getSubject')->willReturn('mock-subject');
|
|
$this->template->expects($this->once())->method('getView')->willReturn('mock-view');
|
|
|
|
/** @var MailerInterface|\PHPUnit\Framework\MockObject\MockObject $message */
|
|
$message = $this->createMock(MessageInterface::class);
|
|
$message->expects($this->once())->method('setTo')->with(['to@ely.by' => 'To'])->willReturnSelf();
|
|
$message->expects($this->once())->method('setFrom')->with(['find-me' => 'Ely.by Accounts'])->willReturnSelf();
|
|
$message->expects($this->once())->method('setSubject')->with('mock-subject')->willReturnSelf();
|
|
$message->expects($this->once())->method('send')->willReturn($sendResult);
|
|
|
|
$this->mailer->expects($this->once())->method('compose')->with('mock-view', [])->willReturn($message);
|
|
|
|
$this->template->send(['to@ely.by' => 'To']);
|
|
}
|
|
|
|
}
|