]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/UserBundle/Mailer/AuthCodeMailerTest.php
Jump to Symfony 3.1
[github/wallabag/wallabag.git] / tests / Wallabag / UserBundle / Mailer / AuthCodeMailerTest.php
CommitLineData
23ff8d36
JB
1<?php
2
23634d5d 3namespace Tests\Wallabag\UserBundle\Mailer;
23ff8d36
JB
4
5use Wallabag\UserBundle\Entity\User;
6use Wallabag\UserBundle\Mailer\AuthCodeMailer;
23ff8d36
JB
7
8/**
9 * @see https://www.pmg.com/blog/integration-testing-swift-mailer/
10 */
11final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable
12{
13 public function count()
14 {
15 return count($this->messages);
16 }
17
18 public function getMessages()
19 {
20 return $this->messages;
21 }
22}
23
24class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase
25{
26 protected $mailer;
27 protected $spool;
7ce895bf 28 protected $twig;
2a586069 29 protected $config;
23ff8d36
JB
30
31 protected function setUp()
32 {
33 $this->spool = new CountableMemorySpool();
34 $transport = new \Swift_Transport_SpoolTransport(
35 new \Swift_Events_SimpleEventDispatcher(),
36 $this->spool
37 );
38 $this->mailer = new \Swift_Mailer($transport);
39
abd454c4 40 $twigTemplate = <<<TWIG
7ce895bf 41{% block subject %}subject{% endblock %}
abd454c4
JB
42{% block body_html %}html body {{ code }}{% endblock %}
43{% block body_text %}text body {{ support_url }}{% endblock %}
44TWIG;
45
4094ea47 46 $this->twig = new \Twig_Environment(new \Twig_Loader_Array(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate]));
2a586069
JB
47
48 $this->config = $this->getMockBuilder('Craue\ConfigBundle\Util\Config')
49 ->disableOriginalConstructor()
50 ->getMock();
51
52 $this->config->expects($this->any())
53 ->method('get')
54 ->willReturn('http://0.0.0.0/support');
23ff8d36
JB
55 }
56
57 public function testSendEmail()
58 {
59 $user = new User();
60 $user->setTwoFactorAuthentication(true);
61 $user->setEmailAuthCode(666666);
62 $user->setEmail('test@wallabag.io');
63 $user->setName('Bob');
64
65 $authCodeMailer = new AuthCodeMailer(
66 $this->mailer,
7ce895bf 67 $this->twig,
23ff8d36
JB
68 'nobody@test.io',
69 'wallabag test',
2a586069 70 $this->config
23ff8d36
JB
71 );
72
73 $authCodeMailer->sendAuthCode($user);
74
75 $this->assertCount(1, $this->spool);
76
77 $msg = $this->spool->getMessages()[0];
78 $this->assertArrayHasKey('test@wallabag.io', $msg->getTo());
4094ea47 79 $this->assertEquals(['nobody@test.io' => 'wallabag test'], $msg->getFrom());
7ce895bf 80 $this->assertEquals('subject', $msg->getSubject());
abd454c4
JB
81 $this->assertContains('text body http://0.0.0.0/support', $msg->toString());
82 $this->assertContains('html body 666666', $msg->toString());
23ff8d36
JB
83 }
84}