<?php
/*
* This file is part of the Silex framework.
*
* (c) Fabien Potencier <hide@address.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Silex\Tests\Provider;
use Silex\Application;
use Silex\Provider\SwiftmailerServiceProvider;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class SwiftmailerServiceProviderTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
if (!is_dir(__DIR__.'/../../../../vendor/swiftmailer/swiftmailer/lib')) {
$this->markTestSkipped('Swiftmailer dependency was not installed.');
}
}
public function testSwiftMailerServiceIsSwiftMailer()
{
$app = new Application();
$app->register(new SwiftmailerServiceProvider());
$app->boot();
$this->assertInstanceOf('Swift_Mailer', $app['mailer']);
}
public function testSwiftMailerSendsMailsOnFinish()
{
$app = new Application();
$app->register(new SwiftmailerServiceProvider());
$app->boot();
$app['swiftmailer.spool'] = $app->share(function () {
return new SpoolStub();
});
$app->get('/', function() use ($app) {
$app['mailer']->send(\Swift_Message::newInstance());
});
$this->assertCount(0, $app['swiftmailer.spool']->getMessages());
$request = Request::create('/');
$response = $app->handle($request);
$this->assertCount(1, $app['swiftmailer.spool']->getMessages());
$app->terminate($request, $response);
$this->assertTrue($app['swiftmailer.spool']->hasFlushed);
$this->assertCount(0, $app['swiftmailer.spool']->getMessages());
}
public function testSwiftMailerAvoidsFlushesIfMailerIsUnused()
{
$app = new Application();
$app->register(new SwiftmailerServiceProvider());
$app->boot();
$app['swiftmailer.spool'] = $app->share(function () {
return new SpoolStub();
});
$app->get('/', function() use ($app) { });
$request = Request::create('/');
$response = $app->handle($request);
$this->assertCount(0, $app['swiftmailer.spool']->getMessages());
$app->terminate($request, $response);
$this->assertFalse($app['swiftmailer.spool']->hasFlushed);
}
}