2016-01-11 20:09:00 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-11 20:09:00 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-01-11 20:09:00 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-25 17:04:15 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\Comments;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2019-10-16 13:36:03 +03:00
|
|
|
use OC\EventDispatcher\EventDispatcher;
|
|
|
|
use OC\EventDispatcher\SymfonyAdapter;
|
2016-01-11 20:09:00 +03:00
|
|
|
use OCA\DAV\Comments\EntityTypeCollection as EntityTypeCollectionImplementation;
|
2016-02-25 11:08:12 +03:00
|
|
|
use OCP\Comments\CommentsEntityEvent;
|
2017-10-24 16:26:53 +03:00
|
|
|
use OCP\Comments\ICommentsManager;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\IUserSession;
|
2020-10-08 17:48:03 +03:00
|
|
|
use Psr\Log\LoggerInterface;
|
2019-10-16 13:36:03 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2016-05-25 17:04:15 +03:00
|
|
|
class RootCollectionTest extends \Test\TestCase {
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\Comments\ICommentsManager|\PHPUnit\Framework\MockObject\MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $commentsManager;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\IUserManager|\PHPUnit\Framework\MockObject\MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $userManager;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\ILogger|\PHPUnit\Framework\MockObject\MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $logger;
|
2016-02-25 11:08:12 +03:00
|
|
|
/** @var \OCA\DAV\Comments\RootCollection */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $collection;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\IUserSession|\PHPUnit\Framework\MockObject\MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $userSession;
|
2019-10-16 13:36:03 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
2016-02-25 11:08:12 +03:00
|
|
|
protected $dispatcher;
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\IUser|\PHPUnit\Framework\MockObject\MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $user;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2016-01-11 20:09:00 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->user = $this->getMockBuilder(IUser::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->commentsManager = $this->getMockBuilder(ICommentsManager::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->userManager = $this->getMockBuilder(IUserManager::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->userSession = $this->getMockBuilder(IUserSession::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->logger = $this->getMockBuilder(ILogger::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2019-10-16 13:36:03 +03:00
|
|
|
$this->dispatcher = new SymfonyAdapter(
|
|
|
|
new EventDispatcher(
|
|
|
|
new \Symfony\Component\EventDispatcher\EventDispatcher(),
|
|
|
|
\OC::$server,
|
2020-10-08 17:48:03 +03:00
|
|
|
$this->createMock(LoggerInterface::class)
|
2019-10-16 13:36:03 +03:00
|
|
|
),
|
|
|
|
$this->logger
|
|
|
|
);
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
$this->collection = new \OCA\DAV\Comments\RootCollection(
|
|
|
|
$this->commentsManager,
|
|
|
|
$this->userManager,
|
|
|
|
$this->userSession,
|
2016-02-25 11:08:12 +03:00
|
|
|
$this->dispatcher,
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->logger
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForInitCollections() {
|
|
|
|
$this->user->expects($this->any())
|
|
|
|
->method('getUID')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn('alice');
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
$this->userSession->expects($this->once())
|
|
|
|
->method('getUser')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn($this->user);
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
$this->dispatcher->addListener(CommentsEntityEvent::EVENT_ENTITY, function (CommentsEntityEvent $event) {
|
|
|
|
$event->addEntityCollection('files', function () {
|
2016-02-25 11:08:12 +03:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
});
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testCreateFile() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->createFile('foo');
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testCreateDirectory() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->createDirectory('foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetChild() {
|
|
|
|
$this->prepareForInitCollections();
|
|
|
|
$etc = $this->collection->getChild('files');
|
|
|
|
$this->assertTrue($etc instanceof EntityTypeCollectionImplementation);
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testGetChildInvalid() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\NotFound::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->prepareForInitCollections();
|
|
|
|
$this->collection->getChild('robots');
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testGetChildNoAuth() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->getChild('files');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetChildren() {
|
|
|
|
$this->prepareForInitCollections();
|
|
|
|
$children = $this->collection->getChildren();
|
|
|
|
$this->assertFalse(empty($children));
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($children as $child) {
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->assertTrue($child instanceof EntityTypeCollectionImplementation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testGetChildrenNoAuth() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->getChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChildExistsYes() {
|
|
|
|
$this->prepareForInitCollections();
|
|
|
|
$this->assertTrue($this->collection->childExists('files'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChildExistsNo() {
|
|
|
|
$this->prepareForInitCollections();
|
|
|
|
$this->assertFalse($this->collection->childExists('robots'));
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testChildExistsNoAuth() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->childExists('files');
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testDelete() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetName() {
|
|
|
|
$this->assertSame('comments', $this->collection->getName());
|
|
|
|
}
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
public function testSetName() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Sabre\DAV\Exception\Forbidden::class);
|
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
$this->collection->setName('foobar');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLastModified() {
|
|
|
|
$this->assertSame(null, $this->collection->getLastModified());
|
|
|
|
}
|
|
|
|
}
|