aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-11-24 23:41:39 +0100
committerRobin Appelman <icewind@owncloud.com>2012-11-24 23:41:39 +0100
commit709aacfa0fef29692bff231f09625db5ba0bef6f (patch)
tree1be698b156a5d30db5cb2a353ff7b8ef058d0692
parentd3e37fa157faa59598e92a9aa02c6bbf818b60e0 (diff)
downloadnextcloud-server-709aacfa0fef29692bff231f09625db5ba0bef6f.tar.gz
nextcloud-server-709aacfa0fef29692bff231f09625db5ba0bef6f.zip
change behaviour of Filesystem::getMountPoint when a mountpoint is passed as path without trailing slash
-rw-r--r--lib/files/filesystem.php8
-rw-r--r--tests/lib/files/filesystem.php2
-rw-r--r--tests/lib/files/view.php12
3 files changed, 14 insertions, 8 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index 9e8ce3ec184..4e3eb1989b7 100644
--- a/lib/files/filesystem.php
+++ b/lib/files/filesystem.php
@@ -144,13 +144,7 @@ class Filesystem {
*/
static public function getMountPoint($path) {
\OC_Hook::emit(self::CLASSNAME, 'get_mountpoint', array('path' => $path));
- if (!$path) {
- $path = '/';
- }
- if ($path[0] !== '/') {
- $path = '/' . $path;
- }
- $path = str_replace('//', '/', $path);
+ $path = self::normalizePath($path) . '/';
$foundMountPoint = '';
$mountPoints = array_keys(self::$mounts);
foreach ($mountPoints as $mountpoint) {
diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php
index 363426511bd..5837093fdd6 100644
--- a/tests/lib/files/filesystem.php
+++ b/tests/lib/files/filesystem.php
@@ -60,7 +60,7 @@ class Filesystem extends \PHPUnit_Framework_TestCase {
$this->assertEquals('/',\OC\Files\Filesystem::getMountPoint('/'));
$this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some/folder'));
$this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some/'));
- $this->assertEquals('/',\OC\Files\Filesystem::getMountPoint('/some'));
+ $this->assertEquals('/some/',\OC\Files\Filesystem::getMountPoint('/some'));
list( , $internalPath)=\OC\Files\Filesystem::resolvePath('/some/folder');
$this->assertEquals('folder',$internalPath);
}
diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php
index ecfc803dc23..6f8d29c25b2 100644
--- a/tests/lib/files/view.php
+++ b/tests/lib/files/view.php
@@ -71,6 +71,18 @@ class View extends \PHPUnit_Framework_TestCase {
$this->assertEquals($storageSize + $textSize, $folderData[2]['size']);
$this->assertEquals($storageSize, $folderData[3]['size']);
+ $folderData = $rootView->getDirectoryContent('/substorage');
+ /**
+ * expected entries:
+ * foo.png
+ * foo.txt
+ * folder
+ */
+ $this->assertEquals(3, count($folderData));
+ $this->assertEquals('foo.png', $folderData[0]['name']);
+ $this->assertEquals('foo.txt', $folderData[1]['name']);
+ $this->assertEquals('folder', $folderData[2]['name']);
+
$folderView = new \OC\Files\View('/folder');
$this->assertEquals($rootView->getFileInfo('/folder'), $folderView->getFileInfo('/'));