aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests/command/applicabletest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/tests/command/applicabletest.php')
-rw-r--r--apps/files_external/tests/command/applicabletest.php168
1 files changed, 0 insertions, 168 deletions
diff --git a/apps/files_external/tests/command/applicabletest.php b/apps/files_external/tests/command/applicabletest.php
deleted file mode 100644
index 64d41f6f245..00000000000
--- a/apps/files_external/tests/command/applicabletest.php
+++ /dev/null
@@ -1,168 +0,0 @@
-<?php
-/**
- * @author Robin Appelman <icewind@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OCA\Files_External\Tests\Command;
-
-use OCA\Files_External\Command\Applicable;
-
-class ApplicableTest extends CommandTest {
- private function getInstance($storageService) {
- /** @var \OCP\IUserManager|\PHPUnit_Framework_MockObject_MockObject $userManager */
- $userManager = $this->getMock('\OCP\IUserManager');
- /** @var \OCP\IGroupManager|\PHPUnit_Framework_MockObject_MockObject $groupManager */
- $groupManager = $this->getMock('\OCP\IGroupManager');
-
- $userManager->expects($this->any())
- ->method('userExists')
- ->will($this->returnValue(true));
-
- $groupManager->expects($this->any())
- ->method('groupExists')
- ->will($this->returnValue(true));
-
- return new Applicable($storageService, $userManager, $groupManager);
- }
-
- public function testListEmpty() {
- $mount = $this->getMount(1, '', '');
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json'
- ]);
-
- $result = json_decode($this->executeCommand($command, $input), true);
-
- $this->assertEquals(['users' => [], 'groups' => []], $result);
- }
-
- public function testList() {
- $mount = $this->getMount(1, '', '', '', [], [], ['test', 'asd']);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json'
- ]);
-
- $result = json_decode($this->executeCommand($command, $input), true);
-
- $this->assertEquals(['users' => ['test', 'asd'], 'groups' => []], $result);
- }
-
- public function testAddSingle() {
- $mount = $this->getMount(1, '', '', '', [], [], []);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json',
- 'add-user' => ['foo']
- ]);
-
- $this->executeCommand($command, $input);
-
- $this->assertEquals(['foo'], $mount->getApplicableUsers());
- }
-
- public function testAddDuplicate() {
- $mount = $this->getMount(1, '', '', '', [], [], ['foo']);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json',
- 'add-user' => ['foo', 'bar']
- ]);
-
- $this->executeCommand($command, $input);
-
- $this->assertEquals(['foo', 'bar'], $mount->getApplicableUsers());
- }
-
- public function testRemoveSingle() {
- $mount = $this->getMount(1, '', '', '', [], [], ['foo', 'bar']);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json',
- 'remove-user' => ['bar']
- ]);
-
- $this->executeCommand($command, $input);
-
- $this->assertEquals(['foo'], $mount->getApplicableUsers());
- }
-
- public function testRemoveNonExisting() {
- $mount = $this->getMount(1, '', '', '', [], [], ['foo', 'bar']);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json',
- 'remove-user' => ['bar', 'asd']
- ]);
-
- $this->executeCommand($command, $input);
-
- $this->assertEquals(['foo'], $mount->getApplicableUsers());
- }
-
- public function testRemoveAddRemove() {
- $mount = $this->getMount(1, '', '', '', [], [], ['foo', 'bar']);
-
- $storageService = $this->getGlobalStorageService([$mount]);
- $command = $this->getInstance($storageService);
-
- $input = $this->getInput($command, [
- 'mount_id' => 1
- ], [
- 'output' => 'json',
- 'remove-user' => ['bar', 'asd'],
- 'add-user' => ['test']
- ]);
-
- $this->executeCommand($command, $input);
-
- $this->assertEquals(['foo', 'test'], $mount->getApplicableUsers());
- }
-}