2014-10-31 06:41:07 -04:00
|
|
|
<?php
|
2025-05-17 05:46:26 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2014-10-31 06:41:07 -04:00
|
|
|
/**
|
2024-06-06 03:55:47 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2014-10-31 06:41:07 -04:00
|
|
|
*/
|
2016-05-13 05:22:28 -04:00
|
|
|
namespace OCA\Files_External\Tests\Service;
|
2014-10-31 06:41:07 -04:00
|
|
|
|
2019-11-22 14:52:10 -05:00
|
|
|
use OC\Files\Filesystem;
|
2024-10-10 06:40:31 -04:00
|
|
|
use OCA\Files_External\MountConfig;
|
2014-10-31 06:41:07 -04:00
|
|
|
|
2019-11-22 14:52:10 -05:00
|
|
|
use OCA\Files_External\Service\GlobalStoragesService;
|
2014-10-31 06:41:07 -04:00
|
|
|
|
2015-11-02 07:13:06 -05:00
|
|
|
/**
|
|
|
|
|
* @group DB
|
|
|
|
|
*/
|
2025-05-17 05:46:26 -04:00
|
|
|
class GlobalStoragesServiceTest extends StoragesServiceTestCase {
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function setUp(): void {
|
2014-10-31 06:41:07 -04:00
|
|
|
parent::setUp();
|
2022-03-24 15:31:00 -04:00
|
|
|
$this->service = new GlobalStoragesService($this->backendService, $this->dbConfig, $this->mountCache, $this->eventDispatcher);
|
2014-10-31 06:41:07 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function tearDown(): void {
|
2014-10-31 06:41:07 -04:00
|
|
|
@unlink($this->dataDir . '/mount.json');
|
|
|
|
|
parent::tearDown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function makeTestStorageData() {
|
2015-11-02 07:13:06 -05:00
|
|
|
return $this->makeStorageConfig([
|
2014-10-31 06:41:07 -04:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => [],
|
|
|
|
|
'applicableGroups' => [],
|
|
|
|
|
'priority' => 15,
|
2015-03-13 07:49:11 -04:00
|
|
|
'mountOptions' => [
|
|
|
|
|
'preview' => false,
|
|
|
|
|
]
|
2014-10-31 06:41:07 -04:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-17 05:46:26 -04:00
|
|
|
public static function storageDataProvider(): array {
|
2014-10-31 06:41:07 -04:00
|
|
|
return [
|
|
|
|
|
// all users
|
|
|
|
|
[
|
2015-08-11 13:45:07 -04:00
|
|
|
[
|
2014-10-31 06:41:07 -04:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => [],
|
|
|
|
|
'applicableGroups' => [],
|
|
|
|
|
'priority' => 15,
|
2015-08-11 13:45:07 -04:00
|
|
|
],
|
2014-10-31 06:41:07 -04:00
|
|
|
],
|
|
|
|
|
// some users
|
|
|
|
|
[
|
2015-08-11 13:45:07 -04:00
|
|
|
[
|
2014-10-31 06:41:07 -04:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => ['user1', 'user2'],
|
|
|
|
|
'applicableGroups' => [],
|
|
|
|
|
'priority' => 15,
|
2015-08-11 13:45:07 -04:00
|
|
|
],
|
2014-10-31 06:41:07 -04:00
|
|
|
],
|
|
|
|
|
// some groups
|
|
|
|
|
[
|
2015-08-11 13:45:07 -04:00
|
|
|
[
|
2014-10-31 06:41:07 -04:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => [],
|
|
|
|
|
'applicableGroups' => ['group1', 'group2'],
|
|
|
|
|
'priority' => 15,
|
2015-08-11 13:45:07 -04:00
|
|
|
],
|
2014-10-31 06:41:07 -04:00
|
|
|
],
|
|
|
|
|
// both users and groups
|
|
|
|
|
[
|
2015-08-11 13:45:07 -04:00
|
|
|
[
|
2014-10-31 06:41:07 -04:00
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => ['user1', 'user2'],
|
|
|
|
|
'applicableGroups' => ['group1', 'group2'],
|
|
|
|
|
'priority' => 15,
|
2015-08-11 13:45:07 -04:00
|
|
|
],
|
2014-10-31 06:41:07 -04:00
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('storageDataProvider')]
|
2015-08-11 13:45:07 -04:00
|
|
|
public function testAddStorage($storageParams): void {
|
|
|
|
|
$storage = $this->makeStorageConfig($storageParams);
|
2014-10-31 06:41:07 -04:00
|
|
|
$newStorage = $this->service->addStorage($storage);
|
|
|
|
|
|
2015-11-02 07:13:06 -05:00
|
|
|
$baseId = $newStorage->getId();
|
2014-10-31 06:41:07 -04:00
|
|
|
|
2015-11-02 07:13:06 -05:00
|
|
|
$newStorage = $this->service->getStorage($baseId);
|
2014-10-31 06:41:07 -04:00
|
|
|
|
|
|
|
|
$this->assertEquals($storage->getMountPoint(), $newStorage->getMountPoint());
|
2015-08-11 13:45:07 -04: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 05:54:03 -04:00
|
|
|
$this->assertEquals($storage->getAuthMechanism(), $newStorage->getAuthMechanism());
|
2014-10-31 06:41:07 -04: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 07:13:06 -05:00
|
|
|
$this->assertEquals($baseId + 1, $nextStorage->getId());
|
2014-10-31 06:41:07 -04:00
|
|
|
}
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('storageDataProvider')]
|
2015-08-11 13:45:07 -04:00
|
|
|
public function testUpdateStorage($updatedStorageParams): void {
|
|
|
|
|
$updatedStorage = $this->makeStorageConfig($updatedStorageParams);
|
2014-10-31 06:41:07 -04:00
|
|
|
$storage = $this->makeStorageConfig([
|
|
|
|
|
'mountPoint' => 'mountpoint',
|
2015-08-12 15:03:11 -04:00
|
|
|
'backendIdentifier' => 'identifier:\OCA\Files_External\Lib\Backend\SMB',
|
|
|
|
|
'authMechanismIdentifier' => 'identifier:\Auth\Mechanism',
|
2014-10-31 06:41:07 -04:00
|
|
|
'backendOptions' => [
|
|
|
|
|
'option1' => 'value1',
|
|
|
|
|
'option2' => 'value2',
|
|
|
|
|
'password' => 'testPassword',
|
|
|
|
|
],
|
|
|
|
|
'applicableUsers' => [],
|
|
|
|
|
'applicableGroups' => [],
|
|
|
|
|
'priority' => 15,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$newStorage = $this->service->addStorage($storage);
|
2015-11-02 07:13:06 -05:00
|
|
|
$id = $newStorage->getId();
|
2014-10-31 06:41:07 -04:00
|
|
|
|
2015-11-02 07:13:06 -05:00
|
|
|
$updatedStorage->setId($id);
|
2014-10-31 06:41:07 -04:00
|
|
|
|
|
|
|
|
$this->service->updateStorage($updatedStorage);
|
2015-11-02 07:13:06 -05:00
|
|
|
$newStorage = $this->service->getStorage($id);
|
2014-10-31 06:41:07 -04:00
|
|
|
|
|
|
|
|
$this->assertEquals($updatedStorage->getMountPoint(), $newStorage->getMountPoint());
|
|
|
|
|
$this->assertEquals($updatedStorage->getBackendOptions()['password'], $newStorage->getBackendOptions()['password']);
|
2025-06-06 06:17:35 -04:00
|
|
|
$this->assertEqualsCanonicalizing($updatedStorage->getApplicableUsers(), $newStorage->getApplicableUsers());
|
2014-10-31 06:41:07 -04:00
|
|
|
$this->assertEquals($updatedStorage->getApplicableGroups(), $newStorage->getApplicableGroups());
|
|
|
|
|
$this->assertEquals($updatedStorage->getPriority(), $newStorage->getPriority());
|
|
|
|
|
$this->assertEquals(0, $newStorage->getStatus());
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-17 05:46:26 -04:00
|
|
|
public static function hooksAddStorageDataProvider(): array {
|
2014-10-31 06:41:07 -04:00
|
|
|
return [
|
|
|
|
|
// applicable all
|
|
|
|
|
[
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'all'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// single user
|
|
|
|
|
[
|
|
|
|
|
['user1'],
|
|
|
|
|
[],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// single group
|
|
|
|
|
[
|
|
|
|
|
[],
|
|
|
|
|
['group1'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// multiple users
|
|
|
|
|
[
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
[],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
// multiple groups
|
|
|
|
|
[
|
|
|
|
|
[],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
2020-04-09 10:07:47 -04:00
|
|
|
// mixed groups and users
|
2014-10-31 06:41:07 -04:00
|
|
|
[
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('hooksAddStorageDataProvider')]
|
2014-10-31 06:41:07 -04:00
|
|
|
public function testHooksAddStorage($applicableUsers, $applicableGroups, $expectedCalls): void {
|
|
|
|
|
$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]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-17 05:46:26 -04:00
|
|
|
public static function hooksUpdateStorageDataProvider(): array {
|
2014-10-31 06:41:07 -04:00
|
|
|
return [
|
|
|
|
|
[
|
|
|
|
|
// nothing to multiple users and groups
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
// delete the "all entry"
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'all',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
// adding a user and a group
|
|
|
|
|
['user1'],
|
|
|
|
|
['group1'],
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
// removing a user and a group
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
['user1'],
|
|
|
|
|
['group1'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
// removing all
|
|
|
|
|
['user1'],
|
|
|
|
|
['group1'],
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1'
|
|
|
|
|
],
|
|
|
|
|
// create the "all" entry
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'all'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
// no changes
|
|
|
|
|
['user1'],
|
|
|
|
|
['group1'],
|
|
|
|
|
['user1'],
|
|
|
|
|
['group1'],
|
|
|
|
|
// no hook calls
|
|
|
|
|
[]
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('hooksUpdateStorageDataProvider')]
|
2014-10-31 06:41:07 -04:00
|
|
|
public function testHooksUpdateStorage(
|
2025-05-17 05:46:26 -04:00
|
|
|
array $sourceApplicableUsers,
|
|
|
|
|
array $sourceApplicableGroups,
|
|
|
|
|
array $updatedApplicableUsers,
|
|
|
|
|
array $updatedApplicableGroups,
|
|
|
|
|
array $expectedCalls,
|
|
|
|
|
): void {
|
2014-10-31 06:41:07 -04:00
|
|
|
$storage = $this->makeTestStorageData();
|
|
|
|
|
$storage->setApplicableUsers($sourceApplicableUsers);
|
|
|
|
|
$storage->setApplicableGroups($sourceApplicableGroups);
|
|
|
|
|
$storage = $this->service->addStorage($storage);
|
|
|
|
|
|
2016-05-13 05:22:28 -04:00
|
|
|
$storage->setApplicableUsers($updatedApplicableUsers);
|
|
|
|
|
$storage->setApplicableGroups($updatedApplicableGroups);
|
2014-10-31 06:41:07 -04: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-09 17:39:58 -04:00
|
|
|
|
2014-10-31 06:41:07 -04:00
|
|
|
public function testHooksRenameMountPoint(): void {
|
|
|
|
|
$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',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
|
'/mountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
|
'/mountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
|
|
|
|
'/mountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2',
|
|
|
|
|
],
|
|
|
|
|
// creates new one
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
|
'/renamedMountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
|
'/renamedMountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
|
'/renamedMountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_create_mount,
|
|
|
|
|
'/renamedMountpoint',
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04: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]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-17 05:46:26 -04:00
|
|
|
public static function hooksDeleteStorageDataProvider(): array {
|
2014-10-31 06:41:07 -04:00
|
|
|
return [
|
|
|
|
|
[
|
|
|
|
|
['user1', 'user2'],
|
|
|
|
|
['group1', 'group2'],
|
|
|
|
|
// expected hook calls
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user1',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'user2',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group1'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_GROUP,
|
2014-10-31 06:41:07 -04:00
|
|
|
'group2'
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
// deleting "all" entry
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
Filesystem::signal_delete_mount,
|
2024-10-10 06:40:31 -04:00
|
|
|
MountConfig::MOUNT_TYPE_USER,
|
2014-10-31 06:41:07 -04:00
|
|
|
'all',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('hooksDeleteStorageDataProvider')]
|
2014-10-31 06:41:07 -04:00
|
|
|
public function testHooksDeleteStorage(
|
2025-05-17 05:46:26 -04:00
|
|
|
array $sourceApplicableUsers,
|
|
|
|
|
array $sourceApplicableGroups,
|
|
|
|
|
array $expectedCalls,
|
|
|
|
|
): void {
|
2014-10-31 06:41:07 -04: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]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|