fix getNodeForPath for non existing part files
This commit is contained in:
parent
dfe267424f
commit
c3e4ced64a
2 changed files with 7 additions and 1 deletions
|
@ -136,7 +136,7 @@ class ObjectTree extends \Sabre\DAV\Tree {
|
|||
$mount = $this->fileView->getMount($path);
|
||||
$storage = $mount->getStorage();
|
||||
$internalPath = $mount->getInternalPath($absPath);
|
||||
if ($storage) {
|
||||
if ($storage && $storage->file_exists($internalPath)) {
|
||||
/**
|
||||
* @var \OC\Files\Storage\Storage $storage
|
||||
*/
|
||||
|
|
|
@ -608,4 +608,10 @@ abstract class Storage extends \Test\TestCase {
|
|||
$stat = $this->instance->stat('foo.txt');
|
||||
$this->assertEquals(6, $stat['size']);
|
||||
}
|
||||
|
||||
public function testPartFile() {
|
||||
$this->instance->file_put_contents('bar.txt.part', 'bar');
|
||||
$this->instance->rename('bar.txt.part', 'bar.txt');
|
||||
$this->assertEquals('bar', $this->instance->file_get_contents('bar.txt'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue