summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-01-28 00:59:43 +0100
committerRobin Appelman <icewind@owncloud.com>2013-01-28 00:59:43 +0100
commit577e3b11d7b486d09334f39215814638704e84b9 (patch)
tree8b7833e3a731c04541ce35615b9aabc9b0795359
parent4cae1416733019fe4c7465f3e167a456fb790502 (diff)
downloadnextcloud-server-577e3b11d7b486d09334f39215814638704e84b9.tar.gz
nextcloud-server-577e3b11d7b486d09334f39215814638704e84b9.zip
Filesystem: return all matching mounts in Mount::findById
-rw-r--r--lib/files/mount.php7
-rw-r--r--tests/lib/files/mount.php8
2 files changed, 10 insertions, 5 deletions
diff --git a/lib/files/mount.php b/lib/files/mount.php
index e28b6471fe3..74ee483b1be 100644
--- a/lib/files/mount.php
+++ b/lib/files/mount.php
@@ -174,14 +174,15 @@ class Mount {
/**
* @param string $id
- * @return \OC\Files\Storage\Storage
+ * @return \OC\Files\Storage\Storage[]
*/
public static function findById($id) {
+ $result = array();
foreach (self::$mounts as $mount) {
if ($mount->getStorageId() === $id) {
- return $mount;
+ $result[] = $mount;
}
}
- return null;
+ return $result;
}
}
diff --git a/tests/lib/files/mount.php b/tests/lib/files/mount.php
index 9f16b036275..f223f0f6c53 100644
--- a/tests/lib/files/mount.php
+++ b/tests/lib/files/mount.php
@@ -23,7 +23,8 @@ class Mount extends \PHPUnit_Framework_TestCase {
$this->assertEquals($rootMount, \OC\Files\Mount::find('/'));
$this->assertEquals($rootMount, \OC\Files\Mount::find('/foo/bar'));
- $mount = new \OC\Files\Mount(new Temporary(array()), '/foo');
+ $storage = new Temporary(array());
+ $mount = new \OC\Files\Mount($storage, '/foo');
$this->assertEquals($rootMount, \OC\Files\Mount::find('/'));
$this->assertEquals($mount, \OC\Files\Mount::find('/foo/bar'));
@@ -32,6 +33,9 @@ class Mount extends \PHPUnit_Framework_TestCase {
$this->assertEquals(2, count(\OC\Files\Mount::findIn('/')));
$id = $mount->getStorageId();
- $this->assertEquals($mount, \OC\Files\Mount::findById($id));
+ $this->assertEquals(array($mount), \OC\Files\Mount::findById($id));
+
+ $mount2 = new \OC\Files\Mount($storage, '/foo/bar');
+ $this->assertEquals(array($mount, $mount2), \OC\Files\Mount::findById($id));
}
}