summaryrefslogtreecommitdiffstats
path: root/apps/settings/tests
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2020-10-03 20:42:15 +0200
committerDaniel Kesselberg <mail@danielkesselberg.de>2020-10-03 21:58:55 +0200
commit9c8e8007f98ad45f59101a75c9b8037f48b504dc (patch)
tree26679149d61f1afbd017a617d9787ec68383ed71 /apps/settings/tests
parent50b210b50f8febe8e509284e72ead39e83e98ba6 (diff)
downloadnextcloud-server-9c8e8007f98ad45f59101a75c9b8037f48b504dc.tar.gz
nextcloud-server-9c8e8007f98ad45f59101a75c9b8037f48b504dc.zip
Remove setup check for php mail
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/settings/tests')
-rw-r--r--apps/settings/tests/Controller/CheckSetupControllerTest.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php
index 819c8edcca9..6943ee8e268 100644
--- a/apps/settings/tests/Controller/CheckSetupControllerTest.php
+++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php
@@ -479,10 +479,6 @@ class CheckSetupControllerTest extends TestCase {
'relativeTime' => '2 hours ago',
'backgroundJobsUrl' => 'https://example.org',
]);
- $this->checkSetupController
- ->expects($this->once())
- ->method('isPHPMailerUsed')
- ->willReturn(false);
$this->checker
->expects($this->once())
->method('hasPassedCheck')
@@ -588,8 +584,6 @@ class CheckSetupControllerTest extends TestCase {
'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion',
'missingIndexes' => [],
'missingColumns' => [],
- 'isPHPMailerUsed' => false,
- 'mailSettingsDocumentation' => 'https://server/index.php/settings/admin',
'isMemoryLimitSufficient' => true,
'appDirsWithDifferentOwner' => [],
'recommendedPHPModules' => [],
@@ -605,40 +599,6 @@ class CheckSetupControllerTest extends TestCase {
$this->assertEquals($expected, $this->checkSetupController->check());
}
- public function testIsPHPMailerUsed() {
- $checkSetupController = $this->getMockBuilder(CheckSetupController::class)
- ->setConstructorArgs([
- 'settings',
- $this->request,
- $this->config,
- $this->clientService,
- $this->urlGenerator,
- $this->l10n,
- $this->checker,
- $this->logger,
- $this->dispatcher,
- $this->db,
- $this->lockingProvider,
- $this->dateTimeFormatter,
- $this->memoryInfo,
- $this->secureRandom,
- $this->iniGetWrapper,
- ])
- ->setMethods(null)->getMock();
-
- $this->config->expects($this->at(0))
- ->method('getSystemValue')
- ->with('mail_smtpmode', 'smtp')
- ->willReturn('php');
- $this->config->expects($this->at(1))
- ->method('getSystemValue')
- ->with('mail_smtpmode', 'smtp')
- ->willReturn('not-php');
-
- $this->assertTrue($this->invokePrivate($checkSetupController, 'isPHPMailerUsed'));
- $this->assertFalse($this->invokePrivate($checkSetupController, 'isPHPMailerUsed'));
- }
-
public function testGetCurlVersion() {
$checkSetupController = $this->getMockBuilder(CheckSetupController::class)
->setConstructorArgs([