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); } }