123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace Test\Files\Node;
- use OC\Files\FileInfo;
- use OC\Files\Mount\Manager;
- use OC\Files\Node\Folder;
- use OC\Files\View;
- use OC\Memcache\ArrayCache;
- use OCP\Cache\CappedMemoryCache;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\ICacheFactory;
- use OCP\IUser;
- use OCP\IUserManager;
- use Psr\Log\LoggerInterface;
- /**
- * 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 LoggerInterface|\PHPUnit\Framework\MockObject\MockObject */
- private $logger;
- /** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */
- private $userManager;
- /** @var IEventDispatcher|\PHPUnit\Framework\MockObject\MockObject */
- private $eventDispatcher;
- /** @var ICacheFactory|\PHPUnit\Framework\MockObject\MockObject */
- protected $cacheFactory;
- protected function setUp(): void {
- parent::setUp();
- $this->user = $this->createMock(IUser::class);
- $this->manager = $this->getMockBuilder(Manager::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userMountCache = $this->getMockBuilder('\OCP\Files\Config\IUserMountCache')
- ->disableOriginalConstructor()
- ->getMock();
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->eventDispatcher = $this->createMock(IEventDispatcher::class);
- $this->cacheFactory = $this->createMock(ICacheFactory::class);
- $this->cacheFactory->method('createLocal')
- ->willReturnCallback(function () {
- return new ArrayCache();
- });
- }
- /**
- * @return \OC\Files\View | \PHPUnit\Framework\MockObject\MockObject $view
- */
- protected function getRootViewMock() {
- $view = $this->createMock(View::class);
- $view->expects($this->any())
- ->method('getRoot')
- ->willReturn('');
- return $view;
- }
- 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();
- $view = $this->getRootViewMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $view->expects($this->once())
- ->method('getFileInfo')
- ->with('/bar/foo')
- ->willReturn($this->getFileInfo(['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);
- }
- public function testGetNotFound() {
- $this->expectException(\OCP\Files\NotFoundException::class);
- /**
- * @var \OC\Files\Storage\Storage $storage
- */
- $storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
- ->disableOriginalConstructor()
- ->getMock();
- $view = $this->getRootViewMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $view->expects($this->once())
- ->method('getFileInfo')
- ->with('/bar/foo')
- ->willReturn(false);
- $root->mount($storage, '');
- $root->get('/bar/foo');
- }
- public function testGetInvalidPath() {
- $this->expectException(\OCP\Files\NotPermittedException::class);
- $view = $this->getRootViewMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $root->get('/../foo');
- }
- public function testGetNoStorages() {
- $this->expectException(\OCP\Files\NotFoundException::class);
- $view = $this->getRootViewMock();
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $view,
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $root->get('/bar/foo');
- }
- public function testGetUserFolder() {
- $root = new \OC\Files\Node\Root(
- $this->manager,
- $this->getRootViewMock(),
- $this->user,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $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'));
- }
- public function testGetUserFolderWithNoUserObj() {
- $this->expectException(\OC\User\NoUserException::class);
- $this->expectExceptionMessage('Backends provided no user object');
- $root = new \OC\Files\Node\Root(
- $this->createMock(Manager::class),
- $this->getRootViewMock(),
- null,
- $this->userMountCache,
- $this->logger,
- $this->userManager,
- $this->eventDispatcher,
- $this->cacheFactory,
- );
- $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',
- $this->anything()
- );
- $root->getUserFolder('NotExistingUser');
- }
- }
|