2016-10-18 10:36:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-10 15:09:14 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-10-18 10:36:57 +02:00
|
|
|
*/
|
2019-11-22 20:52:10 +01:00
|
|
|
|
2016-10-18 10:36:57 +02:00
|
|
|
namespace Tests\Core\Controller;
|
|
|
|
|
|
|
|
use OC\Core\Controller\PreviewController;
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\Files\File;
|
|
|
|
use OCP\Files\Folder;
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\Files\NotFoundException;
|
|
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
2024-09-09 00:21:50 +02:00
|
|
|
use OCP\Files\Storage\ISharedStorage;
|
2022-10-25 09:15:39 +02:00
|
|
|
use OCP\Files\Storage\IStorage;
|
2016-10-18 10:36:57 +02:00
|
|
|
use OCP\IPreview;
|
|
|
|
use OCP\IRequest;
|
2023-08-17 09:14:35 +02:00
|
|
|
use OCP\Preview\IMimeIconProvider;
|
2024-09-09 00:21:50 +02:00
|
|
|
use OCP\Share\IAttributes;
|
|
|
|
use OCP\Share\IShare;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2016-10-18 10:36:57 +02:00
|
|
|
|
|
|
|
class PreviewControllerTest extends \Test\TestCase {
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
private string $userId;
|
|
|
|
private PreviewController $controller;
|
2016-10-18 10:36:57 +02:00
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
private IRootFolder&MockObject $rootFolder;
|
|
|
|
private IPreview&MockObject $previewManager;
|
|
|
|
private IRequest&MockObject $request;
|
2016-10-18 10:36:57 +02:00
|
|
|
|
2019-11-27 15:27:18 +01:00
|
|
|
protected function setUp(): void {
|
2016-10-18 10:36:57 +02:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->userId = 'user';
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->rootFolder = $this->createMock(IRootFolder::class);
|
2016-10-18 10:36:57 +02:00
|
|
|
$this->previewManager = $this->createMock(IPreview::class);
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->request = $this->createMock(IRequest::class);
|
2016-10-18 10:36:57 +02:00
|
|
|
|
|
|
|
$this->controller = new PreviewController(
|
|
|
|
'core',
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->request,
|
2016-10-18 10:36:57 +02:00
|
|
|
$this->previewManager,
|
|
|
|
$this->rootFolder,
|
2016-10-21 12:51:22 +02:00
|
|
|
$this->userId,
|
2023-08-17 09:14:35 +02:00
|
|
|
$this->createMock(IMimeIconProvider::class)
|
2016-10-18 10:36:57 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvalidFile(): void {
|
|
|
|
$res = $this->controller->getPreview('');
|
|
|
|
$expected = new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvalidWidth(): void {
|
|
|
|
$res = $this->controller->getPreview('file', 0);
|
|
|
|
$expected = new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvalidHeight(): void {
|
|
|
|
$res = $this->controller->getPreview('file', 10, 0);
|
|
|
|
$expected = new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFileNotFound(): void {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willThrowException(new NotFoundException());
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file');
|
|
|
|
$expected = new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNotAFile(): void {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$folder = $this->createMock(Folder::class);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($folder);
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file');
|
|
|
|
$expected = new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNoPreviewAndNoIcon(): void {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, false);
|
|
|
|
$expected = new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
public function testNoPreview() {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
$storage = $this->createMock(IStorage::class);
|
|
|
|
$file->method('getStorage')
|
|
|
|
->willReturn($storage);
|
|
|
|
|
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->previewManager->method('getPreview')
|
|
|
|
->with($this->equalTo($file), 10, 10, false, $this->equalTo('myMode'))
|
|
|
|
->willThrowException(new NotFoundException());
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true, 'myMode');
|
|
|
|
$expected = new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
public function testFileWithoutReadPermission() {
|
2016-10-18 10:36:57 +02:00
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true);
|
|
|
|
$expected = new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
public function testFileWithoutDownloadPermission() {
|
2016-10-18 10:36:57 +02:00
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
2024-09-09 00:21:50 +02:00
|
|
|
$file->method('getId')->willReturn(123);
|
2016-10-18 10:36:57 +02:00
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$shareAttributes = $this->createMock(IAttributes::class);
|
|
|
|
$shareAttributes->expects(self::atLeastOnce())
|
|
|
|
->method('getAttribute')
|
|
|
|
->with('permissions', 'download')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$share = $this->createMock(IShare::class);
|
|
|
|
$share->method('getAttributes')
|
|
|
|
->willReturn($shareAttributes);
|
|
|
|
|
|
|
|
$storage = $this->createMock(ISharedStorage::class);
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
->with(ISharedStorage::class)
|
|
|
|
->willReturn(true);
|
|
|
|
$storage->method('getShare')
|
|
|
|
->willReturn($share);
|
|
|
|
|
2022-10-25 09:15:39 +02:00
|
|
|
$file->method('getStorage')
|
|
|
|
->willReturn($storage);
|
2024-09-09 00:21:50 +02:00
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->request->method('getHeader')->willReturn('');
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true);
|
|
|
|
$expected = new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFileWithoutDownloadPermissionButHeader() {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
|
|
|
$file->method('getId')->willReturn(123);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
2022-10-25 09:15:39 +02:00
|
|
|
|
2016-10-18 10:36:57 +02:00
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
$shareAttributes = $this->createMock(IAttributes::class);
|
|
|
|
$shareAttributes->method('getAttribute')
|
|
|
|
->with('permissions', 'download')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
$share = $this->createMock(IShare::class);
|
|
|
|
$share->method('getAttributes')
|
|
|
|
->willReturn($shareAttributes);
|
|
|
|
|
|
|
|
$storage = $this->createMock(ISharedStorage::class);
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
->with(ISharedStorage::class)
|
|
|
|
->willReturn(true);
|
|
|
|
$storage->method('getShare')
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
$file->method('getStorage')
|
|
|
|
->willReturn($storage);
|
2016-10-18 10:36:57 +02:00
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(true);
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->request
|
|
|
|
->method('getHeader')
|
|
|
|
->with('X-NC-Preview')
|
|
|
|
->willReturn('true');
|
|
|
|
|
|
|
|
$preview = $this->createMock(ISimpleFile::class);
|
|
|
|
$preview->method('getName')->willReturn('my name');
|
|
|
|
$preview->method('getMTime')->willReturn(42);
|
2016-10-18 10:36:57 +02:00
|
|
|
$this->previewManager->method('getPreview')
|
|
|
|
->with($this->equalTo($file), 10, 10, false, $this->equalTo('myMode'))
|
2024-09-09 00:21:50 +02:00
|
|
|
->willReturn($preview);
|
|
|
|
$preview->method('getMimeType')
|
|
|
|
->willReturn('myMime');
|
2016-10-18 10:36:57 +02:00
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true, 'myMode');
|
|
|
|
|
2024-09-09 00:21:50 +02:00
|
|
|
$this->assertEquals('myMime', $res->getHeaders()['Content-Type']);
|
|
|
|
$this->assertEquals(Http::STATUS_OK, $res->getStatus());
|
|
|
|
$this->assertEquals($preview, $this->invokePrivate($res, 'file'));
|
2016-10-18 10:36:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidPreview(): void {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
2024-06-21 11:37:47 +02:00
|
|
|
$file->method('getId')->willReturn(123);
|
2016-10-18 10:36:57 +02:00
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(true);
|
|
|
|
|
2022-10-25 09:15:39 +02:00
|
|
|
$storage = $this->createMock(IStorage::class);
|
|
|
|
$file->method('getStorage')
|
|
|
|
->willReturn($storage);
|
|
|
|
|
2016-10-18 10:36:57 +02:00
|
|
|
$preview = $this->createMock(ISimpleFile::class);
|
2021-10-25 16:16:55 +02:00
|
|
|
$preview->method('getName')->willReturn('my name');
|
|
|
|
$preview->method('getMTime')->willReturn(42);
|
2016-10-18 10:36:57 +02:00
|
|
|
$this->previewManager->method('getPreview')
|
|
|
|
->with($this->equalTo($file), 10, 10, false, $this->equalTo('myMode'))
|
|
|
|
->willReturn($preview);
|
|
|
|
$preview->method('getMimeType')
|
|
|
|
->willReturn('myMime');
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true, 'myMode');
|
|
|
|
|
2016-10-21 12:51:22 +02:00
|
|
|
$this->assertEquals('myMime', $res->getHeaders()['Content-Type']);
|
|
|
|
$this->assertEquals(Http::STATUS_OK, $res->getStatus());
|
|
|
|
$this->assertEquals($preview, $this->invokePrivate($res, 'file'));
|
2016-10-18 10:36:57 +02:00
|
|
|
}
|
2024-09-09 00:21:50 +02:00
|
|
|
|
|
|
|
public function testValidPreviewOfShare() {
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
->with($this->equalTo($this->userId))
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
$file = $this->createMock(File::class);
|
|
|
|
$file->method('getId')->willReturn(123);
|
|
|
|
$userFolder->method('get')
|
|
|
|
->with($this->equalTo('file'))
|
|
|
|
->willReturn($file);
|
|
|
|
|
|
|
|
$this->previewManager->method('isAvailable')
|
|
|
|
->with($this->equalTo($file))
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
// No attributes set -> download permitted
|
|
|
|
$share = $this->createMock(IShare::class);
|
|
|
|
$share->method('getAttributes')
|
|
|
|
->willReturn(null);
|
|
|
|
|
|
|
|
$storage = $this->createMock(ISharedStorage::class);
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
->with(ISharedStorage::class)
|
|
|
|
->willReturn(true);
|
|
|
|
$storage->method('getShare')
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
$file->method('getStorage')
|
|
|
|
->willReturn($storage);
|
|
|
|
$file->method('isReadable')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->request
|
|
|
|
->method('getHeader')
|
|
|
|
->willReturn('');
|
|
|
|
|
|
|
|
$preview = $this->createMock(ISimpleFile::class);
|
|
|
|
$preview->method('getName')->willReturn('my name');
|
|
|
|
$preview->method('getMTime')->willReturn(42);
|
|
|
|
$this->previewManager->method('getPreview')
|
|
|
|
->with($this->equalTo($file), 10, 10, false, $this->equalTo('myMode'))
|
|
|
|
->willReturn($preview);
|
|
|
|
$preview->method('getMimeType')
|
|
|
|
->willReturn('myMime');
|
|
|
|
|
|
|
|
$res = $this->controller->getPreview('file', 10, 10, true, true, 'myMode');
|
|
|
|
|
|
|
|
$this->assertEquals('myMime', $res->getHeaders()['Content-Type']);
|
|
|
|
$this->assertEquals(Http::STATUS_OK, $res->getStatus());
|
|
|
|
$this->assertEquals($preview, $this->invokePrivate($res, 'file'));
|
|
|
|
}
|
2016-10-18 10:36:57 +02:00
|
|
|
}
|