2015-12-29 08:59:46 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Mailer;
|
2015-12-29 08:59:46 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2022-12-15 11:02:52 +00:00
|
|
|
use Symfony\Component\Mailer\MailerInterface;
|
|
|
|
use Symfony\Component\Mime\Address;
|
2019-06-21 10:46:53 +00:00
|
|
|
use Twig\Environment;
|
|
|
|
use Twig\Loader\ArrayLoader;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Entity\User;
|
|
|
|
use Wallabag\Mailer\AuthCodeMailer;
|
2015-12-29 08:59:46 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
class AuthCodeMailerTest extends TestCase
|
2015-12-29 08:59:46 +00:00
|
|
|
{
|
2016-01-10 11:49:43 +00:00
|
|
|
protected $twig;
|
2015-12-29 08:59:46 +00:00
|
|
|
|
2020-06-15 06:25:59 +00:00
|
|
|
protected function setUp(): void
|
2015-12-29 08:59:46 +00:00
|
|
|
{
|
2016-09-28 08:02:31 +00:00
|
|
|
$twigTemplate = <<<'TWIG'
|
2016-01-10 11:49:43 +00:00
|
|
|
{% block subject %}subject{% endblock %}
|
2016-01-20 16:43:10 +00:00
|
|
|
{% block body_html %}html body {{ code }}{% endblock %}
|
|
|
|
{% block body_text %}text body {{ support_url }}{% endblock %}
|
|
|
|
TWIG;
|
|
|
|
|
2024-02-18 23:03:14 +00:00
|
|
|
$this->twig = new Environment(new ArrayLoader(['TwoFactor/email_auth_code.html.twig' => $twigTemplate]));
|
2015-12-29 08:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSendEmail()
|
|
|
|
{
|
2022-12-15 11:02:52 +00:00
|
|
|
$mailer = $this->createMock(MailerInterface::class);
|
|
|
|
$mailer->expects($this->once())
|
|
|
|
->method('send')
|
|
|
|
->with($this->callback(function ($email) {
|
|
|
|
$this->assertSame('subject', $email->getSubject());
|
|
|
|
$this->assertSame('text body http://0.0.0.0/support', $email->getTextBody());
|
|
|
|
$this->assertSame('html body 666666', $email->getHtmlBody());
|
|
|
|
|
|
|
|
$this->assertCount(1, $email->getTo());
|
|
|
|
/** @var Address[] $addresses */
|
|
|
|
$addresses = $email->getTo();
|
|
|
|
$this->assertInstanceOf(Address::class, $addresses[0]);
|
|
|
|
$this->assertSame('', $addresses[0]->getName());
|
|
|
|
$this->assertSame('test@wallabag.io', $addresses[0]->getAddress());
|
|
|
|
|
|
|
|
$this->assertCount(1, $email->getFrom());
|
|
|
|
/** @var Address[] $addresses */
|
|
|
|
$addresses = $email->getFrom();
|
|
|
|
$this->assertInstanceOf(Address::class, $addresses[0]);
|
|
|
|
$this->assertSame('wallabag test', $addresses[0]->getName());
|
|
|
|
$this->assertSame('nobody@test.io', $addresses[0]->getAddress());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}));
|
|
|
|
|
2015-12-29 08:59:46 +00:00
|
|
|
$user = new User();
|
2018-12-02 11:43:05 +00:00
|
|
|
$user->setEmailTwoFactor(true);
|
2015-12-29 08:59:46 +00:00
|
|
|
$user->setEmailAuthCode(666666);
|
|
|
|
$user->setEmail('test@wallabag.io');
|
|
|
|
$user->setName('Bob');
|
|
|
|
|
|
|
|
$authCodeMailer = new AuthCodeMailer(
|
2022-12-15 11:02:52 +00:00
|
|
|
$mailer,
|
2016-01-10 11:49:43 +00:00
|
|
|
$this->twig,
|
2015-12-29 08:59:46 +00:00
|
|
|
'nobody@test.io',
|
|
|
|
'wallabag test',
|
2016-10-30 19:43:37 +00:00
|
|
|
'http://0.0.0.0/support',
|
|
|
|
'http://0.0.0.0/'
|
2015-12-29 08:59:46 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$authCodeMailer->sendAuthCode($user);
|
|
|
|
}
|
|
|
|
}
|