2016-08-18 18:04:04 +03:00
|
|
|
<?php
|
2017-11-06 17:56:42 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Citharel <tcit@tcit.fr>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2016-08-18 18:04:04 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\CalDAV;
|
|
|
|
|
|
|
|
use OCA\DAV\CalDAV\Calendar;
|
2017-04-09 19:51:14 +03:00
|
|
|
use OCA\DAV\CalDAV\PublicCalendar;
|
2016-08-30 20:21:32 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
2017-10-20 16:09:52 +03:00
|
|
|
use OCP\IConfig;
|
2017-10-05 13:32:46 +03:00
|
|
|
use OCP\IGroupManager;
|
2016-08-18 18:04:04 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
|
|
|
use OCA\DAV\CalDAV\PublicCalendarRoot;
|
2017-10-22 13:16:58 +03:00
|
|
|
use OCP\ILogger;
|
2016-08-30 20:21:32 +03:00
|
|
|
use OCP\IUserManager;
|
2016-09-03 11:52:05 +03:00
|
|
|
use OCP\Security\ISecureRandom;
|
2016-10-13 16:34:26 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-08-18 18:04:04 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PublicCalendarRootTest
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
|
|
|
* @package OCA\DAV\Tests\unit\CalDAV
|
|
|
|
*/
|
|
|
|
class PublicCalendarRootTest extends TestCase {
|
|
|
|
|
2017-04-05 23:43:05 +03:00
|
|
|
const UNIT_TEST_USER = '';
|
2016-08-18 18:04:04 +03:00
|
|
|
/** @var CalDavBackend */
|
|
|
|
private $backend;
|
|
|
|
/** @var PublicCalendarRoot */
|
|
|
|
private $publicCalendarRoot;
|
|
|
|
/** @var IL10N */
|
|
|
|
private $l10n;
|
2016-10-13 12:04:22 +03:00
|
|
|
/** @var Principal|\PHPUnit_Framework_MockObject_MockObject */
|
2016-08-30 20:21:32 +03:00
|
|
|
private $principal;
|
2016-10-13 12:04:22 +03:00
|
|
|
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $userManager;
|
2017-10-05 13:32:46 +03:00
|
|
|
/** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $groupManager;
|
2017-10-20 16:09:52 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
2016-10-13 12:04:22 +03:00
|
|
|
|
2016-09-03 11:52:05 +03:00
|
|
|
/** @var ISecureRandom */
|
|
|
|
private $random;
|
2017-10-22 13:16:58 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
2016-08-18 18:04:04 +03:00
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$db = \OC::$server->getDatabaseConnection();
|
2016-10-13 12:04:22 +03:00
|
|
|
$this->principal = $this->createMock('OCA\DAV\Connector\Sabre\Principal');
|
|
|
|
$this->userManager = $this->createMock(IUserManager::class);
|
2017-10-05 13:32:46 +03:00
|
|
|
$this->groupManager = $this->createMock(IGroupManager::class);
|
2016-09-03 11:52:05 +03:00
|
|
|
$this->random = \OC::$server->getSecureRandom();
|
2017-10-22 13:16:58 +03:00
|
|
|
$this->logger = $this->createMock(ILogger::class);
|
2016-10-13 16:34:26 +03:00
|
|
|
$dispatcher = $this->createMock(EventDispatcherInterface::class);
|
2016-08-18 18:04:04 +03:00
|
|
|
|
2017-06-08 10:08:24 +03:00
|
|
|
$this->principal->expects($this->any())->method('getGroupMembership')
|
|
|
|
->withAnyParameters()
|
|
|
|
->willReturn([]);
|
|
|
|
|
2016-08-30 20:21:32 +03:00
|
|
|
$this->backend = new CalDavBackend(
|
|
|
|
$db,
|
|
|
|
$this->principal,
|
|
|
|
$this->userManager,
|
2017-10-05 13:32:46 +03:00
|
|
|
$this->groupManager,
|
2016-10-13 12:04:22 +03:00
|
|
|
$this->random,
|
2017-10-22 13:16:58 +03:00
|
|
|
$this->logger,
|
2016-10-13 16:34:26 +03:00
|
|
|
$dispatcher
|
2016-08-30 20:21:32 +03:00
|
|
|
);
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->l10n = $this->getMockBuilder(IL10N::class)
|
2016-08-18 18:04:04 +03:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2017-10-20 16:09:52 +03:00
|
|
|
$this->config = $this->createMock(IConfig::class);
|
|
|
|
|
|
|
|
$this->publicCalendarRoot = new PublicCalendarRoot($this->backend,
|
|
|
|
$this->l10n, $this->config);
|
2016-08-18 18:04:04 +03:00
|
|
|
}
|
|
|
|
|
2016-09-03 11:52:05 +03:00
|
|
|
public function tearDown() {
|
|
|
|
parent::tearDown();
|
|
|
|
|
|
|
|
if (is_null($this->backend)) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-08 10:08:24 +03:00
|
|
|
$this->principal->expects($this->any())->method('getGroupMembership')
|
|
|
|
->withAnyParameters()
|
|
|
|
->willReturn([]);
|
2016-09-03 11:52:05 +03:00
|
|
|
$books = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER);
|
|
|
|
foreach ($books as $book) {
|
|
|
|
$this->backend->deleteCalendar($book['id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-18 18:04:04 +03:00
|
|
|
public function testGetName() {
|
|
|
|
$name = $this->publicCalendarRoot->getName();
|
|
|
|
$this->assertEquals('public-calendars', $name);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetChild() {
|
|
|
|
|
|
|
|
$calendar = $this->createPublicCalendar();
|
|
|
|
|
2016-09-03 11:52:05 +03:00
|
|
|
$publicCalendars = $this->backend->getPublicCalendars();
|
|
|
|
$this->assertEquals(1, count($publicCalendars));
|
|
|
|
$this->assertEquals(true, $publicCalendars[0]['{http://owncloud.org/ns}public']);
|
|
|
|
|
|
|
|
$publicCalendarURI = $publicCalendars[0]['uri'];
|
2016-08-18 18:04:04 +03:00
|
|
|
|
|
|
|
$calendarResult = $this->publicCalendarRoot->getChild($publicCalendarURI);
|
|
|
|
$this->assertEquals($calendar, $calendarResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetChildren() {
|
2016-09-03 11:52:05 +03:00
|
|
|
$this->createPublicCalendar();
|
2016-08-18 18:04:04 +03:00
|
|
|
$calendarResults = $this->publicCalendarRoot->getChildren();
|
2017-04-05 23:43:05 +03:00
|
|
|
$this->assertSame([], $calendarResults);
|
2016-08-18 18:04:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Calendar
|
|
|
|
*/
|
|
|
|
protected function createPublicCalendar() {
|
|
|
|
$this->backend->createCalendar(self::UNIT_TEST_USER, 'Example', []);
|
|
|
|
|
|
|
|
$calendarInfo = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER)[0];
|
2017-10-20 16:09:52 +03:00
|
|
|
$calendar = new PublicCalendar($this->backend, $calendarInfo, $this->l10n, $this->config);
|
2016-09-03 11:52:05 +03:00
|
|
|
$publicUri = $calendar->setPublishStatus(true);
|
2016-08-18 18:04:04 +03:00
|
|
|
|
2016-09-03 11:52:05 +03:00
|
|
|
$calendarInfo = $this->backend->getPublicCalendar($publicUri);
|
2017-10-20 16:09:52 +03:00
|
|
|
$calendar = new PublicCalendar($this->backend, $calendarInfo, $this->l10n, $this->config);
|
2016-08-18 18:04:04 +03:00
|
|
|
|
|
|
|
return $calendar;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|