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>
|
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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-25 17:04:15 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\Comments;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
2017-10-24 16:26:53 +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;
|
2017-10-24 16:26:53 +03:00
|
|
|
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $userManager;
|
2017-10-24 16:26:53 +03:00
|
|
|
/** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $logger;
|
2017-10-24 16:26:53 +03:00
|
|
|
/** @var EntityCollection */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $collection;
|
2017-10-24 16:26:53 +03:00
|
|
|
/** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
|
2016-02-01 19:26:42 +03:00
|
|
|
protected $userSession;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
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();
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
$this->collection = new \OCA\DAV\Comments\EntityCollection(
|
|
|
|
'19',
|
|
|
|
'files',
|
|
|
|
$this->commentsManager,
|
|
|
|
$this->userManager,
|
2016-02-01 19:26:42 +03:00
|
|
|
$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')
|
2016-07-15 10:52:46 +03:00
|
|
|
->will($this->returnValue(
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->getMockBuilder(IComment::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock()
|
|
|
|
));
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
$node = $this->collection->getChild('55');
|
|
|
|
$this->assertTrue($node instanceof \OCA\DAV\Comments\CommentNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Sabre\DAV\Exception\NotFound
|
|
|
|
*/
|
|
|
|
public function testGetChildException() {
|
|
|
|
$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')
|
2016-07-15 10:52:46 +03:00
|
|
|
->will($this->returnValue([
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->getMockBuilder(IComment::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->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)
|
2016-07-15 10:52:46 +03:00
|
|
|
->will($this->returnValue([
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->getMockBuilder(IComment::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->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'));
|
|
|
|
}
|
|
|
|
}
|