123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\DAV\Tests\Unit\DAV\Controller;
- use OCA\DAV\Controller\DirectController;
- use OCA\DAV\Db\Direct;
- use OCA\DAV\Db\DirectMapper;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\AppFramework\OCS\OCSBadRequestException;
- use OCP\AppFramework\OCS\OCSNotFoundException;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\File;
- use OCP\Files\Folder;
- use OCP\Files\IRootFolder;
- use OCP\IRequest;
- use OCP\IUrlGenerator;
- use OCP\Security\ISecureRandom;
- use Test\TestCase;
- class DirectControllerTest extends TestCase {
- /** @var IRootFolder|\PHPUnit\Framework\MockObject\MockObject */
- private $rootFolder;
- /** @var DirectMapper|\PHPUnit\Framework\MockObject\MockObject */
- private $directMapper;
- /** @var ISecureRandom|\PHPUnit\Framework\MockObject\MockObject */
- private $random;
- /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */
- private $timeFactory;
- /** @var IUrlGenerator|\PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- /** @var IEventDispatcher|\PHPUnit\Framework\MockObject\MockObject */
- private $eventDispatcher;
- private DirectController $controller;
- protected function setUp(): void {
- parent::setUp();
- $this->rootFolder = $this->createMock(IRootFolder::class);
- $this->directMapper = $this->createMock(DirectMapper::class);
- $this->random = $this->createMock(ISecureRandom::class);
- $this->timeFactory = $this->createMock(ITimeFactory::class);
- $this->urlGenerator = $this->createMock(IUrlGenerator::class);
- $this->eventDispatcher = $this->createMock(IEventDispatcher::class);
- $this->controller = new DirectController(
- 'dav',
- $this->createMock(IRequest::class),
- $this->rootFolder,
- 'awesomeUser',
- $this->directMapper,
- $this->random,
- $this->timeFactory,
- $this->urlGenerator,
- $this->eventDispatcher
- );
- }
- public function testGetUrlNonExistingFileId(): void {
- $userFolder = $this->createMock(Folder::class);
- $this->rootFolder->method('getUserFolder')
- ->with('awesomeUser')
- ->willReturn($userFolder);
- $userFolder->method('getById')
- ->with(101)
- ->willReturn([]);
- $this->expectException(OCSNotFoundException::class);
- $this->controller->getUrl(101);
- }
- public function testGetUrlForFolder(): void {
- $userFolder = $this->createMock(Folder::class);
- $this->rootFolder->method('getUserFolder')
- ->with('awesomeUser')
- ->willReturn($userFolder);
- $folder = $this->createMock(Folder::class);
- $userFolder->method('getFirstNodeById')
- ->with(101)
- ->willReturn($folder);
- $this->expectException(OCSBadRequestException::class);
- $this->controller->getUrl(101);
- }
- public function testGetUrlValid(): void {
- $userFolder = $this->createMock(Folder::class);
- $this->rootFolder->method('getUserFolder')
- ->with('awesomeUser')
- ->willReturn($userFolder);
- $file = $this->createMock(File::class);
- $this->timeFactory->method('getTime')
- ->willReturn(42);
- $userFolder->method('getFirstNodeById')
- ->with(101)
- ->willReturn($file);
- $userFolder->method('getRelativePath')
- ->willReturn('/path');
- $this->random->method('generate')
- ->with(
- 60,
- ISecureRandom::CHAR_ALPHANUMERIC
- )->willReturn('superduperlongtoken');
- $this->directMapper->expects($this->once())
- ->method('insert')
- ->willReturnCallback(function (Direct $direct) {
- $this->assertSame('awesomeUser', $direct->getUserId());
- $this->assertSame(101, $direct->getFileId());
- $this->assertSame('superduperlongtoken', $direct->getToken());
- $this->assertSame(42 + 60 * 60 * 8, $direct->getExpiration());
- return $direct;
- });
- $this->urlGenerator->method('getAbsoluteURL')
- ->willReturnCallback(function (string $url) {
- return 'https://my.nextcloud/'.$url;
- });
- $result = $this->controller->getUrl(101);
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame([
- 'url' => 'https://my.nextcloud/remote.php/direct/superduperlongtoken',
- ], $result->getData());
- }
- }
|