nextcloud/apps/dav/tests/unit/Comments/RootCollectionTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

162 lines
4.3 KiB
PHP
Raw Normal View History

2016-01-11 12:09:00 -05:00
<?php
declare(strict_types=1);
2016-01-11 12:09:00 -05:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2016-01-11 12:09:00 -05:00
*/
2016-05-25 10:04:15 -04:00
namespace OCA\DAV\Tests\unit\Comments;
2016-01-11 12:09:00 -05:00
use OC\EventDispatcher\EventDispatcher;
2016-01-11 12:09:00 -05:00
use OCA\DAV\Comments\EntityTypeCollection as EntityTypeCollectionImplementation;
use OCA\DAV\Comments\RootCollection;
2016-02-25 03:08:12 -05:00
use OCP\Comments\CommentsEntityEvent;
use OCP\Comments\ICommentsManager;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
2016-01-11 12:09:00 -05:00
2016-05-25 10:04:15 -04:00
class RootCollectionTest extends \Test\TestCase {
protected ICommentsManager&MockObject $commentsManager;
protected IUserManager&MockObject $userManager;
protected LoggerInterface&MockObject $logger;
protected IUserSession&MockObject $userSession;
protected IEventDispatcher $dispatcher;
protected IUser&MockObject $user;
protected RootCollection $collection;
2016-01-11 12:09:00 -05:00
protected function setUp(): void {
2016-01-11 12:09:00 -05:00
parent::setUp();
$this->user = $this->createMock(IUser::class);
$this->commentsManager = $this->createMock(ICommentsManager::class);
$this->userManager = $this->createMock(IUserManager::class);
$this->userSession = $this->createMock(IUserSession::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->dispatcher = new EventDispatcher(
new \Symfony\Component\EventDispatcher\EventDispatcher(),
\OC::$server,
$this->logger
);
2016-01-11 12:09:00 -05:00
$this->collection = new RootCollection(
2016-01-11 12:09:00 -05:00
$this->commentsManager,
$this->userManager,
$this->userSession,
2016-02-25 03:08:12 -05:00
$this->dispatcher,
$this->logger
2016-01-11 12:09:00 -05:00
);
}
protected function prepareForInitCollections(): void {
2016-01-11 12:09:00 -05:00
$this->user->expects($this->any())
->method('getUID')
->willReturn('alice');
2016-01-11 12:09:00 -05:00
$this->userSession->expects($this->once())
->method('getUser')
->willReturn($this->user);
2016-01-11 12:09:00 -05:00
$this->dispatcher->addListener(CommentsEntityEvent::class, function (CommentsEntityEvent $event): void {
$event->addEntityCollection('files', function () {
2016-02-25 03:08:12 -05:00
return true;
});
});
2016-01-11 12:09:00 -05:00
}
public function testCreateFile(): void {
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
2016-01-11 12:09:00 -05:00
$this->collection->createFile('foo');
}
public function testCreateDirectory(): void {
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
2016-01-11 12:09:00 -05:00
$this->collection->createDirectory('foo');
}
public function testGetChild(): void {
2016-01-11 12:09:00 -05:00
$this->prepareForInitCollections();
$etc = $this->collection->getChild('files');
$this->assertInstanceOf(EntityTypeCollectionImplementation::class, $etc);
2016-01-11 12:09:00 -05:00
}
public function testGetChildInvalid(): void {
$this->expectException(\Sabre\DAV\Exception\NotFound::class);
2016-01-11 12:09:00 -05:00
$this->prepareForInitCollections();
$this->collection->getChild('robots');
}
public function testGetChildNoAuth(): void {
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
2016-01-11 12:09:00 -05:00
$this->collection->getChild('files');
}
public function testGetChildren(): void {
2016-01-11 12:09:00 -05:00
$this->prepareForInitCollections();
$children = $this->collection->getChildren();
$this->assertFalse(empty($children));
foreach ($children as $child) {
$this->assertInstanceOf(EntityTypeCollectionImplementation::class, $child);
2016-01-11 12:09:00 -05:00
}
}
public function testGetChildrenNoAuth(): void {
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
2016-01-11 12:09:00 -05:00
$this->collection->getChildren();
}
public function testChildExistsYes(): void {
2016-01-11 12:09:00 -05:00
$this->prepareForInitCollections();
$this->assertTrue($this->collection->childExists('files'));
}
public function testChildExistsNo(): void {
2016-01-11 12:09:00 -05:00
$this->prepareForInitCollections();
$this->assertFalse($this->collection->childExists('robots'));
}
public function testChildExistsNoAuth(): void {
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
2016-01-11 12:09:00 -05:00
$this->collection->childExists('files');
}
public function testDelete(): void {
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
2016-01-11 12:09:00 -05:00
$this->collection->delete();
}
public function testGetName(): void {
2016-01-11 12:09:00 -05:00
$this->assertSame('comments', $this->collection->getName());
}
public function testSetName(): void {
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
2016-01-11 12:09:00 -05:00
$this->collection->setName('foobar');
}
public function testGetLastModified(): void {
2016-01-11 12:09:00 -05:00
$this->assertSame(null, $this->collection->getLastModified());
}
}