961 lines
29 KiB
PHP
961 lines
29 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2013 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\Files\Node;
|
|
|
|
use OC\Files\Cache\Cache;
|
|
use OC\Files\Cache\CacheEntry;
|
|
use OC\Files\Config\CachedMountInfo;
|
|
use OC\Files\FileInfo;
|
|
use OC\Files\Mount\Manager;
|
|
use OC\Files\Mount\MountPoint;
|
|
use OC\Files\Node\Node;
|
|
use OC\Files\Node\Root;
|
|
use OC\Files\Storage\Temporary;
|
|
use OC\Files\Storage\Wrapper\Jail;
|
|
use OC\Files\View;
|
|
use OCP\Files\Mount\IMountPoint;
|
|
use OCP\Files\NotFoundException;
|
|
use OCP\Files\Storage;
|
|
|
|
/**
|
|
* Class FolderTest
|
|
*
|
|
* @group DB
|
|
*
|
|
* @package Test\Files\Node
|
|
*/
|
|
class FolderTest extends NodeTest {
|
|
protected function createTestNode($root, $view, $path) {
|
|
return new \OC\Files\Node\Folder($root, $view, $path);
|
|
}
|
|
|
|
protected function getNodeClass() {
|
|
return '\OC\Files\Node\Folder';
|
|
}
|
|
|
|
protected function getNonExistingNodeClass() {
|
|
return '\OC\Files\Node\NonExistingFolder';
|
|
}
|
|
|
|
protected function getViewDeleteMethod() {
|
|
return 'rmdir';
|
|
}
|
|
|
|
public function testGetDirectoryContent() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->any())
|
|
->method('getDirectoryContent')
|
|
->with('/bar/foo')
|
|
->willReturn([
|
|
new FileInfo('/bar/foo/asd', null, 'foo/asd', ['fileid' => 2, 'path' => '/bar/foo/asd', 'name' => 'asd', 'size' => 100, 'mtime' => 50, 'mimetype' => 'text/plain'], null),
|
|
new FileInfo('/bar/foo/qwerty', null, 'foo/qwerty', ['fileid' => 3, 'path' => '/bar/foo/qwerty', 'name' => 'qwerty', 'size' => 200, 'mtime' => 55, 'mimetype' => 'httpd/unix-directory'], null)
|
|
]);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$children = $node->getDirectoryListing();
|
|
$this->assertEquals(2, count($children));
|
|
$this->assertInstanceOf('\OC\Files\Node\File', $children[0]);
|
|
$this->assertInstanceOf('\OC\Files\Node\Folder', $children[1]);
|
|
$this->assertEquals('asd', $children[0]->getName());
|
|
$this->assertEquals('qwerty', $children[1]->getName());
|
|
$this->assertEquals(2, $children[0]->getId());
|
|
$this->assertEquals(3, $children[1]->getId());
|
|
}
|
|
|
|
public function testGet() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$root->expects($this->once())
|
|
->method('get')
|
|
->with('/bar/foo/asd');
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$node->get('asd');
|
|
}
|
|
|
|
public function testNodeExists() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$child = new \OC\Files\Node\Folder($root, $view, '/bar/foo/asd');
|
|
|
|
$root->expects($this->once())
|
|
->method('get')
|
|
->with('/bar/foo/asd')
|
|
->willReturn($child);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$this->assertTrue($node->nodeExists('asd'));
|
|
}
|
|
|
|
public function testNodeExistsNotExists() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$root->expects($this->once())
|
|
->method('get')
|
|
->with('/bar/foo/asd')
|
|
->will($this->throwException(new NotFoundException()));
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$this->assertFalse($node->nodeExists('asd'));
|
|
}
|
|
|
|
public function testNewFolder() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->once())
|
|
->method('getFileInfo')
|
|
->with('/bar/foo')
|
|
->willReturn($this->getFileInfo(['permissions' => \OCP\Constants::PERMISSION_ALL]));
|
|
|
|
$view->expects($this->once())
|
|
->method('mkdir')
|
|
->with('/bar/foo/asd')
|
|
->willReturn(true);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$child = new \OC\Files\Node\Folder($root, $view, '/bar/foo/asd');
|
|
$result = $node->newFolder('asd');
|
|
$this->assertEquals($child, $result);
|
|
}
|
|
|
|
|
|
public function testNewFolderNotPermitted() {
|
|
$this->expectException(\OCP\Files\NotPermittedException::class);
|
|
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->once())
|
|
->method('getFileInfo')
|
|
->with('/bar/foo')
|
|
->willReturn($this->getFileInfo(['permissions' => \OCP\Constants::PERMISSION_READ]));
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$node->newFolder('asd');
|
|
}
|
|
|
|
public function testNewFile() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->once())
|
|
->method('getFileInfo')
|
|
->with('/bar/foo')
|
|
->willReturn($this->getFileInfo(['permissions' => \OCP\Constants::PERMISSION_ALL]));
|
|
|
|
$view->expects($this->once())
|
|
->method('touch')
|
|
->with('/bar/foo/asd')
|
|
->willReturn(true);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$child = new \OC\Files\Node\File($root, $view, '/bar/foo/asd');
|
|
$result = $node->newFile('asd');
|
|
$this->assertEquals($child, $result);
|
|
}
|
|
|
|
|
|
public function testNewFileNotPermitted() {
|
|
$this->expectException(\OCP\Files\NotPermittedException::class);
|
|
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->once())
|
|
->method('getFileInfo')
|
|
->with('/bar/foo')
|
|
->willReturn($this->getFileInfo(['permissions' => \OCP\Constants::PERMISSION_READ]));
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$node->newFile('asd');
|
|
}
|
|
|
|
public function testGetFreeSpace() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
|
|
$view->expects($this->once())
|
|
->method('free_space')
|
|
->with('/bar/foo')
|
|
->willReturn(100);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$this->assertEquals(100, $node->getFreeSpace());
|
|
}
|
|
|
|
public function testSearch() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
$storage = $this->createMock(Storage::class);
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$mount = $this->createMock(IMountPoint::class);
|
|
$mount->expects($this->once())
|
|
->method('getStorage')
|
|
->willReturn($storage);
|
|
$mount->expects($this->once())
|
|
->method('getInternalPath')
|
|
->willReturn('foo');
|
|
|
|
$cache->expects($this->once())
|
|
->method('search')
|
|
->with('%qw%')
|
|
->willReturn([
|
|
['fileid' => 3, 'path' => 'foo/qwerty', 'name' => 'qwerty', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain']
|
|
]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('/bar/foo')
|
|
->willReturn([]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar/foo')
|
|
->willReturn($mount);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$result = $node->search('qw');
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertEquals('/bar/foo/qwerty', $result[0]->getPath());
|
|
}
|
|
|
|
public function testSearchInRoot() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getUser', 'getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|Storage $storage */
|
|
$storage = $this->createMock(Storage::class);
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$mount = $this->createMock(IMountPoint::class);
|
|
$mount->expects($this->once())
|
|
->method('getStorage')
|
|
->willReturn($storage);
|
|
$mount->expects($this->once())
|
|
->method('getInternalPath')
|
|
->willReturn('files');
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$cache->expects($this->once())
|
|
->method('search')
|
|
->with('%qw%')
|
|
->willReturn([
|
|
['fileid' => 3, 'path' => 'files/foo', 'name' => 'qwerty', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain'],
|
|
['fileid' => 3, 'path' => 'files_trashbin/foo2.d12345', 'name' => 'foo2.d12345', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain'],
|
|
]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('')
|
|
->willReturn([]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('')
|
|
->willReturn($mount);
|
|
|
|
$result = $root->search('qw');
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertEquals('/foo', $result[0]->getPath());
|
|
}
|
|
|
|
public function testSearchInStorageRoot() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
$storage = $this->createMock(Storage::class);
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$mount = $this->createMock(IMountPoint::class);
|
|
$mount->expects($this->once())
|
|
->method('getStorage')
|
|
->willReturn($storage);
|
|
$mount->expects($this->once())
|
|
->method('getInternalPath')
|
|
->willReturn('');
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$cache->expects($this->once())
|
|
->method('search')
|
|
->with('%qw%')
|
|
->willReturn([
|
|
['fileid' => 3, 'path' => 'foo/qwerty', 'name' => 'qwerty', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain']
|
|
]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('/bar')
|
|
->willReturn([]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar')
|
|
->willReturn($mount);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar');
|
|
$result = $node->search('qw');
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertEquals('/bar/foo/qwerty', $result[0]->getPath());
|
|
}
|
|
|
|
public function testSearchSubStorages() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$root->expects($this->any())
|
|
->method('getUser')
|
|
->willReturn($this->user);
|
|
$storage = $this->createMock(Storage::class);
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
$subCache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
$subStorage = $this->createMock(Storage::class);
|
|
$subMount = $this->getMockBuilder(MountPoint::class)->setConstructorArgs([null, ''])->getMock();
|
|
|
|
$mount = $this->createMock(IMountPoint::class);
|
|
$mount->expects($this->once())
|
|
->method('getStorage')
|
|
->willReturn($storage);
|
|
$mount->expects($this->once())
|
|
->method('getInternalPath')
|
|
->willReturn('foo');
|
|
|
|
$subMount->expects($this->once())
|
|
->method('getStorage')
|
|
->willReturn($subStorage);
|
|
|
|
$subMount->expects($this->once())
|
|
->method('getMountPoint')
|
|
->willReturn('/bar/foo/bar/');
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$subStorage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($subCache);
|
|
|
|
$cache->expects($this->once())
|
|
->method('search')
|
|
->with('%qw%')
|
|
->willReturn([
|
|
['fileid' => 3, 'path' => 'foo/qwerty', 'name' => 'qwerty', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain']
|
|
]);
|
|
|
|
$subCache->expects($this->once())
|
|
->method('search')
|
|
->with('%qw%')
|
|
->willReturn([
|
|
['fileid' => 4, 'path' => 'asd/qweasd', 'name' => 'qweasd', 'size' => 200, 'mtime' => 55, 'mimetype' => 'text/plain']
|
|
]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('/bar/foo')
|
|
->willReturn([$subMount]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar/foo')
|
|
->willReturn($mount);
|
|
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$result = $node->search('qw');
|
|
$this->assertEquals(2, count($result));
|
|
}
|
|
|
|
public function testIsSubNode() {
|
|
$file = new Node(null, null, '/foo/bar');
|
|
$folder = new \OC\Files\Node\Folder(null, null, '/foo');
|
|
$this->assertTrue($folder->isSubNode($file));
|
|
$this->assertFalse($folder->isSubNode($folder));
|
|
|
|
$file = new Node(null, null, '/foobar');
|
|
$this->assertFalse($folder->isSubNode($file));
|
|
}
|
|
|
|
public function testGetById() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$storage = $this->createMock(\OC\Files\Storage\Storage::class);
|
|
$mount = new MountPoint($storage, '/bar');
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$fileInfo = new CacheEntry(['path' => 'foo/qwerty', 'mimetype' => 'text/plain'], null);
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$this->userMountCache->expects($this->any())
|
|
->method('getMountsForFileId')
|
|
->with(1)
|
|
->willReturn([new CachedMountInfo(
|
|
$this->user,
|
|
1,
|
|
0,
|
|
'/bar/',
|
|
1,
|
|
''
|
|
)]);
|
|
|
|
$cache->expects($this->once())
|
|
->method('get')
|
|
->with(1)
|
|
->willReturn($fileInfo);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('/bar/foo')
|
|
->willReturn([]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar/foo')
|
|
->willReturn($mount);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$result = $node->getById(1);
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertEquals('/bar/foo/qwerty', $result[0]->getPath());
|
|
}
|
|
|
|
public function testGetByIdMountRoot() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$storage = $this->createMock(\OC\Files\Storage\Storage::class);
|
|
$mount = new MountPoint($storage, '/bar');
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$fileInfo = new CacheEntry(['path' => '', 'mimetype' => 'text/plain'], null);
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$this->userMountCache->expects($this->any())
|
|
->method('getMountsForFileId')
|
|
->with(1)
|
|
->willReturn([new CachedMountInfo(
|
|
$this->user,
|
|
1,
|
|
0,
|
|
'/bar/',
|
|
1,
|
|
''
|
|
)]);
|
|
|
|
$cache->expects($this->once())
|
|
->method('get')
|
|
->with(1)
|
|
->willReturn($fileInfo);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar')
|
|
->willReturn($mount);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar');
|
|
$result = $node->getById(1);
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertEquals('/bar', $result[0]->getPath());
|
|
}
|
|
|
|
public function testGetByIdOutsideFolder() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$storage = $this->createMock(\OC\Files\Storage\Storage::class);
|
|
$mount = new MountPoint($storage, '/bar');
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$fileInfo = new CacheEntry(['path' => 'foobar', 'mimetype' => 'text/plain'], null);
|
|
|
|
$storage->expects($this->once())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$this->userMountCache->expects($this->any())
|
|
->method('getMountsForFileId')
|
|
->with(1)
|
|
->willReturn([new CachedMountInfo(
|
|
$this->user,
|
|
1,
|
|
0,
|
|
'/bar/',
|
|
1,
|
|
''
|
|
)]);
|
|
|
|
$cache->expects($this->once())
|
|
->method('get')
|
|
->with(1)
|
|
->willReturn($fileInfo);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMountsIn')
|
|
->with('/bar/foo')
|
|
->willReturn([]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar/foo')
|
|
->willReturn($mount);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$result = $node->getById(1);
|
|
$this->assertEquals(0, count($result));
|
|
}
|
|
|
|
public function testGetByIdMultipleStorages() {
|
|
$manager = $this->createMock(Manager::class);
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
$storage = $this->createMock(\OC\Files\Storage\Storage::class);
|
|
$mount1 = new MountPoint($storage, '/bar');
|
|
$mount2 = new MountPoint($storage, '/bar/foo/asd');
|
|
$storage->method('getId')->willReturn('');
|
|
$cache = $this->getMockBuilder(Cache::class)->setConstructorArgs([$storage])->getMock();
|
|
|
|
$fileInfo = new CacheEntry(['path' => 'foo/qwerty', 'mimetype' => 'text/plain'], null);
|
|
|
|
$storage->expects($this->exactly(2))
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$this->userMountCache->expects($this->any())
|
|
->method('getMountsForFileId')
|
|
->with(1)
|
|
->willReturn([
|
|
new CachedMountInfo(
|
|
$this->user,
|
|
1,
|
|
0,
|
|
'/bar/',
|
|
1,
|
|
''
|
|
),
|
|
new CachedMountInfo(
|
|
$this->user,
|
|
1,
|
|
0,
|
|
'/bar/foo/asd/',
|
|
1,
|
|
''
|
|
)
|
|
]);
|
|
|
|
$storage->expects($this->any())
|
|
->method('getCache')
|
|
->willReturn($cache);
|
|
|
|
$cache->expects($this->any())
|
|
->method('get')
|
|
->with(1)
|
|
->willReturn($fileInfo);
|
|
|
|
$root->expects($this->any())
|
|
->method('getMountsIn')
|
|
->with('/bar/foo')
|
|
->willReturn([$mount2]);
|
|
|
|
$root->expects($this->once())
|
|
->method('getMount')
|
|
->with('/bar/foo')
|
|
->willReturn($mount1);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, '/bar/foo');
|
|
$result = $node->getById(1);
|
|
$this->assertEquals(2, count($result));
|
|
$this->assertEquals('/bar/foo/qwerty', $result[0]->getPath());
|
|
$this->assertEquals('/bar/foo/asd/foo/qwerty', $result[1]->getPath());
|
|
}
|
|
|
|
public function uniqueNameProvider() {
|
|
return [
|
|
// input, existing, expected
|
|
['foo', [], 'foo'],
|
|
['foo', ['foo'], 'foo (2)'],
|
|
['foo', ['foo', 'foo (2)'], 'foo (3)']
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider uniqueNameProvider
|
|
*/
|
|
public function testGetUniqueName($name, $existingFiles, $expected) {
|
|
$manager = $this->createMock(Manager::class);
|
|
$folderPath = '/bar/foo';
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getUser', 'getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
|
|
$view->expects($this->any())
|
|
->method('file_exists')
|
|
->willReturnCallback(function ($path) use ($existingFiles, $folderPath) {
|
|
foreach ($existingFiles as $existing) {
|
|
if ($folderPath . '/' . $existing === $path) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
});
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, $folderPath);
|
|
$this->assertEquals($expected, $node->getNonExistingName($name));
|
|
}
|
|
|
|
public function testRecent() {
|
|
$manager = $this->createMock(Manager::class);
|
|
$folderPath = '/bar/foo';
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\Node\Root $root */
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getUser', 'getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\FileInfo $folderInfo */
|
|
$folderInfo = $this->getMockBuilder(FileInfo::class)
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$baseTime = 1000;
|
|
$storage = new Temporary();
|
|
$mount = new MountPoint($storage, '');
|
|
|
|
$folderInfo->expects($this->any())
|
|
->method('getMountPoint')
|
|
->willReturn($mount);
|
|
|
|
$cache = $storage->getCache();
|
|
|
|
$id1 = $cache->put('bar/foo/inside.txt', [
|
|
'storage_mtime' => $baseTime,
|
|
'mtime' => $baseTime,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
|
]);
|
|
$id2 = $cache->put('bar/foo/old.txt', [
|
|
'storage_mtime' => $baseTime - 100,
|
|
'mtime' => $baseTime - 100,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'permissions' => \OCP\Constants::PERMISSION_READ
|
|
]);
|
|
$cache->put('bar/asd/outside.txt', [
|
|
'storage_mtime' => $baseTime,
|
|
'mtime' => $baseTime,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3
|
|
]);
|
|
$id3 = $cache->put('bar/foo/older.txt', [
|
|
'storage_mtime' => $baseTime - 600,
|
|
'mtime' => $baseTime - 600,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
|
]);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, $folderPath, $folderInfo);
|
|
|
|
|
|
$nodes = $node->getRecent(5);
|
|
$ids = array_map(function (Node $node) {
|
|
return (int)$node->getId();
|
|
}, $nodes);
|
|
$this->assertEquals([$id1, $id2, $id3], $ids);
|
|
}
|
|
|
|
public function testRecentFolder() {
|
|
$manager = $this->createMock(Manager::class);
|
|
$folderPath = '/bar/foo';
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\Node\Root $root */
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getUser', 'getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\FileInfo $folderInfo */
|
|
$folderInfo = $this->getMockBuilder(FileInfo::class)
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$baseTime = 1000;
|
|
$storage = new Temporary();
|
|
$mount = new MountPoint($storage, '');
|
|
|
|
$folderInfo->expects($this->any())
|
|
->method('getMountPoint')
|
|
->willReturn($mount);
|
|
|
|
$cache = $storage->getCache();
|
|
|
|
$id1 = $cache->put('bar/foo/folder', [
|
|
'storage_mtime' => $baseTime,
|
|
'mtime' => $baseTime,
|
|
'mimetype' => \OCP\Files\FileInfo::MIMETYPE_FOLDER,
|
|
'size' => 3,
|
|
'permissions' => 0
|
|
]);
|
|
$id2 = $cache->put('bar/foo/folder/bar.txt', [
|
|
'storage_mtime' => $baseTime,
|
|
'mtime' => $baseTime,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'parent' => $id1,
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
|
]);
|
|
$id3 = $cache->put('bar/foo/folder/asd.txt', [
|
|
'storage_mtime' => $baseTime - 100,
|
|
'mtime' => $baseTime - 100,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'parent' => $id1,
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
|
]);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, $folderPath, $folderInfo);
|
|
|
|
|
|
$nodes = $node->getRecent(5);
|
|
$ids = array_map(function (Node $node) {
|
|
return (int)$node->getId();
|
|
}, $nodes);
|
|
$this->assertEquals([$id2, $id3], $ids);
|
|
$this->assertEquals($baseTime, $nodes[0]->getMTime());
|
|
$this->assertEquals($baseTime - 100, $nodes[1]->getMTime());
|
|
}
|
|
|
|
public function testRecentJail() {
|
|
$manager = $this->createMock(Manager::class);
|
|
$folderPath = '/bar/foo';
|
|
/**
|
|
* @var \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
|
|
*/
|
|
$view = $this->createMock(View::class);
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\Node\Root $root */
|
|
$root = $this->getMockBuilder(Root::class)
|
|
->setMethods(['getUser', 'getMountsIn', 'getMount'])
|
|
->setConstructorArgs([$manager, $view, $this->user, $this->userMountCache, $this->logger, $this->userManager])
|
|
->getMock();
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OC\Files\FileInfo $folderInfo */
|
|
$folderInfo = $this->getMockBuilder(FileInfo::class)
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
$baseTime = 1000;
|
|
$storage = new Temporary();
|
|
$jail = new Jail([
|
|
'storage' => $storage,
|
|
'root' => 'folder'
|
|
]);
|
|
$mount = new MountPoint($jail, '/bar/foo');
|
|
|
|
$folderInfo->expects($this->any())
|
|
->method('getMountPoint')
|
|
->willReturn($mount);
|
|
|
|
$cache = $storage->getCache();
|
|
|
|
$id1 = $cache->put('folder/inside.txt', [
|
|
'storage_mtime' => $baseTime,
|
|
'mtime' => $baseTime,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3,
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
|
]);
|
|
$cache->put('outside.txt', [
|
|
'storage_mtime' => $baseTime - 100,
|
|
'mtime' => $baseTime - 100,
|
|
'mimetype' => 'text/plain',
|
|
'size' => 3
|
|
]);
|
|
|
|
$node = new \OC\Files\Node\Folder($root, $view, $folderPath, $folderInfo);
|
|
|
|
$nodes = $node->getRecent(5);
|
|
$ids = array_map(function (Node $node) {
|
|
return (int)$node->getId();
|
|
}, $nodes);
|
|
$this->assertEquals([$id1], $ids);
|
|
}
|
|
}
|