summaryrefslogtreecommitdiffstats
path: root/tests/lib/traits
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-08-20 14:52:22 +0200
committerRobin Appelman <icewind@owncloud.com>2015-08-20 16:39:32 +0200
commit24a2fff946a36d45cb3bd04263d173ab0d81792b (patch)
tree9d8c167dfaa0d7c4d593a23ad0b90dbf2c90948d /tests/lib/traits
parent3dbfbdaf549f69c63c6e59d91681c7df65789ece (diff)
downloadnextcloud-server-24a2fff946a36d45cb3bd04263d173ab0d81792b.tar.gz
nextcloud-server-24a2fff946a36d45cb3bd04263d173ab0d81792b.zip
add test mountprovider logic to a trait
Diffstat (limited to 'tests/lib/traits')
-rw-r--r--tests/lib/traits/mountprovidertrait.php56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/lib/traits/mountprovidertrait.php b/tests/lib/traits/mountprovidertrait.php
new file mode 100644
index 00000000000..66eca1597c8
--- /dev/null
+++ b/tests/lib/traits/mountprovidertrait.php
@@ -0,0 +1,56 @@
+<?php
+/**
+ * Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace Test\Traits;
+
+use OC\Files\Mount\MountPoint;
+use OC\Files\Storage\StorageFactory;
+use OCP\IUser;
+
+/**
+ * Allow setting mounts for users
+ */
+trait MountProviderTrait {
+ /**
+ * @var \OCP\Files\Config\IMountProvider
+ */
+ protected $mountProvider;
+
+ /**
+ * @var \OC\Files\Storage\StorageFactory
+ */
+ protected $storageFactory;
+
+ protected $mounts = [];
+
+ protected function registerMount($userId, $storage, $mountPoint, $arguments = null) {
+ if (!isset($this->mounts[$userId])) {
+ $this->mounts[$userId] = [];
+ }
+ $this->mounts[$userId][] = new MountPoint($storage, $mountPoint, $arguments, $this->storageFactory);
+ }
+
+ protected function registerStorageWrapper($name, $wrapper) {
+ $this->storageFactory->addStorageWrapper($name, $wrapper);
+ }
+
+ protected function setUpMountProviderTrait() {
+ $this->storageFactory = new StorageFactory();
+ $this->mountProvider = $this->getMock('\OCP\Files\Config\IMountProvider');
+ $this->mountProvider->expects($this->any())
+ ->method('getMountsForUser')
+ ->will($this->returnCallback(function (IUser $user) {
+ if (isset($this->mounts[$user->getUID()])) {
+ return $this->mounts[$user->getUID()];
+ } else {
+ return [];
+ }
+ }));
+ \OC::$server->getMountProviderCollection()->registerProvider($this->mountProvider);
+ }
+}