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

67 lines
1.6 KiB
PHP

<?php
namespace Alchemy\Tests\Phrasea\Notification\Mail;
use Alchemy\Phrasea\Notification\Mail\MailInterface;
abstract class MailTestCase extends \PhraseanetTestCase
{
public function testGetSubject()
{
$this->assertInternalType('string', $this->getMail()->getSubject());
}
public function testGetMessage()
{
$this->assertInternalType('string', $this->getMail()->getMessage());
}
public function testGetButtonText()
{
if (null === $this->getMail()->getButtonURL() && null === $this->getMail()->getButtonText()) {
return;
}
$this->assertInternalType('string', $this->getMail()->getButtonText());
}
public function testGetButtonURL()
{
if (null === $this->getMail()->getButtonURL() && null === $this->getMail()->getButtonText()) {
return;
}
$this->assertTrue(0 === stripos($this->getMail()->getButtonURL(), 'http://'), 'Checking that URL button points to an absolute URL');
}
public function getReceiverMock()
{
return $this->getMock('Alchemy\Phrasea\Notification\ReceiverInterface');
}
public function getEmitterMock()
{
return $this->getMock('Alchemy\Phrasea\Notification\EmitterInterface');
}
public function getMessage()
{
return 'Lorem ipsum dolor';
}
public function getUrl()
{
return 'http://www.example.com';
}
public function getExpiration()
{
return new \DateTime();
}
/**
* @return MailInterface
*/
abstract public function getMail();
}