2015-12-29 08:59:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Wallabag\UserBundle\Tests\Mailer;
|
|
|
|
|
|
|
|
use Wallabag\UserBundle\Entity\User;
|
|
|
|
use Wallabag\UserBundle\Mailer\AuthCodeMailer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see https://www.pmg.com/blog/integration-testing-swift-mailer/
|
|
|
|
*/
|
|
|
|
final class CountableMemorySpool extends \Swift_MemorySpool implements \Countable
|
|
|
|
{
|
|
|
|
public function count()
|
|
|
|
{
|
|
|
|
return count($this->messages);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getMessages()
|
|
|
|
{
|
|
|
|
return $this->messages;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
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-01-10 11:49:43 +00:00
|
|
|
$this->twig = new \Twig_Environment(new \Twig_Loader_Array(array('@WallabagUserBundle/Resources/views/TwoFactor/email_auth_code.html.twig' => '
|
|
|
|
{% block subject %}subject{% endblock %}
|
|
|
|
{% block body_html %}html body{% endblock %}
|
|
|
|
{% block body_text %}text body{% endblock %}
|
|
|
|
')));
|
2015-12-29 08:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSendEmail()
|
|
|
|
{
|
|
|
|
$user = new User();
|
|
|
|
$user->setTwoFactorAuthentication(true);
|
|
|
|
$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',
|
|
|
|
'http://0.0.0.0'
|
|
|
|
);
|
|
|
|
|
|
|
|
$authCodeMailer->sendAuthCode($user);
|
|
|
|
|
|
|
|
$this->assertCount(1, $this->spool);
|
|
|
|
|
|
|
|
$msg = $this->spool->getMessages()[0];
|
|
|
|
$this->assertArrayHasKey('test@wallabag.io', $msg->getTo());
|
|
|
|
$this->assertEquals(array('nobody@test.io' => 'wallabag test'), $msg->getFrom());
|
2016-01-10 11:49:43 +00:00
|
|
|
$this->assertEquals('subject', $msg->getSubject());
|
|
|
|
$this->assertContains('text body', $msg->toString());
|
|
|
|
$this->assertContains('html body', $msg->toString());
|
2015-12-29 08:59:46 +00:00
|
|
|
}
|
|
|
|
}
|