Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Notification/Mail/MailSuccessFTPSenderTest.php
2015-07-02 12:33:19 +02:00

50 lines
1.2 KiB
PHP

<?php
namespace Alchemy\Tests\Phrasea\Notification\Mail;
use Alchemy\Phrasea\Exception\LogicException;
use Alchemy\Phrasea\Notification\Mail\MailSuccessFTPSender;
/**
* @group functional
* @group legacy
* @covers Alchemy\Phrasea\Notification\Mail\MailSuccessFTPSender
*/
class MailSuccessFTPSenderTest extends MailTestCase
{
public function testSetServer()
{
$this->assertEquals('task::ftp:Status about your FTP transfert from %application% to %server%', $this->getMail()->getSubject());
}
public function testThatALgicExceptionIsThrownIfNoServerSet()
{
$mail = MailSuccessFTPSender::create(
$this->getApplication(),
$this->getReceiverMock(),
$this->getEmitterMock(),
$this->getMessage()
);
try {
$mail->getSubject();
$this->fail('Should have raised an exception');
} catch (LogicException $e) {
}
}
public function getMail()
{
$mail = MailSuccessFTPSender::create(
$this->getApplication(),
$this->getReceiverMock(),
$this->getEmitterMock(),
$this->getMessage()
);
$mail->setServer('ftp://example.com');
return $mail;
}
}