117 lines
3.1 KiB
PHP
117 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace OCA\DAV\Tests\unit\CalDAV;
|
|
|
|
use OCA\DAV\CalDAV\Calendar;
|
|
use OCA\DAV\CalDAV\PublicCalendar;
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
|
use OCP\IL10N;
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
|
use OCA\DAV\CalDAV\PublicCalendarRoot;
|
|
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 {
|
|
|
|
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 ISecureRandom */
|
|
private $random;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
|
|
$db = \OC::$server->getDatabaseConnection();
|
|
$this->principal = $this->createMock('OCA\DAV\Connector\Sabre\Principal');
|
|
$this->userManager = $this->createMock(IUserManager::class);
|
|
$this->random = \OC::$server->getSecureRandom();
|
|
$dispatcher = $this->createMock(EventDispatcherInterface::class);
|
|
|
|
$this->backend = new CalDavBackend(
|
|
$db,
|
|
$this->principal,
|
|
$this->userManager,
|
|
$this->random,
|
|
$dispatcher
|
|
);
|
|
|
|
$this->publicCalendarRoot = new PublicCalendarRoot($this->backend);
|
|
|
|
$this->l10n = $this->getMockBuilder('\OCP\IL10N')
|
|
->disableOriginalConstructor()->getMock();
|
|
}
|
|
|
|
public function tearDown() {
|
|
parent::tearDown();
|
|
|
|
if (is_null($this->backend)) {
|
|
return;
|
|
}
|
|
$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);
|
|
$publicUri = $calendar->setPublishStatus(true);
|
|
|
|
$calendarInfo = $this->backend->getPublicCalendar($publicUri);
|
|
$calendar = new PublicCalendar($this->backend, $calendarInfo, $this->l10n);
|
|
|
|
return $calendar;
|
|
}
|
|
|
|
}
|