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;
|
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;
|
2016-01-10 11:49:43 +00:00
|
|
|
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);
|
|
|
|
|
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;
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->twig = new \Twig_Environment(new \Twig_Loader_Array(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate]));
|
2015-12-29 08:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSendEmail()
|
|
|
|
{
|
|
|
|
$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(
|
|
|
|
$this->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);
|
|
|
|
|
|
|
|
$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());
|
2016-01-20 16:43:10 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|