123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\Files_External\Tests\Command;
- use OCA\Files_External\Command\Applicable;
- use OCP\IGroupManager;
- use OCP\IUserManager;
- class ApplicableTest extends CommandTest {
- private function getInstance($storageService) {
- /** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject $userManager */
- $userManager = $this->createMock(IUserManager::class);
- /** @var \OCP\IGroupManager|\PHPUnit\Framework\MockObject\MockObject $groupManager */
- $groupManager = $this->createMock(IGroupManager::class);
- $userManager->expects($this->any())
- ->method('userExists')
- ->willReturn(true);
- $groupManager->expects($this->any())
- ->method('groupExists')
- ->willReturn(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());
- }
- }
|