123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @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\Service;
- use OC\Files\Filesystem;
- use OCA\Files_External\Lib\Auth\AuthMechanism;
- use OCA\Files_External\Lib\Auth\InvalidAuth;
- use OCA\Files_External\Lib\Backend\Backend;
- use OCA\Files_External\Lib\Backend\InvalidBackend;
- use OCA\Files_External\Lib\StorageConfig;
- use OCA\Files_External\NotFoundException;
- use OCA\Files_External\Service\BackendService;
- use OCA\Files_External\Service\DBConfigService;
- use OCA\Files_External\Service\StoragesService;
- use OCP\AppFramework\IAppContainer;
- use OCP\Files\Config\IUserMountCache;
- class CleaningDBConfig extends DBConfigService {
- private $mountIds = [];
- public function addMount($mountPoint, $storageBackend, $authBackend, $priority, $type) {
- $id = parent::addMount($mountPoint, $storageBackend, $authBackend, $priority, $type); // TODO: Change the autogenerated stub
- $this->mountIds[] = $id;
- return $id;
- }
- public function clean() {
- foreach ($this->mountIds as $id) {
- $this->removeMount($id);
- }
- }
- }
- /**
- * @group DB
- */
- abstract class StoragesServiceTest extends \Test\TestCase {
- /**
- * @var StoragesService
- */
- protected $service;
- /** @var BackendService */
- protected $backendService;
- /**
- * Data directory
- *
- * @var string
- */
- protected $dataDir;
- /** @var CleaningDBConfig */
- protected $dbConfig;
- /**
- * Hook calls
- *
- * @var array
- */
- protected static $hookCalls;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\OCP\Files\Config\IUserMountCache
- */
- protected $mountCache;
- protected function setUp(): void {
- parent::setUp();
- $this->dbConfig = new CleaningDBConfig(\OC::$server->getDatabaseConnection(), \OC::$server->getCrypto());
- self::$hookCalls = [];
- $config = \OC::$server->getConfig();
- $this->dataDir = $config->getSystemValue(
- 'datadirectory',
- \OC::$SERVERROOT . '/data/'
- );
- \OC_Mount_Config::$skipTest = true;
- $this->mountCache = $this->createMock(IUserMountCache::class);
- // prepare BackendService mock
- $this->backendService =
- $this->getMockBuilder('\OCA\Files_External\Service\BackendService')
- ->disableOriginalConstructor()
- ->getMock();
- $authMechanisms = [
- 'identifier:\Auth\Mechanism' => $this->getAuthMechMock('null', '\Auth\Mechanism'),
- 'identifier:\Other\Auth\Mechanism' => $this->getAuthMechMock('null', '\Other\Auth\Mechanism'),
- 'identifier:\OCA\Files_External\Lib\Auth\NullMechanism' => $this->getAuthMechMock(),
- ];
- $this->backendService->method('getAuthMechanism')
- ->willReturnCallback(function ($class) use ($authMechanisms) {
- if (isset($authMechanisms[$class])) {
- return $authMechanisms[$class];
- }
- return null;
- });
- $this->backendService->method('getAuthMechanismsByScheme')
- ->willReturnCallback(function ($schemes) use ($authMechanisms) {
- return array_filter($authMechanisms, function ($authMech) use ($schemes) {
- return in_array($authMech->getScheme(), $schemes, true);
- });
- });
- $this->backendService->method('getAuthMechanisms')
- ->willReturn($authMechanisms);
- $sftpBackend = $this->getBackendMock('\OCA\Files_External\Lib\Backend\SFTP', '\OCA\Files_External\Lib\Storage\SFTP');
- $backends = [
- 'identifier:\OCA\Files_External\Lib\Backend\DAV' => $this->getBackendMock('\OCA\Files_External\Lib\Backend\DAV', '\OC\Files\Storage\DAV'),
- 'identifier:\OCA\Files_External\Lib\Backend\SMB' => $this->getBackendMock('\OCA\Files_External\Lib\Backend\SMB', '\OCA\Files_External\Lib\Storage\SMB'),
- 'identifier:\OCA\Files_External\Lib\Backend\SFTP' => $sftpBackend,
- 'identifier:sftp_alias' => $sftpBackend,
- ];
- $backends['identifier:\OCA\Files_External\Lib\Backend\SFTP']->method('getLegacyAuthMechanism')
- ->willReturn($authMechanisms['identifier:\Other\Auth\Mechanism']);
- $this->backendService->method('getBackend')
- ->willReturnCallback(function ($backendClass) use ($backends) {
- if (isset($backends[$backendClass])) {
- return $backends[$backendClass];
- }
- return null;
- });
- $this->backendService->method('getBackends')
- ->willReturn($backends);
- \OCP\Util::connectHook(
- Filesystem::CLASSNAME,
- Filesystem::signal_create_mount,
- get_class($this), 'createHookCallback');
- \OCP\Util::connectHook(
- Filesystem::CLASSNAME,
- Filesystem::signal_delete_mount,
- get_class($this), 'deleteHookCallback');
- $containerMock = $this->createMock(IAppContainer::class);
- $containerMock->method('query')
- ->willReturnCallback(function ($name) {
- if ($name === 'OCA\Files_External\Service\BackendService') {
- return $this->backendService;
- }
- });
- \OC_Mount_Config::$app = $this->getMockBuilder('\OCA\Files_External\Appinfo\Application')
- ->disableOriginalConstructor()
- ->getMock();
- \OC_Mount_Config::$app->method('getContainer')
- ->willReturn($containerMock);
- }
- protected function tearDown(): void {
- \OC_Mount_Config::$skipTest = false;
- self::$hookCalls = [];
- if ($this->dbConfig) {
- $this->dbConfig->clean();
- }
- }
- protected function getBackendMock($class = '\OCA\Files_External\Lib\Backend\SMB', $storageClass = '\OCA\Files_External\Lib\Storage\SMB') {
- $backend = $this->getMockBuilder(Backend::class)
- ->disableOriginalConstructor()
- ->getMock();
- $backend->method('getStorageClass')
- ->willReturn($storageClass);
- $backend->method('getIdentifier')
- ->willReturn('identifier:' . $class);
- return $backend;
- }
- protected function getAuthMechMock($scheme = 'null', $class = '\OCA\Files_External\Lib\Auth\NullMechanism') {
- $authMech = $this->getMockBuilder(AuthMechanism::class)
- ->disableOriginalConstructor()
- ->getMock();
- $authMech->method('getScheme')
- ->willReturn($scheme);
- $authMech->method('getIdentifier')
- ->willReturn('identifier:' . $class);
- return $authMech;
- }
- /**
- * Creates a StorageConfig instance based on array data
- *
- * @param array $data
- *
- * @return StorageConfig storage config instance
- */
- protected function makeStorageConfig($data) {
- $storage = new StorageConfig();
- if (isset($data['id'])) {
- $storage->setId($data['id']);
- }
- $storage->setMountPoint($data['mountPoint']);
- if (!isset($data['backend'])) {
- // data providers are run before $this->backendService is initialised
- // so $data['backend'] can be specified directly
- $data['backend'] = $this->backendService->getBackend($data['backendIdentifier']);
- }
- if (!isset($data['backend'])) {
- throw new \Exception('oops, no backend');
- }
- if (!isset($data['authMechanism'])) {
- $data['authMechanism'] = $this->backendService->getAuthMechanism($data['authMechanismIdentifier']);
- }
- if (!isset($data['authMechanism'])) {
- throw new \Exception('oops, no auth mechanism');
- }
- $storage->setBackend($data['backend']);
- $storage->setAuthMechanism($data['authMechanism']);
- $storage->setBackendOptions($data['backendOptions']);
- if (isset($data['applicableUsers'])) {
- $storage->setApplicableUsers($data['applicableUsers']);
- }
- if (isset($data['applicableGroups'])) {
- $storage->setApplicableGroups($data['applicableGroups']);
- }
- if (isset($data['priority'])) {
- $storage->setPriority($data['priority']);
- }
- if (isset($data['mountOptions'])) {
- $storage->setMountOptions($data['mountOptions']);
- }
- return $storage;
- }
- protected function ActualNonExistingStorageTest() {
- $backend = $this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\SMB');
- $authMechanism = $this->backendService->getAuthMechanism('identifier:\Auth\Mechanism');
- $storage = new StorageConfig(255);
- $storage->setMountPoint('mountpoint');
- $storage->setBackend($backend);
- $storage->setAuthMechanism($authMechanism);
- $this->service->updateStorage($storage);
- }
- public function testNonExistingStorage() {
- $this->expectException(\OCA\Files_External\NotFoundException::class);
- $this->ActualNonExistingStorageTest();
- }
- public function deleteStorageDataProvider() {
- return [
- // regular case, can properly delete the oc_storages entry
- [
- [
- 'host' => 'example.com',
- 'user' => 'test',
- 'password' => 'testPassword',
- 'root' => 'someroot',
- ],
- 'webdav::test@example.com//someroot/',
- 0
- ],
- // special case with $user vars, cannot auto-remove the oc_storages entry
- [
- [
- 'host' => 'example.com',
- 'user' => '$user',
- 'password' => 'testPassword',
- 'root' => 'someroot',
- ],
- 'webdav::someone@example.com//someroot/',
- 1
- ],
- ];
- }
- /**
- * @dataProvider deleteStorageDataProvider
- */
- public function testDeleteStorage($backendOptions, $rustyStorageId, $expectedCountAfterDeletion) {
- $backend = $this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\DAV');
- $authMechanism = $this->backendService->getAuthMechanism('identifier:\Auth\Mechanism');
- $storage = new StorageConfig(255);
- $storage->setMountPoint('mountpoint');
- $storage->setBackend($backend);
- $storage->setAuthMechanism($authMechanism);
- $storage->setBackendOptions($backendOptions);
- $newStorage = $this->service->addStorage($storage);
- $id = $newStorage->getId();
- // manually trigger storage entry because normally it happens on first
- // access, which isn't possible within this test
- $storageCache = new \OC\Files\Cache\Storage($rustyStorageId);
- // get numeric id for later check
- $numericId = $storageCache->getNumericId();
- $this->service->removeStorage($id);
- $caught = false;
- try {
- $this->service->getStorage(1);
- } catch (NotFoundException $e) {
- $caught = true;
- }
- $this->assertTrue($caught);
- // storage id was removed from oc_storages
- $qb = \OC::$server->getDatabaseConnection()->getQueryBuilder();
- $storageCheckQuery = $qb->select('*')
- ->from('storages')
- ->where($qb->expr()->eq('numeric_id', $qb->expr()->literal($numericId)));
- $storages = $storageCheckQuery->execute()->fetchAll();
- $this->assertCount($expectedCountAfterDeletion, $storages, "expected $expectedCountAfterDeletion storages, got " . json_encode($storages));
- }
- protected function actualDeletedUnexistingStorageTest() {
- $this->service->removeStorage(255);
- }
- public function testDeleteUnexistingStorage() {
- $this->expectException(\OCA\Files_External\NotFoundException::class);
- $this->actualDeletedUnexistingStorageTest();
- }
- public function testCreateStorage() {
- $mountPoint = 'mount';
- $backendIdentifier = 'identifier:\OCA\Files_External\Lib\Backend\SMB';
- $authMechanismIdentifier = 'identifier:\Auth\Mechanism';
- $backendOptions = ['param' => 'foo', 'param2' => 'bar'];
- $mountOptions = ['option' => 'foobar'];
- $applicableUsers = ['user1', 'user2'];
- $applicableGroups = ['group'];
- $priority = 123;
- $backend = $this->backendService->getBackend($backendIdentifier);
- $authMechanism = $this->backendService->getAuthMechanism($authMechanismIdentifier);
- $storage = $this->service->createStorage(
- $mountPoint,
- $backendIdentifier,
- $authMechanismIdentifier,
- $backendOptions,
- $mountOptions,
- $applicableUsers,
- $applicableGroups,
- $priority
- );
- $this->assertEquals('/' . $mountPoint, $storage->getMountPoint());
- $this->assertEquals($backend, $storage->getBackend());
- $this->assertEquals($authMechanism, $storage->getAuthMechanism());
- $this->assertEquals($backendOptions, $storage->getBackendOptions());
- $this->assertEquals($mountOptions, $storage->getMountOptions());
- $this->assertEquals($applicableUsers, $storage->getApplicableUsers());
- $this->assertEquals($applicableGroups, $storage->getApplicableGroups());
- $this->assertEquals($priority, $storage->getPriority());
- }
- public function testCreateStorageInvalidClass() {
- $storage = $this->service->createStorage(
- 'mount',
- 'identifier:\OC\Not\A\Backend',
- 'identifier:\Auth\Mechanism',
- []
- );
- $this->assertInstanceOf(InvalidBackend::class, $storage->getBackend());
- }
- public function testCreateStorageInvalidAuthMechanismClass() {
- $storage = $this->service->createStorage(
- 'mount',
- 'identifier:\OCA\Files_External\Lib\Backend\SMB',
- 'identifier:\Not\An\Auth\Mechanism',
- []
- );
- $this->assertInstanceOf(InvalidAuth::class, $storage->getAuthMechanism());
- }
- public function testGetStoragesBackendNotVisible() {
- $backend = $this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\SMB');
- $backend->expects($this->once())
- ->method('isVisibleFor')
- ->with($this->service->getVisibilityType())
- ->willReturn(false);
- $authMechanism = $this->backendService->getAuthMechanism('identifier:\Auth\Mechanism');
- $authMechanism->method('isVisibleFor')
- ->with($this->service->getVisibilityType())
- ->willReturn(true);
- $storage = new StorageConfig(255);
- $storage->setMountPoint('mountpoint');
- $storage->setBackend($backend);
- $storage->setAuthMechanism($authMechanism);
- $storage->setBackendOptions(['password' => 'testPassword']);
- $newStorage = $this->service->addStorage($storage);
- $this->assertCount(1, $this->service->getAllStorages());
- $this->assertEmpty($this->service->getStorages());
- }
- public function testGetStoragesAuthMechanismNotVisible() {
- $backend = $this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\SMB');
- $backend->method('isVisibleFor')
- ->with($this->service->getVisibilityType())
- ->willReturn(true);
- $authMechanism = $this->backendService->getAuthMechanism('identifier:\Auth\Mechanism');
- $authMechanism->expects($this->once())
- ->method('isVisibleFor')
- ->with($this->service->getVisibilityType())
- ->willReturn(false);
- $storage = new StorageConfig(255);
- $storage->setMountPoint('mountpoint');
- $storage->setBackend($backend);
- $storage->setAuthMechanism($authMechanism);
- $storage->setBackendOptions(['password' => 'testPassword']);
- $newStorage = $this->service->addStorage($storage);
- $this->assertCount(1, $this->service->getAllStorages());
- $this->assertEmpty($this->service->getStorages());
- }
- public static function createHookCallback($params) {
- self::$hookCalls[] = [
- 'signal' => Filesystem::signal_create_mount,
- 'params' => $params
- ];
- }
- public static function deleteHookCallback($params) {
- self::$hookCalls[] = [
- 'signal' => Filesystem::signal_delete_mount,
- 'params' => $params
- ];
- }
- /**
- * Asserts hook call
- *
- * @param array $callData hook call data to check
- * @param string $signal signal name
- * @param string $mountPath mount path
- * @param string $mountType mount type
- * @param string $applicable applicable users
- */
- protected function assertHookCall($callData, $signal, $mountPath, $mountType, $applicable) {
- $this->assertEquals($signal, $callData['signal']);
- $params = $callData['params'];
- $this->assertEquals(
- $mountPath,
- $params[Filesystem::signal_param_path]
- );
- $this->assertEquals(
- $mountType,
- $params[Filesystem::signal_param_mount_type]
- );
- $this->assertEquals(
- $applicable,
- $params[Filesystem::signal_param_users]
- );
- }
- public function testUpdateStorageMountPoint() {
- $backend = $this->backendService->getBackend('identifier:\OCA\Files_External\Lib\Backend\SMB');
- $authMechanism = $this->backendService->getAuthMechanism('identifier:\Auth\Mechanism');
- $storage = new StorageConfig();
- $storage->setMountPoint('mountpoint');
- $storage->setBackend($backend);
- $storage->setAuthMechanism($authMechanism);
- $storage->setBackendOptions(['password' => 'testPassword']);
- $savedStorage = $this->service->addStorage($storage);
- $newAuthMechanism = $this->backendService->getAuthMechanism('identifier:\Other\Auth\Mechanism');
- $updatedStorage = new StorageConfig($savedStorage->getId());
- $updatedStorage->setMountPoint('mountpoint2');
- $updatedStorage->setBackend($backend);
- $updatedStorage->setAuthMechanism($newAuthMechanism);
- $updatedStorage->setBackendOptions(['password' => 'password2']);
- $this->service->updateStorage($updatedStorage);
- $savedStorage = $this->service->getStorage($updatedStorage->getId());
- $this->assertEquals('/mountpoint2', $savedStorage->getMountPoint());
- $this->assertEquals($newAuthMechanism, $savedStorage->getAuthMechanism());
- $this->assertEquals('password2', $savedStorage->getBackendOption('password'));
- }
- }
|