123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <?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\Cache\CappedMemoryCache;
- use OC\Files\FileInfo;
- use OC\Files\Mount\Manager;
- use OC\Files\Node\Folder;
- use OC\Files\View;
- use OCP\ILogger;
- use OCP\IUser;
- use OCP\IUserManager;
- /**
- * Class RootTest
- *
- * @package Test\Files\Node
- */
- class RootTest extends \Test\TestCase {
- /** @var \OC\User\User */
- private $user;
- /** @var \OC\Files\Mount\Manager */
- private $manager;
- /** @var \OCP\Files\Config\IUserMountCache|\PHPUnit_Framework_MockObject_MockObject */
- private $userMountCache;
- /** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
- private $logger;
- /** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
- private $userManager;
- protected function setUp() {
- parent::setUp();
- $config = $this->getMockBuilder('\OCP\IConfig')
- ->disableOriginalConstructor()
- ->getMock();
- $urlgenerator = $this->getMockBuilder('\OCP\IURLGenerator')
- ->disableOriginalConstructor()
- ->getMock();
- $this->user = new \OC\User\User('', new \Test\Util\User\Dummy, null, $config, $urlgenerator);
- $this->manager = $this->getMockBuilder('\OC\Files\Mount\Manager')
- ->disableOriginalConstructor()
- ->getMock();
- $this->userMountCache = $this->getMockBuilder('\OCP\Files\Config\IUserMountCache')
- ->disableOriginalConstructor()
- ->getMock();
- $this->logger = $this->createMock(ILogger::class);
- $this->userManager = $this->createMock(IUserManager::class);
- }
- protected function getFileInfo($data) {
- return new FileInfo('', null, '', $data, null);
- }
- public function testGet() {
- /**
- * @var \OC\Files\Storage\Storage $storage
- */
- $storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
- ->disableOriginalConstructor()
- ->getMock();
- /**
- * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view
- */
- $view = $this->getMockBuilder('\OC\Files\View')
- ->disableOriginalConstructor()
- ->getMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $view->expects($this->once())
- ->method('getFileInfo')
- ->with('/bar/foo')
- ->will($this->returnValue($this->getFileInfo(array('fileid' => 10, 'path' => 'bar/foo', 'name', 'mimetype' => 'text/plain'))));
- $root->mount($storage, '');
- $node = $root->get('/bar/foo');
- $this->assertEquals(10, $node->getId());
- $this->assertInstanceOf('\OC\Files\Node\File', $node);
- }
- /**
- * @expectedException \OCP\Files\NotFoundException
- */
- public function testGetNotFound() {
- /**
- * @var \OC\Files\Storage\Storage $storage
- */
- $storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
- ->disableOriginalConstructor()
- ->getMock();
- /**
- * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view
- */
- $view = $this->getMockBuilder('\OC\Files\View')
- ->disableOriginalConstructor()
- ->getMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $view->expects($this->once())
- ->method('getFileInfo')
- ->with('/bar/foo')
- ->will($this->returnValue(false));
- $root->mount($storage, '');
- $root->get('/bar/foo');
- }
- /**
- * @expectedException \OCP\Files\NotPermittedException
- */
- public function testGetInvalidPath() {
- /**
- * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view
- */
- $view = $this->getMockBuilder('\OC\Files\View')
- ->disableOriginalConstructor()
- ->getMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $root->get('/../foo');
- }
- /**
- * @expectedException \OCP\Files\NotFoundException
- */
- public function testGetNoStorages() {
- /**
- * @var \OC\Files\View | \PHPUnit_Framework_MockObject_MockObject $view
- */
- $view = $this->getMockBuilder('\OC\Files\View')
- ->disableOriginalConstructor()
- ->getMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $root->get('/bar/foo');
- }
- public function testGetUserFolder() {
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $this->createMock(View::class),
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $user = $this->createMock(IUser::class);
- $user
- ->expects($this->once())
- ->method('getUID')
- ->willReturn('MyUserId');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('MyUserId')
- ->willReturn($user);
- /** @var CappedMemoryCache|\PHPUnit_Framework_MockObject_MockObject $cappedMemoryCache */
- $cappedMemoryCache = $this->createMock(CappedMemoryCache::class);
- $cappedMemoryCache
- ->expects($this->once())
- ->method('hasKey')
- ->willReturn(true);
- $folder = $this->createMock(Folder::class);
- $cappedMemoryCache
- ->expects($this->once())
- ->method('get')
- ->with('MyUserId')
- ->willReturn($folder);
- $this->invokePrivate($root, 'userFolderCache', [$cappedMemoryCache]);
- $this->assertEquals($folder, $root->getUserFolder('MyUserId'));
- }
- /**
- * @expectedException \OC\User\NoUserException
- * @expectedExceptionMessage Backends provided no user object
- */
- public function testGetUserFolderWithNoUserObj() {
- $root = new \OC\Files\Node\Root(
- $this->createMock(Manager::class),
- $this->createMock(View::class),
- null,
- $this->userMountCache,
- $this->logger,
- $this->userManager
- );
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('NotExistingUser')
- ->willReturn(null);
- $this->logger
- ->expects($this->once())
- ->method('error')
- ->with(
- 'Backends provided no user object for NotExistingUser',
- [
- 'app' => 'files',
- ]
- );
- $root->getUserFolder('NotExistingUser');
- }
- }
|