123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- /**
- *
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Citharel <nextcloud@tcit.fr>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- *
- * @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/>.
- *
- */
- namespace OCA\DAV\Tests\unit\CalDAV;
- use OCA\DAV\CalDAV\CalDavBackend;
- use OCA\DAV\CalDAV\Calendar;
- use OCA\DAV\CalDAV\PublicCalendar;
- use OCA\DAV\CalDAV\PublicCalendarRoot;
- use OCA\DAV\Connector\Sabre\Principal;
- use OCP\IConfig;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IUserManager;
- use OCP\Security\ISecureRandom;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- use Test\TestCase;
- /**
- * Class PublicCalendarRootTest
- *
- * @group DB
- *
- * @package OCA\DAV\Tests\unit\CalDAV
- */
- class PublicCalendarRootTest extends TestCase {
- public const UNIT_TEST_USER = '';
- /** @var CalDavBackend */
- private $backend;
- /** @var PublicCalendarRoot */
- private $publicCalendarRoot;
- /** @var IL10N */
- private $l10n;
- /** @var Principal|\PHPUnit_Framework_MockObject_MockObject */
- private $principal;
- /** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $userManager;
- /** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $groupManager;
- /** @var IConfig */
- protected $config;
- /** @var ISecureRandom */
- private $random;
- /** @var ILogger */
- private $logger;
- protected function setUp(): void {
- parent::setUp();
- $db = \OC::$server->getDatabaseConnection();
- $this->principal = $this->createMock('OCA\DAV\Connector\Sabre\Principal');
- $this->userManager = $this->createMock(IUserManager::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->random = \OC::$server->getSecureRandom();
- $this->logger = $this->createMock(ILogger::class);
- $dispatcher = $this->createMock(EventDispatcherInterface::class);
- $this->principal->expects($this->any())->method('getGroupMembership')
- ->withAnyParameters()
- ->willReturn([]);
- $this->principal->expects($this->any())->method('getCircleMembership')
- ->withAnyParameters()
- ->willReturn([]);
- $this->backend = new CalDavBackend(
- $db,
- $this->principal,
- $this->userManager,
- $this->groupManager,
- $this->random,
- $this->logger,
- $dispatcher
- );
- $this->l10n = $this->getMockBuilder(IL10N::class)
- ->disableOriginalConstructor()->getMock();
- $this->config = $this->createMock(IConfig::class);
- $this->publicCalendarRoot = new PublicCalendarRoot($this->backend,
- $this->l10n, $this->config);
- }
- protected function tearDown(): void {
- parent::tearDown();
- if (is_null($this->backend)) {
- return;
- }
- $this->principal->expects($this->any())->method('getGroupMembership')
- ->withAnyParameters()
- ->willReturn([]);
- $this->principal->expects($this->any())->method('getCircleMembership')
- ->withAnyParameters()
- ->willReturn([]);
- $books = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER);
- foreach ($books as $book) {
- $this->backend->deleteCalendar($book['id']);
- }
- }
- public function testGetName() {
- $name = $this->publicCalendarRoot->getName();
- $this->assertEquals('public-calendars', $name);
- }
- public function testGetChild() {
- $calendar = $this->createPublicCalendar();
- $publicCalendars = $this->backend->getPublicCalendars();
- $this->assertEquals(1, count($publicCalendars));
- $this->assertEquals(true, $publicCalendars[0]['{http://owncloud.org/ns}public']);
- $publicCalendarURI = $publicCalendars[0]['uri'];
- $calendarResult = $this->publicCalendarRoot->getChild($publicCalendarURI);
- $this->assertEquals($calendar, $calendarResult);
- }
- public function testGetChildren() {
- $this->createPublicCalendar();
- $calendarResults = $this->publicCalendarRoot->getChildren();
- $this->assertSame([], $calendarResults);
- }
- /**
- * @return Calendar
- */
- protected function createPublicCalendar() {
- $this->backend->createCalendar(self::UNIT_TEST_USER, 'Example', []);
- $calendarInfo = $this->backend->getCalendarsForUser(self::UNIT_TEST_USER)[0];
- $calendar = new PublicCalendar($this->backend, $calendarInfo, $this->l10n, $this->config);
- $publicUri = $calendar->setPublishStatus(true);
- $calendarInfo = $this->backend->getPublicCalendar($publicUri);
- $calendar = new PublicCalendar($this->backend, $calendarInfo, $this->l10n, $this->config);
- return $calendar;
- }
- }
|