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

109 lines
3.1 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>
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 as EntityCollectionImplemantation;
use OCP\Comments\ICommentsManager;
use OCP\ILogger;
use OCP\IUserManager;
use OCP\IUserSession;
2016-01-11 20:09:00 +03:00
2016-05-25 17:04:15 +03:00
class EntityTypeCollectionTest extends \Test\TestCase {
2016-01-11 20:09:00 +03:00
/** @var 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\EntityTypeCollection */
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
2016-02-25 11:08:12 +03:00
protected $childMap = [];
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
2016-02-25 11:08:12 +03:00
$instance = $this;
2016-01-11 20:09:00 +03:00
$this->collection = new \OCA\DAV\Comments\EntityTypeCollection(
'files',
$this->commentsManager,
$this->userManager,
$this->userSession,
2016-02-25 11:08:12 +03:00
$this->logger,
function ($child) use ($instance) {
return !empty($instance->childMap[$child]);
}
2016-01-11 20:09:00 +03:00
);
}
public function testChildExistsYes() {
2016-02-25 11:08:12 +03:00
$this->childMap[17] = true;
2016-01-11 20:09:00 +03:00
$this->assertTrue($this->collection->childExists('17'));
}
public function testChildExistsNo() {
$this->assertFalse($this->collection->childExists('17'));
}
public function testGetChild() {
2016-02-25 11:08:12 +03:00
$this->childMap[17] = true;
2016-01-11 20:09:00 +03:00
$ec = $this->collection->getChild('17');
$this->assertTrue($ec instanceof EntityCollectionImplemantation);
}
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->collection->getChild('17');
}
2016-01-11 20:09:00 +03:00
public function testGetChildren() {
$this->expectException(\Sabre\DAV\Exception\MethodNotAllowed::class);
2016-01-11 20:09:00 +03:00
$this->collection->getChildren();
}
}