wallabag/tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php

64 lines
1.9 KiB
PHP
Raw Normal View History

2015-12-29 08:59:46 +00:00
<?php
2016-06-01 19:27:35 +00:00
namespace Tests\Wallabag\UserBundle\Mailer;
2015-12-29 08:59:46 +00:00
2017-12-16 21:17:42 +00:00
use PHPUnit\Framework\TestCase;
use Twig\Environment;
use Twig\Loader\ArrayLoader;
2015-12-29 08:59:46 +00:00
use Wallabag\UserBundle\Entity\User;
use Wallabag\UserBundle\Mailer\AuthCodeMailer;
2017-12-16 21:17:42 +00:00
class AuthCodeMailerTest extends TestCase
2015-12-29 08:59:46 +00:00
{
protected $mailer;
protected $spool;
protected $twig;
2015-12-29 08:59:46 +00:00
protected function setUp()
{
$this->spool = new CountableMemorySpool();
$transport = new \Swift_Transport_SpoolTransport(
new \Swift_Events_SimpleEventDispatcher(),
$this->spool
);
$this->mailer = new \Swift_Mailer($transport);
$twigTemplate = <<<'TWIG'
{% block subject %}subject{% endblock %}
{% block body_html %}html body {{ code }}{% endblock %}
{% block body_text %}text body {{ support_url }}{% endblock %}
TWIG;
$this->twig = new Environment(new ArrayLoader(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate]));
2015-12-29 08:59:46 +00:00
}
public function testSendEmail()
{
$user = new User();
$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(
$this->mailer,
$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);
$this->assertCount(1, $this->spool);
$msg = $this->spool->getMessages()[0];
$this->assertArrayHasKey('test@wallabag.io', $msg->getTo());
2017-07-01 07:52:38 +00:00
$this->assertSame(['nobody@test.io' => 'wallabag test'], $msg->getFrom());
$this->assertSame('subject', $msg->getSubject());
$this->assertContains('text body http://0.0.0.0/support', $msg->toString());
$this->assertContains('html body 666666', $msg->toString());
2015-12-29 08:59:46 +00:00
}
}