Convert invalid path exception to sabre exception on MOVE

This commit is contained in:
Vincent Petry 2015-06-15 17:49:11 +02:00
parent b6165b6865
commit 1f91e9e65d
2 changed files with 6 additions and 2 deletions

View File

@ -106,7 +106,11 @@ class ObjectTree extends \Sabre\DAV\Tree {
$path = trim($path, '/');
if ($path) {
$this->fileView->verifyPath($path, basename($path));
try {
$this->fileView->verifyPath($path, basename($path));
} catch (\OCP\Files\InvalidPathException $ex) {
throw new InvalidPath($ex->getMessage());
}
}
if (isset($this->cache[$path])) {

View File

@ -239,7 +239,7 @@ class ObjectTree extends \Test\TestCase {
}
/**
* @expectedException \OCP\Files\InvalidPathException
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
*/
public function testGetNodeForPathInvalidPath() {
$path = '/foo\bar';