2015-02-12 15:53:27 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-19 20:55:27 +03:00
|
|
|
* Copyright (c) 2014-2015 Lukas Reschke <lukas@owncloud.com>
|
2015-02-12 15:53:27 +03:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test;
|
|
|
|
use OC\Mail\Mailer;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OC_Defaults;
|
2015-03-16 15:01:17 +03:00
|
|
|
use OCP\ILogger;
|
2015-02-12 15:53:27 +03:00
|
|
|
|
|
|
|
class MailerTest extends TestCase {
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var OC_Defaults */
|
|
|
|
private $defaults;
|
2015-03-16 15:01:17 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
2015-02-12 15:53:27 +03:00
|
|
|
/** @var Mailer */
|
|
|
|
private $mailer;
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->config = $this->getMockBuilder('\OCP\IConfig')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$this->defaults = $this->getMockBuilder('\OC_Defaults')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-03-16 15:01:17 +03:00
|
|
|
$this->logger = $this->getMockBuilder('\OCP\ILogger')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$this->mailer = new Mailer($this->config, $this->logger, $this->defaults);
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetMailInstance() {
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertEquals(\Swift_MailTransport::newInstance(), self::invokePrivate($this->mailer, 'getMailinstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetSendMailInstanceSendMail() {
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('mail_smtpmode', 'sendmail')
|
|
|
|
->will($this->returnValue('sendmail'));
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertEquals(\Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetSendMailInstanceSendMailQmail() {
|
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('mail_smtpmode', 'sendmail')
|
|
|
|
->will($this->returnValue('qmail'));
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertEquals(\Swift_SendmailTransport::newInstance('/var/qmail/bin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstanceDefault() {
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertInstanceOf('\Swift_MailTransport', self::invokePrivate($this->mailer, 'getInstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstancePhp() {
|
|
|
|
$this->config
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->will($this->returnValue('php'));
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertInstanceOf('\Swift_MailTransport', self::invokePrivate($this->mailer, 'getInstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstanceSendmail() {
|
|
|
|
$this->config
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->will($this->returnValue('sendmail'));
|
|
|
|
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertInstanceOf('\Swift_SendmailTransport', self::invokePrivate($this->mailer, 'getInstance'));
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreateMessage() {
|
|
|
|
$this->assertInstanceOf('\OC\Mail\Message', $this->mailer->createMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
|
|
|
public function testSendInvalidMailException() {
|
|
|
|
$message = $this->getMockBuilder('\OC\Mail\Message')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$message->expects($this->once())
|
|
|
|
->method('getSwiftMessage')
|
|
|
|
->will($this->returnValue(new \Swift_Message()));
|
|
|
|
|
|
|
|
$this->mailer->send($message);
|
|
|
|
}
|
|
|
|
|
2015-02-19 20:55:27 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function mailAddressProvider() {
|
|
|
|
return [
|
|
|
|
['lukas@owncloud.com', true],
|
|
|
|
['lukas@localhost', true],
|
|
|
|
['lukas@192.168.1.1', true],
|
|
|
|
['lukas@éxämplè.com', true],
|
|
|
|
['asdf', false],
|
|
|
|
['lukas@owncloud.org@owncloud.com', false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider mailAddressProvider
|
|
|
|
*/
|
|
|
|
public function testValidateMailAddress($email, $expected) {
|
|
|
|
$this->assertSame($expected, $this->mailer->validateMailAddress($email));
|
|
|
|
}
|
|
|
|
|
2015-02-12 15:53:27 +03:00
|
|
|
}
|