| | <?php |
| |
|
| | require_once __DIR__.'/../Base.php'; |
| |
|
| | use Kanboard\Helper\MailHelper; |
| |
|
| | class MailHelperTest extends Base |
| | { |
| | public function testFilterSubject() |
| | { |
| | $helper = new MailHelper($this->container); |
| | $this->assertEquals('Test', $helper->filterSubject('Test')); |
| | $this->assertEquals('Test', $helper->filterSubject('RE: Test')); |
| | $this->assertEquals('Test', $helper->filterSubject('FW: Test')); |
| | $this->assertEquals('Test', $helper->filterSubject('Fwd: Test')); |
| | } |
| |
|
| | public function testGetSenderAddress() |
| | { |
| | $helper = new MailHelper($this->container); |
| | $this->assertEquals('notifications@kanboard.local', $helper->getMailSenderAddress()); |
| |
|
| | $this->container['configModel']->save(array('mail_sender_address' => 'me@here')); |
| | $this->container['memoryCache']->flush(); |
| |
|
| | $this->assertEquals('me@here', $helper->getMailSenderAddress()); |
| | } |
| |
|
| | public function testGetTransport() |
| | { |
| | $helper = new MailHelper($this->container); |
| | $this->assertEquals(MAIL_TRANSPORT, $helper->getMailTransport()); |
| |
|
| | $this->container['configModel']->save(array('mail_transport' => 'smtp')); |
| | $this->container['memoryCache']->flush(); |
| |
|
| | $this->assertEquals('smtp', $helper->getMailTransport()); |
| | } |
| | } |
| |
|