123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?php
- /**
- * @author Lukas Reschke
- * @copyright 2014 Lukas Reschke lukas@owncloud.com
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- namespace OC\Settings\Controller;
- use \OC\Settings\Application;
- /**
- * @package OC\Settings\Controller
- */
- class MailSettingsControllerTest extends \Test\TestCase {
- private $container;
- protected function setUp() {
- parent::setUp();
- $app = new Application();
- $this->container = $app->getContainer();
- $this->container['Config'] = $this->getMockBuilder('\OCP\IConfig')
- ->disableOriginalConstructor()->getMock();
- $this->container['L10N'] = $this->getMockBuilder('\OCP\IL10N')
- ->disableOriginalConstructor()->getMock();
- $this->container['AppName'] = 'settings';
- $this->container['UserSession'] = $this->getMockBuilder('\OC\User\Session')
- ->disableOriginalConstructor()->getMock();
- $this->container['MailMessage'] = $this->getMockBuilder('\OCP\Mail\IMessage')
- ->disableOriginalConstructor()->getMock();
- $this->container['Mailer'] = $this->getMockBuilder('\OC\Mail\Mailer')
- ->setMethods(['send'])
- ->disableOriginalConstructor()->getMock();
- $this->container['Defaults'] = $this->getMockBuilder('\OC_Defaults')
- ->disableOriginalConstructor()->getMock();
- $this->container['DefaultMailAddress'] = 'no-reply@owncloud.com';
- }
- public function testSetMailSettings() {
- $this->container['L10N']
- ->expects($this->exactly(2))
- ->method('t')
- ->will($this->returnValue('Saved'));
- /**
- * FIXME: Use the following block once Jenkins uses PHPUnit >= 4.1
- */
- /*
- $this->container['Config']
- ->expects($this->exactly(15))
- ->method('setSystemValue')
- ->withConsecutive(
- array($this->equalTo('mail_domain'), $this->equalTo('owncloud.com')),
- array($this->equalTo('mail_from_address'), $this->equalTo('demo@owncloud.com')),
- array($this->equalTo('mail_smtpmode'), $this->equalTo('smtp')),
- array($this->equalTo('mail_smtpsecure'), $this->equalTo('ssl')),
- array($this->equalTo('mail_smtphost'), $this->equalTo('mx.owncloud.org')),
- array($this->equalTo('mail_smtpauthtype'), $this->equalTo('NTLM')),
- array($this->equalTo('mail_smtpauth'), $this->equalTo(1)),
- array($this->equalTo('mail_smtpport'), $this->equalTo('25')),
- array($this->equalTo('mail_domain'), $this->equalTo('owncloud.com')),
- array($this->equalTo('mail_from_address'), $this->equalTo('demo@owncloud.com')),
- array($this->equalTo('mail_smtpmode'), $this->equalTo('smtp')),
- array($this->equalTo('mail_smtpsecure'), $this->equalTo('ssl')),
- array($this->equalTo('mail_smtphost'), $this->equalTo('mx.owncloud.org')),
- array($this->equalTo('mail_smtpauthtype'), $this->equalTo('NTLM')),
- array($this->equalTo('mail_smtpport'), $this->equalTo('25'))
- );
- */
- /** @var \PHPUnit_Framework_MockObject_MockObject $config */
- $config = $this->container['Config'];
- $config->expects($this->exactly(2))
- ->method('setSystemValues');
- /**
- * FIXME: Use the following block once Jenkins uses PHPUnit >= 4.1
- ->withConsecutive(
- [[
- 'mail_domain' => 'owncloud.com',
- 'mail_from_address' => 'demo@owncloud.com',
- 'mail_smtpmode' => 'smtp',
- 'mail_smtpsecure' => 'ssl',
- 'mail_smtphost' => 'mx.owncloud.org',
- 'mail_smtpauthtype' => 'NTLM',
- 'mail_smtpauth' => 1,
- 'mail_smtpport' => '25',
- ]],
- [[
- 'mail_domain' => 'owncloud.com',
- 'mail_from_address' => 'demo@owncloud.com',
- 'mail_smtpmode' => 'smtp',
- 'mail_smtpsecure' => 'ssl',
- 'mail_smtphost' => 'mx.owncloud.org',
- 'mail_smtpauthtype' => 'NTLM',
- 'mail_smtpauth' => null,
- 'mail_smtpport' => '25',
- 'mail_smtpname' => null,
- 'mail_smtppassword' => null,
- ]]
- );
- */
- // With authentication
- $response = $this->container['MailSettingsController']->setMailSettings(
- 'owncloud.com',
- 'demo@owncloud.com',
- 'smtp',
- 'ssl',
- 'mx.owncloud.org',
- 'NTLM',
- 1,
- '25'
- );
- $expectedResponse = array('data' => array('message' =>'Saved'), 'status' => 'success');
- $this->assertSame($expectedResponse, $response);
- // Without authentication (testing the deletion of the stored password)
- $response = $this->container['MailSettingsController']->setMailSettings(
- 'owncloud.com',
- 'demo@owncloud.com',
- 'smtp',
- 'ssl',
- 'mx.owncloud.org',
- 'NTLM',
- 0,
- '25'
- );
- $expectedResponse = array('data' => array('message' =>'Saved'), 'status' => 'success');
- $this->assertSame($expectedResponse, $response);
- }
- public function testStoreCredentials() {
- $this->container['L10N']
- ->expects($this->once())
- ->method('t')
- ->will($this->returnValue('Saved'));
- $this->container['Config']
- ->expects($this->once())
- ->method('setSystemValues')
- ->with([
- 'mail_smtpname' => 'UsernameToStore',
- 'mail_smtppassword' => 'PasswordToStore',
- ]);
- $response = $this->container['MailSettingsController']->storeCredentials('UsernameToStore', 'PasswordToStore');
- $expectedResponse = array('data' => array('message' =>'Saved'), 'status' => 'success');
- $this->assertSame($expectedResponse, $response);
- }
- public function testSendTestMail() {
- $user = $this->getMockBuilder('\OC\User\User')
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->will($this->returnValue('Werner'));
- $user->expects($this->any())
- ->method('getDisplayName')
- ->will($this->returnValue('Werner Brösel'));
- $this->container['L10N']
- ->expects($this->any())
- ->method('t')
- ->will(
- $this->returnValueMap(
- array(
- array('You need to set your user email before being able to send test emails.', array(),
- 'You need to set your user email before being able to send test emails.'),
- array('A problem occurred while sending the e-mail. Please revisit your settings.', array(),
- 'A problem occurred while sending the e-mail. Please revisit your settings.'),
- array('Email sent', array(), 'Email sent'),
- array('test email settings', array(), 'test email settings'),
- array('If you received this email, the settings seem to be correct.', array(),
- 'If you received this email, the settings seem to be correct.')
- )
- ));
- $this->container['UserSession']
- ->expects($this->any())
- ->method('getUser')
- ->will($this->returnValue($user));
- // Ensure that it fails when no mail address has been specified
- $response = $this->container['MailSettingsController']->sendTestMail();
- $expectedResponse = array('data' => array('message' =>'You need to set your user email before being able to send test emails.'), 'status' => 'error');
- $this->assertSame($expectedResponse, $response);
- // If no exception is thrown it should work
- $this->container['Config']
- ->expects($this->any())
- ->method('getUserValue')
- ->will($this->returnValue('mail@example.invalid'));
- $response = $this->container['MailSettingsController']->sendTestMail();
- $expectedResponse = array('data' => array('message' =>'Email sent'), 'status' => 'success');
- $this->assertSame($expectedResponse, $response);
- }
- }
|