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

151 lines
4.3 KiB
PHP
Raw Normal View History

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>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
2016-07-21 17:49:16 +03:00
* @author Joas Schilling <coding@schilljs.com>
* @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,
* 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
use OCA\DAV\Comments\EntityCollection;
use OCP\Comments\IComment;
use OCP\Comments\ICommentsManager;
use OCP\ILogger;
use OCP\IUserManager;
use OCP\IUserSession;
2016-05-25 17:04:15 +03:00
class EntityCollectionTest extends \Test\TestCase {
2016-01-11 20:09:00 +03:00
2016-02-25 11:08:12 +03:00
/** @var \OCP\Comments\ICommentsManager|\PHPUnit_Framework_MockObject_MockObject */
2016-01-11 20:09:00 +03:00
protected $commentsManager;
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
2016-01-11 20:09:00 +03:00
protected $userManager;
/** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
2016-01-11 20:09:00 +03:00
protected $logger;
/** @var EntityCollection */
2016-01-11 20:09:00 +03:00
protected $collection;
/** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
protected $userSession;
2016-01-11 20:09:00 +03:00
protected function setUp(): void {
2016-01-11 20:09:00 +03:00
parent::setUp();
$this->commentsManager = $this->getMockBuilder(ICommentsManager::class)
->disableOriginalConstructor()
->getMock();
$this->userManager = $this->getMockBuilder(IUserManager::class)
->disableOriginalConstructor()
->getMock();
$this->userSession = $this->getMockBuilder(IUserSession::class)
->disableOriginalConstructor()
->getMock();
$this->logger = $this->getMockBuilder(ILogger::class)
->disableOriginalConstructor()
->getMock();
2016-01-11 20:09:00 +03:00
$this->collection = new \OCA\DAV\Comments\EntityCollection(
'19',
'files',
$this->commentsManager,
$this->userManager,
$this->userSession,
2016-01-11 20:09:00 +03:00
$this->logger
);
}
public function testGetId() {
$this->assertSame($this->collection->getId(), '19');
}
public function testGetChild() {
$this->commentsManager->expects($this->once())
->method('get')
->with('55')
->willReturn(
$this->getMockBuilder(IComment::class)
->disableOriginalConstructor()
->getMock()
);
2016-01-11 20:09:00 +03:00
$node = $this->collection->getChild('55');
$this->assertTrue($node instanceof \OCA\DAV\Comments\CommentNode);
}
2016-01-11 20:09:00 +03:00
public function testGetChildException() {
$this->expectException(\Sabre\DAV\Exception\NotFound::class);
2016-01-11 20:09:00 +03:00
$this->commentsManager->expects($this->once())
->method('get')
->with('55')
->will($this->throwException(new \OCP\Comments\NotFoundException()));
$this->collection->getChild('55');
}
public function testGetChildren() {
$this->commentsManager->expects($this->once())
->method('getForObject')
->with('files', '19')
->willReturn([
$this->getMockBuilder(IComment::class)
->disableOriginalConstructor()
->getMock()
]);
2016-01-11 20:09:00 +03:00
$result = $this->collection->getChildren();
$this->assertSame(count($result), 1);
$this->assertTrue($result[0] instanceof \OCA\DAV\Comments\CommentNode);
}
public function testFindChildren() {
$dt = new \DateTime('2016-01-10 18:48:00');
$this->commentsManager->expects($this->once())
->method('getForObject')
->with('files', '19', 5, 15, $dt)
->willReturn([
$this->getMockBuilder(IComment::class)
->disableOriginalConstructor()
->getMock()
]);
2016-01-11 20:09:00 +03:00
$result = $this->collection->findChildren(5, 15, $dt);
$this->assertSame(count($result), 1);
$this->assertTrue($result[0] instanceof \OCA\DAV\Comments\CommentNode);
}
public function testChildExistsTrue() {
$this->assertTrue($this->collection->childExists('44'));
}
public function testChildExistsFalse() {
$this->commentsManager->expects($this->once())
->method('get')
->with('44')
->will($this->throwException(new \OCP\Comments\NotFoundException()));
$this->assertFalse($this->collection->childExists('44'));
}
}