2014-10-31 13:41:07 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2014-10-31 13:41:07 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-10-31 13:41:07 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-10-31 13:41:07 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-10-31 13:41:07 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-10-31 13:41:07 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-31 13:41:07 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2016-05-13 12:22:28 +03:00
|
|
|
namespace OCA\Files_External\Tests\Service;
|
2014-10-31 13:41:07 +03:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OC\Files\Filesystem;
|
2014-10-31 13:41:07 +03:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_External\Service\GlobalStoragesService;
|
2014-10-31 13:41:07 +03:00
|
|
|
|
2015-11-02 15:13:06 +03:00
|
|
|
/**
|
|
|
|
* @group DB
|
|
|
|
*/
|
2014-10-31 13:41:07 +03:00
|
|
|
class GlobalStoragesServiceTest extends StoragesServiceTest {
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2014-10-31 13:41:07 +03:00
|
|
|
parent::setUp();
|
2016-01-13 17:29:53 +03:00
|
|
|
$this->service = new GlobalStoragesService($this->backendService, $this->dbConfig, $this->mountCache);
|
2014-10-31 13:41:07 +03:00
|
|
|
}
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function tearDown(): void {
|
2014-10-31 13:41:07 +03:00
|
|
|
@unlink($this->dataDir . '/mount.json');
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function makeTestStorageData() {
|
2015-11-02 15:13:06 +03:00
|
|
|
return $this->makeStorageConfig([
|
2014-10-31 13:41:07 +03:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => [],
|
|
|
|
'applicableGroups' => [],
|
|
|
|
'priority' => 15,
|
2015-03-13 14:49:11 +03:00
|
|
|
'mountOptions' => [
|
|
|
|
'preview' => false,
|
|
|
|
]
|
2014-10-31 13:41:07 +03:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function storageDataProvider() {
|
2014-10-31 13:41:07 +03:00
|
|
|
return [
|
|
|
|
// all users
|
|
|
|
[
|
2015-08-11 20:45:07 +03:00
|
|
|
[
|
2014-10-31 13:41:07 +03:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => [],
|
|
|
|
'applicableGroups' => [],
|
|
|
|
'priority' => 15,
|
2015-08-11 20:45:07 +03:00
|
|
|
],
|
2014-10-31 13:41:07 +03:00
|
|
|
],
|
|
|
|
// some users
|
|
|
|
[
|
2015-08-11 20:45:07 +03:00
|
|
|
[
|
2014-10-31 13:41:07 +03:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => ['user1', 'user2'],
|
|
|
|
'applicableGroups' => [],
|
|
|
|
'priority' => 15,
|
2015-08-11 20:45:07 +03:00
|
|
|
],
|
2014-10-31 13:41:07 +03:00
|
|
|
],
|
|
|
|
// some groups
|
|
|
|
[
|
2015-08-11 20:45:07 +03:00
|
|
|
[
|
2014-10-31 13:41:07 +03:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => [],
|
|
|
|
'applicableGroups' => ['group1', 'group2'],
|
|
|
|
'priority' => 15,
|
2015-08-11 20:45:07 +03:00
|
|
|
],
|
2014-10-31 13:41:07 +03:00
|
|
|
],
|
|
|
|
// both users and groups
|
|
|
|
[
|
2015-08-11 20:45:07 +03:00
|
|
|
[
|
2014-10-31 13:41:07 +03:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => ['user1', 'user2'],
|
|
|
|
'applicableGroups' => ['group1', 'group2'],
|
|
|
|
'priority' => 15,
|
2015-08-11 20:45:07 +03:00
|
|
|
],
|
2014-10-31 13:41:07 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider storageDataProvider
|
|
|
|
*/
|
2015-08-11 20:45:07 +03:00
|
|
|
public function testAddStorage($storageParams) {
|
|
|
|
$storage = $this->makeStorageConfig($storageParams);
|
2014-10-31 13:41:07 +03:00
|
|
|
$newStorage = $this->service->addStorage($storage);
|
|
|
|
|
2015-11-02 15:13:06 +03:00
|
|
|
$baseId = $newStorage->getId();
|
2014-10-31 13:41:07 +03:00
|
|
|
|
2015-11-02 15:13:06 +03:00
|
|
|
$newStorage = $this->service->getStorage($baseId);
|
2014-10-31 13:41:07 +03:00
|
|
|
|
|
|
|
$this->assertEquals($storage->getMountPoint(), $newStorage->getMountPoint());
|
2015-08-11 20:45:07 +03:00
|
|
|
$this->assertEquals($storage->getBackend(), $newStorage->getBackend());
|
Authentication mechanisms for external storage backends
A backend can now specify generic authentication schemes that it
supports, instead of specifying the parameters for its authentication
method directly. This allows multiple authentication mechanisms to be
implemented for a single scheme, providing altered functionality.
This commit introduces the backend framework for this feature, and so at
this point the UI will be broken as the frontend does not specify the
required information.
Terminology:
- authentication scheme
Parameter interface for the authentication method. A backend
supporting the 'password' scheme accepts two parameters, 'user' and
'password'.
- authentication mechanism
Specific mechanism implementing a scheme. Basic mechanisms may
forward configuration options directly to the backend, more advanced
ones may lookup parameters or retrieve them from the session
New dropdown selector for external storage configurations to select the
authentication mechanism to be used.
Authentication mechanisms can have visibilities, just like backends.
The API was extended too to make it easier to add/remove visibilities.
In addition, the concept of 'allowed visibility' has been introduced, so
a backend/auth mechanism can force a maximum visibility level (e.g.
Local storage type) that cannot be overridden by configuration in the
web UI.
An authentication mechanism is a fully instantiated implementation. This
allows an implementation to have dependencies injected into it, e.g. an
\OCP\IDB for database operations.
When a StorageConfig is being prepared for mounting, the authentication
mechanism implementation has manipulateStorage() called,
which inserts the relevant authentication method options into the
storage ready for mounting.
2015-08-12 12:54:03 +03:00
|
|
|
$this->assertEquals($storage->getAuthMechanism(), $newStorage->getAuthMechanism());
|
2014-10-31 13:41:07 +03:00
|
|
|
$this->assertEquals($storage->getBackendOptions(), $newStorage->getBackendOptions());
|
|
|
|
$this->assertEquals($storage->getApplicableUsers(), $newStorage->getApplicableUsers());
|
|
|
|
$this->assertEquals($storage->getApplicableGroups(), $newStorage->getApplicableGroups());
|
|
|
|
$this->assertEquals($storage->getPriority(), $newStorage->getPriority());
|
|
|
|
$this->assertEquals(0, $newStorage->getStatus());
|
|
|
|
|
|
|
|
$nextStorage = $this->service->addStorage($storage);
|
2015-11-02 15:13:06 +03:00
|
|
|
$this->assertEquals($baseId + 1, $nextStorage->getId());
|
2014-10-31 13:41:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider storageDataProvider
|
|
|
|
*/
|
2015-08-11 20:45:07 +03:00
|
|
|
public function testUpdateStorage($updatedStorageParams) {
|
|
|
|
$updatedStorage = $this->makeStorageConfig($updatedStorageParams);
|
2014-10-31 13:41:07 +03:00
|
|
|
$storage = $this->makeStorageConfig([
|
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 22:03:11 +03:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 13:41:07 +03:00
|
|
|
'backendOptions' => [
|
|
|
|
'option1' => 'value1',
|
|
|
|
'option2' => 'value2',
|
|
|
|
'password' => 'testPassword',
|
|
|
|
],
|
|
|
|
'applicableUsers' => [],
|
|
|
|
'applicableGroups' => [],
|
|
|
|
'priority' => 15,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$newStorage = $this->service->addStorage($storage);
|
2015-11-02 15:13:06 +03:00
|
|
|
$id = $newStorage->getId();
|
2014-10-31 13:41:07 +03:00
|
|
|
|
2015-11-02 15:13:06 +03:00
|
|
|
$updatedStorage->setId($id);
|
2014-10-31 13:41:07 +03:00
|
|
|
|
|
|
|
$this->service->updateStorage($updatedStorage);
|
2015-11-02 15:13:06 +03:00
|
|
|
$newStorage = $this->service->getStorage($id);
|
2014-10-31 13:41:07 +03:00
|
|
|
|
|
|
|
$this->assertEquals($updatedStorage->getMountPoint(), $newStorage->getMountPoint());
|
|
|
|
$this->assertEquals($updatedStorage->getBackendOptions()['password'], $newStorage->getBackendOptions()['password']);
|
|
|
|
$this->assertEquals($updatedStorage->getApplicableUsers(), $newStorage->getApplicableUsers());
|
|
|
|
$this->assertEquals($updatedStorage->getApplicableGroups(), $newStorage->getApplicableGroups());
|
|
|
|
$this->assertEquals($updatedStorage->getPriority(), $newStorage->getPriority());
|
|
|
|
$this->assertEquals(0, $newStorage->getStatus());
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function hooksAddStorageDataProvider() {
|
2014-10-31 13:41:07 +03:00
|
|
|
return [
|
|
|
|
// applicable all
|
|
|
|
[
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'all'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
// single user
|
|
|
|
[
|
|
|
|
['user1'],
|
|
|
|
[],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
// single group
|
|
|
|
[
|
|
|
|
[],
|
|
|
|
['group1'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
// multiple users
|
|
|
|
[
|
|
|
|
['user1', 'user2'],
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
// multiple groups
|
|
|
|
[
|
|
|
|
[],
|
|
|
|
['group1', 'group2'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2020-04-09 17:07:47 +03:00
|
|
|
// mixed groups and users
|
2014-10-31 13:41:07 +03:00
|
|
|
[
|
|
|
|
['user1', 'user2'],
|
|
|
|
['group1', 'group2'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider hooksAddStorageDataProvider
|
|
|
|
*/
|
|
|
|
public function testHooksAddStorage($applicableUsers, $applicableGroups, $expectedCalls) {
|
|
|
|
$storage = $this->makeTestStorageData();
|
|
|
|
$storage->setApplicableUsers($applicableUsers);
|
|
|
|
$storage->setApplicableGroups($applicableGroups);
|
|
|
|
$this->service->addStorage($storage);
|
|
|
|
|
|
|
|
$this->assertCount(count($expectedCalls), self::$hookCalls);
|
|
|
|
|
|
|
|
foreach ($expectedCalls as $index => $call) {
|
|
|
|
$this->assertHookCall(
|
|
|
|
self::$hookCalls[$index],
|
|
|
|
$call[0],
|
|
|
|
$storage->getMountPoint(),
|
|
|
|
$call[1],
|
|
|
|
$call[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function hooksUpdateStorageDataProvider() {
|
2014-10-31 13:41:07 +03:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
// nothing to multiple users and groups
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
['user1', 'user2'],
|
|
|
|
['group1', 'group2'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
// delete the "all entry"
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'all',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// adding a user and a group
|
|
|
|
['user1'],
|
|
|
|
['group1'],
|
|
|
|
['user1', 'user2'],
|
|
|
|
['group1', 'group2'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// removing a user and a group
|
|
|
|
['user1', 'user2'],
|
|
|
|
['group1', 'group2'],
|
|
|
|
['user1'],
|
|
|
|
['group1'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// removing all
|
|
|
|
['user1'],
|
|
|
|
['group1'],
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1'
|
|
|
|
],
|
|
|
|
// create the "all" entry
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'all'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// no changes
|
|
|
|
['user1'],
|
|
|
|
['group1'],
|
|
|
|
['user1'],
|
|
|
|
['group1'],
|
|
|
|
// no hook calls
|
|
|
|
[]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider hooksUpdateStorageDataProvider
|
|
|
|
*/
|
|
|
|
public function testHooksUpdateStorage(
|
|
|
|
$sourceApplicableUsers,
|
|
|
|
$sourceApplicableGroups,
|
|
|
|
$updatedApplicableUsers,
|
|
|
|
$updatedApplicableGroups,
|
2015-11-02 15:13:06 +03:00
|
|
|
$expectedCalls) {
|
2014-10-31 13:41:07 +03:00
|
|
|
$storage = $this->makeTestStorageData();
|
|
|
|
$storage->setApplicableUsers($sourceApplicableUsers);
|
|
|
|
$storage->setApplicableGroups($sourceApplicableGroups);
|
|
|
|
$storage = $this->service->addStorage($storage);
|
|
|
|
|
2016-05-13 12:22:28 +03:00
|
|
|
$storage->setApplicableUsers($updatedApplicableUsers);
|
|
|
|
$storage->setApplicableGroups($updatedApplicableGroups);
|
2014-10-31 13:41:07 +03:00
|
|
|
|
|
|
|
// reset calls
|
|
|
|
self::$hookCalls = [];
|
|
|
|
|
|
|
|
$this->service->updateStorage($storage);
|
|
|
|
|
|
|
|
$this->assertCount(count($expectedCalls), self::$hookCalls);
|
|
|
|
|
|
|
|
foreach ($expectedCalls as $index => $call) {
|
|
|
|
$this->assertHookCall(
|
|
|
|
self::$hookCalls[$index],
|
|
|
|
$call[0],
|
|
|
|
'/mountpoint',
|
|
|
|
$call[1],
|
|
|
|
$call[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 00:39:58 +03:00
|
|
|
|
2014-10-31 13:41:07 +03:00
|
|
|
public function testHooksRenameMountPoint() {
|
|
|
|
$storage = $this->makeTestStorageData();
|
|
|
|
$storage->setApplicableUsers(['user1', 'user2']);
|
|
|
|
$storage->setApplicableGroups(['group1', 'group2']);
|
|
|
|
$storage = $this->service->addStorage($storage);
|
|
|
|
|
|
|
|
$storage->setMountPoint('renamedMountpoint');
|
|
|
|
|
|
|
|
// reset calls
|
|
|
|
self::$hookCalls = [];
|
|
|
|
|
|
|
|
$this->service->updateStorage($storage);
|
|
|
|
|
|
|
|
$expectedCalls = [
|
|
|
|
// deletes old mount
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
'/mountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
'/mountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
'/mountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
'/mountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2',
|
|
|
|
],
|
|
|
|
// creates new one
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
'/renamedMountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
'/renamedMountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
'/renamedMountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
'/renamedMountpoint',
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->assertCount(count($expectedCalls), self::$hookCalls);
|
|
|
|
|
|
|
|
foreach ($expectedCalls as $index => $call) {
|
|
|
|
$this->assertHookCall(
|
|
|
|
self::$hookCalls[$index],
|
|
|
|
$call[0],
|
|
|
|
$call[1],
|
|
|
|
$call[2],
|
|
|
|
$call[3]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function hooksDeleteStorageDataProvider() {
|
2014-10-31 13:41:07 +03:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
['user1', 'user2'],
|
|
|
|
['group1', 'group2'],
|
|
|
|
// expected hook calls
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user1',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'user2',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group1'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 13:41:07 +03:00
|
|
|
'group2'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// deleting "all" entry
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
[
|
|
|
|
[
|
|
|
|
Filesystem::signal_delete_mount,
|
2020-07-10 00:39:58 +03:00
|
|
|
\OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 13:41:07 +03:00
|
|
|
'all',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider hooksDeleteStorageDataProvider
|
|
|
|
*/
|
|
|
|
public function testHooksDeleteStorage(
|
|
|
|
$sourceApplicableUsers,
|
|
|
|
$sourceApplicableGroups,
|
2015-11-02 15:13:06 +03:00
|
|
|
$expectedCalls) {
|
2014-10-31 13:41:07 +03:00
|
|
|
$storage = $this->makeTestStorageData();
|
|
|
|
$storage->setApplicableUsers($sourceApplicableUsers);
|
|
|
|
$storage->setApplicableGroups($sourceApplicableGroups);
|
|
|
|
$storage = $this->service->addStorage($storage);
|
|
|
|
|
|
|
|
// reset calls
|
|
|
|
self::$hookCalls = [];
|
|
|
|
|
|
|
|
$this->service->removeStorage($storage->getId());
|
|
|
|
|
|
|
|
$this->assertCount(count($expectedCalls), self::$hookCalls);
|
|
|
|
|
|
|
|
foreach ($expectedCalls as $index => $call) {
|
|
|
|
$this->assertHookCall(
|
|
|
|
self::$hookCalls[$index],
|
|
|
|
$call[0],
|
|
|
|
'/mountpoint',
|
|
|
|
$call[1],
|
|
|
|
$call[2]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|