forked from friendica/friendica-addons
59 lines
1.7 KiB
PHP
59 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
class Sabre_CalDAV_Schedule_OutboxTest extends PHPUnit_Framework_TestCase {
|
||
|
|
||
|
function testSetup() {
|
||
|
|
||
|
$outbox = new Sabre_CalDAV_Schedule_Outbox('principals/user1');
|
||
|
$this->assertEquals('outbox', $outbox->getName());
|
||
|
$this->assertEquals(array(), $outbox->getChildren());
|
||
|
$this->assertEquals('principals/user1', $outbox->getOwner());
|
||
|
$this->assertEquals(null, $outbox->getGroup());
|
||
|
|
||
|
$this->assertEquals(array(
|
||
|
array(
|
||
|
'privilege' => '{' . Sabre_CalDAV_Plugin::NS_CALDAV . '}schedule-query-freebusy',
|
||
|
'principal' => 'principals/user1',
|
||
|
'protected' => true,
|
||
|
),
|
||
|
array(
|
||
|
'privilege' => '{DAV:}read',
|
||
|
'principal' => 'principals/user1',
|
||
|
'protected' => true,
|
||
|
),
|
||
|
), $outbox->getACL());
|
||
|
|
||
|
$ok = false;
|
||
|
try {
|
||
|
$outbox->setACL(array());
|
||
|
} catch (Sabre_DAV_Exception_MethodNotAllowed $e) {
|
||
|
$ok = true;
|
||
|
}
|
||
|
if (!$ok) {
|
||
|
$this->fail('Exception was not emitted');
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
function testGetSupportedPrivilegeSet() {
|
||
|
|
||
|
$outbox = new Sabre_CalDAV_Schedule_Outbox('principals/user1');
|
||
|
$r = $outbox->getSupportedPrivilegeSet();
|
||
|
|
||
|
$ok = false;
|
||
|
foreach($r['aggregates'] as $priv) {
|
||
|
|
||
|
if ($priv['privilege'] == '{' . Sabre_CalDAV_Plugin::NS_CALDAV . '}schedule-query-freebusy') {
|
||
|
$ok = true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!$ok) {
|
||
|
$this->fail('{' . Sabre_CalDAV_Plugin::NS_CALDAV . '}schedule-query-freebusy was not found as a supported privilege');
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|