nextcloud/apps/files_external/tests/Command/ApplicableTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

156 lines
4 KiB
PHP
Raw Normal View History

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