summaryrefslogtreecommitdiffstats
path: root/apps/files/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-02-28 11:05:28 +0100
committerMorris Jobke <hey@morrisjobke.de>2019-03-04 12:14:22 +0100
commitc6a69ba92514587814d0f03b51e1d1f026a49350 (patch)
treeb7162fff445ea0595280b535b95a60b689f742dd /apps/files/tests
parent814bf0de20b05ef44d4558d49cc3dc655da1c58d (diff)
downloadnextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.tar.gz
nextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.zip
Remove the upload and memory setting
* Remove unneeded private method phpFileSize() * Bump autoloader * Remove setUploadLimit tests * Remove integrity check hacks for upload limit Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files/tests')
-rw-r--r--apps/files/tests/Settings/AdminTest.php84
1 files changed, 0 insertions, 84 deletions
diff --git a/apps/files/tests/Settings/AdminTest.php b/apps/files/tests/Settings/AdminTest.php
deleted file mode 100644
index 027a37d7b2f..00000000000
--- a/apps/files/tests/Settings/AdminTest.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-namespace OCA\Files\Tests\Settings;
-
-use bantu\IniGetWrapper\IniGetWrapper;
-use OCA\Files\Settings\Admin;
-use OCP\AppFramework\Http\TemplateResponse;
-use OCP\IRequest;
-use OCP\Util;
-use Test\TestCase;
-
-class AdminTest extends TestCase {
- /** @var Admin */
- private $admin;
- /** @var IniGetWrapper */
- private $iniGetWrapper;
- /** @var IRequest */
- private $request;
-
- public function setUp() {
- parent::setUp();
- $this->iniGetWrapper = $this->getMockBuilder('\bantu\IniGetWrapper\IniGetWrapper')->disableOriginalConstructor()->getMock();
- $this->request = $this->getMockBuilder(IRequest::class)->getMock();
- $this->admin = new Admin(
- $this->iniGetWrapper,
- $this->request
- );
- }
-
- public function testGetForm() {
- $htaccessWorking = (getenv('htaccessWorking') == 'true');
- $htaccessWritable = is_writable(\OC::$SERVERROOT.'/.htaccess');
- $userIniWritable = is_writable(\OC::$SERVERROOT.'/.user.ini');
-
- $this->iniGetWrapper
- ->expects($this->at(0))
- ->method('getBytes')
- ->with('upload_max_filesize')
- ->willReturn(1234);
- $this->iniGetWrapper
- ->expects($this->at(1))
- ->method('getBytes')
- ->with('post_max_size')
- ->willReturn(1234);
- $params = [
- 'uploadChangable' => (($htaccessWorking and $htaccessWritable) or $userIniWritable ),
- 'uploadMaxFilesize' => '1 KB',
- 'displayMaxPossibleUploadSize' => PHP_INT_SIZE === 4,
- 'maxPossibleUploadSize' => Util::humanFileSize(PHP_INT_MAX),
- ];
- $expected = new TemplateResponse('files', 'admin', $params, '');
- $this->assertEquals($expected, $this->admin->getForm());
- }
-
- public function testGetSection() {
- $this->assertSame('server', $this->admin->getSection());
- }
-
- public function testGetPriority() {
- $this->assertSame(5, $this->admin->getPriority());
- }
-}