123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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/>
- *
- */
- namespace OCA\DAV\Tests\unit\Connector\Sabre;
- use OCA\DAV\Connector\Sabre\CommentPropertiesPlugin as CommentPropertiesPluginImplementation;
- use OCA\DAV\Connector\Sabre\File;
- use OCP\Comments\ICommentsManager;
- use OCP\IUser;
- use OCP\IUserSession;
- use Sabre\DAV\PropFind;
- class CommentsPropertiesPluginTest extends \Test\TestCase {
- /** @var CommentPropertiesPluginImplementation */
- protected $plugin;
- protected $commentsManager;
- protected $userSession;
- protected $server;
- protected function setUp(): void {
- parent::setUp();
- $this->commentsManager = $this->getMockBuilder(ICommentsManager::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession = $this->getMockBuilder(IUserSession::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->server = $this->getMockBuilder('\Sabre\DAV\Server')
- ->disableOriginalConstructor()
- ->getMock();
- $this->plugin = new CommentPropertiesPluginImplementation($this->commentsManager, $this->userSession);
- $this->plugin->initialize($this->server);
- }
- public function nodeProvider() {
- $mocks = [];
- foreach (['\OCA\DAV\Connector\Sabre\File', '\OCA\DAV\Connector\Sabre\Directory', '\Sabre\DAV\INode'] as $class) {
- $mocks[] = $this->getMockBuilder($class)
- ->disableOriginalConstructor()
- ->getMock();
- }
- return [
- [$mocks[0], true],
- [$mocks[1], true],
- [$mocks[2], false]
- ];
- }
- /**
- * @dataProvider nodeProvider
- * @param $node
- * @param $expectedSuccessful
- */
- public function testHandleGetProperties($node, $expectedSuccessful) {
- $propFind = $this->getMockBuilder(PropFind::class)
- ->disableOriginalConstructor()
- ->getMock();
- if ($expectedSuccessful) {
- $propFind->expects($this->exactly(3))
- ->method('handle');
- } else {
- $propFind->expects($this->never())
- ->method('handle');
- }
- $this->plugin->handleGetProperties($propFind, $node);
- }
- public function baseUriProvider() {
- return [
- ['owncloud/remote.php/webdav/', '4567', 'owncloud/remote.php/dav/comments/files/4567'],
- ['owncloud/remote.php/files/', '4567', 'owncloud/remote.php/dav/comments/files/4567'],
- ['owncloud/wicked.php/files/', '4567', null]
- ];
- }
- /**
- * @dataProvider baseUriProvider
- * @param $baseUri
- * @param $fid
- * @param $expectedHref
- */
- public function testGetCommentsLink($baseUri, $fid, $expectedHref) {
- $node = $this->getMockBuilder(File::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node->expects($this->any())
- ->method('getId')
- ->willReturn($fid);
- $this->server->expects($this->once())
- ->method('getBaseUri')
- ->willReturn($baseUri);
- $href = $this->plugin->getCommentsLink($node);
- $this->assertSame($expectedHref, $href);
- }
- public function userProvider() {
- return [
- [
- $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock()
- ],
- [null]
- ];
- }
- /**
- * @dataProvider userProvider
- * @param $user
- */
- public function testGetUnreadCount($user) {
- $node = $this->getMockBuilder(File::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node->expects($this->any())
- ->method('getId')
- ->willReturn('4567');
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->commentsManager->expects($this->any())
- ->method('getNumberOfCommentsForObject')
- ->willReturn(42);
- $unread = $this->plugin->getUnreadCount($node);
- if (is_null($user)) {
- $this->assertNull($unread);
- } else {
- $this->assertSame($unread, 42);
- }
- }
- }
|