aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/tests
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-24 14:19:23 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-11-13 15:55:46 +0100
commit749523603403f11c2958a51fb64a7035d9f4eb73 (patch)
tree26f2e5677adc74682e4911a1aee11efc8bdd2b3d /apps/settings/tests
parenteaaf954753bf86ce581a0cdc06987b41312cdded (diff)
downloadnextcloud-server-749523603403f11c2958a51fb64a7035d9f4eb73.tar.gz
nextcloud-server-749523603403f11c2958a51fb64a7035d9f4eb73.zip
Migrate memory_limit check to new SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/settings/tests')
-rw-r--r--apps/settings/tests/Controller/CheckSetupControllerTest.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php
index e8087fbd2d1..edb05a1891e 100644
--- a/apps/settings/tests/Controller/CheckSetupControllerTest.php
+++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php
@@ -39,7 +39,6 @@ use Doctrine\DBAL\Platforms\SqlitePlatform;
use OC;
use OC\DB\Connection;
use OC\IntegrityCheck\Checker;
-use OC\MemoryInfo;
use OCA\Settings\Controller\CheckSetupController;
use OCP\App\IAppManager;
use OCP\AppFramework\Http;
@@ -97,8 +96,6 @@ class CheckSetupControllerTest extends TestCase {
private $lockingProvider;
/** @var IDateTimeFormatter|\PHPUnit\Framework\MockObject\MockObject */
private $dateTimeFormatter;
- /** @var MemoryInfo|MockObject */
- private $memoryInfo;
/** @var IniGetWrapper|\PHPUnit\Framework\MockObject\MockObject */
private $iniGetWrapper;
/** @var IDBConnection|\PHPUnit\Framework\MockObject\MockObject */
@@ -148,9 +145,6 @@ class CheckSetupControllerTest extends TestCase {
$this->throttler = $this->createMock(IThrottler::class);
$this->lockingProvider = $this->getMockBuilder(ILockingProvider::class)->getMock();
$this->dateTimeFormatter = $this->getMockBuilder(IDateTimeFormatter::class)->getMock();
- $this->memoryInfo = $this->getMockBuilder(MemoryInfo::class)
- ->setMethods(['isMemoryLimitSufficient',])
- ->getMock();
$this->iniGetWrapper = $this->getMockBuilder(IniGetWrapper::class)->getMock();
$this->connection = $this->getMockBuilder(IDBConnection::class)
->disableOriginalConstructor()->getMock();
@@ -173,7 +167,6 @@ class CheckSetupControllerTest extends TestCase {
$this->db,
$this->lockingProvider,
$this->dateTimeFormatter,
- $this->memoryInfo,
$this->iniGetWrapper,
$this->connection,
$this->throttler,
@@ -351,9 +344,6 @@ class CheckSetupControllerTest extends TestCase {
->expects($this->once())
->method('hasPassedCheck')
->willReturn(true);
- $this->memoryInfo
- ->method('isMemoryLimitSufficient')
- ->willReturn(true);
$this->checkSetupController
->expects($this->once())
@@ -441,7 +431,6 @@ class CheckSetupControllerTest extends TestCase {
'missingIndexes' => [],
'missingPrimaryKeys' => [],
'missingColumns' => [],
- 'isMemoryLimitSufficient' => true,
'appDirsWithDifferentOwner' => [],
'isImagickEnabled' => false,
'areWebauthnExtensionsEnabled' => false,
@@ -475,7 +464,6 @@ class CheckSetupControllerTest extends TestCase {
$this->db,
$this->lockingProvider,
$this->dateTimeFormatter,
- $this->memoryInfo,
$this->iniGetWrapper,
$this->connection,
$this->throttler,
@@ -1203,7 +1191,6 @@ Array
$this->db,
$this->lockingProvider,
$this->dateTimeFormatter,
- $this->memoryInfo,
$this->iniGetWrapper,
$this->connection,
$this->throttler,
@@ -1258,7 +1245,6 @@ Array
$this->db,
$this->lockingProvider,
$this->dateTimeFormatter,
- $this->memoryInfo,
$this->iniGetWrapper,
$this->connection,
$this->throttler,