streams/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarTest.php

257 lines
5.8 KiB
PHP
Raw Normal View History

<?php
namespace Sabre\CalDAV;
use Sabre\DAV\PropPatch;
require_once 'Sabre/CalDAV/TestUtil.php';
class CalendarTest extends \PHPUnit_Framework_TestCase {
/**
* @var Sabre\CalDAV\Backend\PDO
*/
protected $backend;
protected $principalBackend;
/**
* @var Sabre\CalDAV\Calendar
*/
protected $calendar;
/**
* @var array
*/
protected $calendars;
function setup() {
$this->backend = TestUtil::getBackend();
$this->calendars = $this->backend->getCalendarsForUser('principals/user1');
$this->assertEquals(2, count($this->calendars));
$this->calendar = new Calendar($this->backend, $this->calendars[0]);
}
function teardown() {
unset($this->backend);
}
function testSimple() {
$this->assertEquals($this->calendars[0]['uri'], $this->calendar->getName());
}
/**
* @depends testSimple
*/
function testUpdateProperties() {
$propPatch = new PropPatch([
'{DAV:}displayname' => 'NewName',
]);
$result = $this->calendar->propPatch($propPatch);
$result = $propPatch->commit();
$this->assertEquals(true, $result);
$calendars2 = $this->backend->getCalendarsForUser('principals/user1');
2016-05-28 15:46:24 +00:00
$this->assertEquals('NewName', $calendars2[0]['{DAV:}displayname']);
}
/**
* @depends testSimple
*/
function testGetProperties() {
2016-05-28 15:46:24 +00:00
$question = [
'{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set',
2016-05-28 15:46:24 +00:00
];
$result = $this->calendar->getProperties($question);
2016-05-28 15:46:24 +00:00
foreach ($question as $q) $this->assertArrayHasKey($q, $result);
2016-05-28 15:46:24 +00:00
$this->assertEquals(['VEVENT', 'VTODO'], $result['{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set']->getValue());
}
/**
* @expectedException Sabre\DAV\Exception\NotFound
* @depends testSimple
*/
function testGetChildNotFound() {
$this->calendar->getChild('randomname');
}
/**
* @depends testSimple
*/
function testGetChildren() {
$children = $this->calendar->getChildren();
2016-05-28 15:46:24 +00:00
$this->assertEquals(1, count($children));
$this->assertTrue($children[0] instanceof CalendarObject);
}
/**
* @depends testGetChildren
*/
function testChildExists() {
$this->assertFalse($this->calendar->childExists('foo'));
$children = $this->calendar->getChildren();
$this->assertTrue($this->calendar->childExists($children[0]->getName()));
}
/**
* @expectedException Sabre\DAV\Exception\MethodNotAllowed
*/
function testCreateDirectory() {
$this->calendar->createDirectory('hello');
}
/**
* @expectedException Sabre\DAV\Exception\MethodNotAllowed
*/
function testSetName() {
$this->calendar->setName('hello');
}
function testGetLastModified() {
$this->assertNull($this->calendar->getLastModified());
}
function testCreateFile() {
2016-05-28 15:46:24 +00:00
$file = fopen('php://memory', 'r+');
fwrite($file, TestUtil::getTestCalendarData());
rewind($file);
2016-05-28 15:46:24 +00:00
$this->calendar->createFile('hello', $file);
$file = $this->calendar->getChild('hello');
$this->assertTrue($file instanceof CalendarObject);
}
function testCreateFileNoSupportedComponents() {
2016-05-28 15:46:24 +00:00
$file = fopen('php://memory', 'r+');
fwrite($file, TestUtil::getTestCalendarData());
rewind($file);
$calendar = new Calendar($this->backend, $this->calendars[1]);
2016-05-28 15:46:24 +00:00
$calendar->createFile('hello', $file);
$file = $calendar->getChild('hello');
$this->assertTrue($file instanceof CalendarObject);
}
function testDelete() {
$this->calendar->delete();
$calendars = $this->backend->getCalendarsForUser('principals/user1');
$this->assertEquals(1, count($calendars));
}
function testGetOwner() {
2016-05-28 15:46:24 +00:00
$this->assertEquals('principals/user1', $this->calendar->getOwner());
}
function testGetGroup() {
$this->assertNull($this->calendar->getGroup());
}
function testGetACL() {
2016-05-28 15:46:24 +00:00
$expected = [
[
'privilege' => '{DAV:}read',
'principal' => 'principals/user1',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
[
'privilege' => '{DAV:}read',
'principal' => 'principals/user1/calendar-proxy-write',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
[
'privilege' => '{DAV:}read',
'principal' => 'principals/user1/calendar-proxy-read',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
[
'privilege' => '{' . Plugin::NS_CALDAV . '}read-free-busy',
'principal' => '{DAV:}authenticated',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
[
'privilege' => '{DAV:}write',
'principal' => 'principals/user1',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
[
'privilege' => '{DAV:}write',
'principal' => 'principals/user1/calendar-proxy-write',
'protected' => true,
2016-05-28 15:46:24 +00:00
],
];
$this->assertEquals($expected, $this->calendar->getACL());
}
/**
2016-05-28 15:46:24 +00:00
* @expectedException \Sabre\DAV\Exception\Forbidden
*/
function testSetACL() {
2016-05-28 15:46:24 +00:00
$this->calendar->setACL([]);
}
function testGetSyncToken() {
2016-05-28 15:46:24 +00:00
$this->assertNull($this->calendar->getSyncToken());
}
function testGetSyncTokenNoSyncSupport() {
2016-05-28 15:46:24 +00:00
$calendar = new Calendar(new Backend\Mock([], []), []);
$this->assertNull($calendar->getSyncToken());
}
function testGetChanges() {
2016-05-28 15:46:24 +00:00
$this->assertNull($this->calendar->getChanges(1, 1));
}
}