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

140 lines
4.1 KiB
PHP
Raw Normal View History

2016-01-11 20:09:00 +03:00
<?php
/**
2016-05-26 20:56:05 +03:00
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
* @author Joas Schilling <nickvergessen@owncloud.com>
2016-01-11 20:09:00 +03:00
*
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @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
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;
2016-02-25 11:08:12 +03:00
/** @var \OCP\IUserManager|\PHPUnit_Framework_MockObject_MockObject */
2016-01-11 20:09:00 +03:00
protected $userManager;
2016-02-25 11:08:12 +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\EntityCollection */
2016-01-11 20:09:00 +03:00
protected $collection;
2016-02-25 11:08:12 +03:00
/** @var \OCP\IUserSession|\PHPUnit_Framework_MockObject_MockObject */
protected $userSession;
2016-01-11 20:09:00 +03:00
public function setUp() {
parent::setUp();
$this->commentsManager = $this->getMockBuilder('\OCP\Comments\ICommentsManager')
->disableOriginalConstructor()
->getMock();
$this->userManager = $this->getMockBuilder('\OCP\IUserManager')
->disableOriginalConstructor()
->getMock();
$this->userSession = $this->getMockBuilder('\OCP\IUserSession')
->disableOriginalConstructor()
->getMock();
$this->logger = $this->getMockBuilder('\OCP\ILogger')
->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')
->will($this->returnValue(
$this->getMockBuilder('\OCP\Comments\IComment')
->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')
->will($this->returnValue([
$this->getMockBuilder('\OCP\Comments\IComment')
->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)
->will($this->returnValue([
$this->getMockBuilder('\OCP\Comments\IComment')
->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'));
}
}