Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820660
PluginPropertiesWithSharedCalendarTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
2 KB
Subscribers
None
PluginPropertiesWithSharedCalendarTest.php
View Options
<?php
namespace
Sabre\CalDAV\Schedule
;
use
Sabre\DAVACL
;
use
Sabre\DAV
;
use
Sabre\HTTP
;
class
PluginPropertiesWithSharedCalendarTest
extends
\Sabre\DAVServerTest
{
protected
$setupCalDAV
=
true
;
protected
$setupCalDAVScheduling
=
true
;
protected
$setupCalDAVSharing
=
true
;
function
setUp
()
{
parent
::
setUp
();
$this
->
caldavBackend
->
createCalendar
(
'principals/user1'
,
'shared'
,
[
'{http://calendarserver.org/ns/}shared-url'
=>
new
DAV\Xml\Property\Href
(
'calendars/user2/default/'
),
'{http://sabredav.org/ns}read-only'
=>
false
,
'{http://sabredav.org/ns}owner-principal'
=>
'principals/user2'
,
]
);
$this
->
caldavBackend
->
createCalendar
(
'principals/user1'
,
'default'
,
[
]
);
}
function
testPrincipalProperties
()
{
$props
=
$this
->
server
->
getPropertiesForPath
(
'/principals/user1'
,
array
(
'{urn:ietf:params:xml:ns:caldav}schedule-inbox-URL'
,
'{urn:ietf:params:xml:ns:caldav}schedule-outbox-URL'
,
'{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'
,
'{urn:ietf:params:xml:ns:caldav}calendar-user-type'
,
'{urn:ietf:params:xml:ns:caldav}schedule-default-calendar-URL'
,
));
$this
->
assertArrayHasKey
(
0
,
$props
);
$this
->
assertArrayHasKey
(
200
,
$props
[
0
]);
$this
->
assertArrayHasKey
(
'{urn:ietf:params:xml:ns:caldav}schedule-outbox-URL'
,
$props
[
0
][
200
]);
$prop
=
$props
[
0
][
200
][
'{urn:ietf:params:xml:ns:caldav}schedule-outbox-URL'
];
$this
->
assertTrue
(
$prop
instanceof
DAV\Xml\Property\Href
);
$this
->
assertEquals
(
'calendars/user1/outbox/'
,
$prop
->
getHref
());
$this
->
assertArrayHasKey
(
'{urn:ietf:params:xml:ns:caldav}schedule-inbox-URL'
,
$props
[
0
][
200
]);
$prop
=
$props
[
0
][
200
][
'{urn:ietf:params:xml:ns:caldav}schedule-inbox-URL'
];
$this
->
assertTrue
(
$prop
instanceof
DAV\Xml\Property\Href
);
$this
->
assertEquals
(
'calendars/user1/inbox/'
,
$prop
->
getHref
());
$this
->
assertArrayHasKey
(
'{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'
,
$props
[
0
][
200
]);
$prop
=
$props
[
0
][
200
][
'{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'
];
$this
->
assertTrue
(
$prop
instanceof
DAV\Xml\Property\Href
);
$this
->
assertEquals
(
array
(
'mailto:user1.sabredav@sabredav.org'
,
'/principals/user1/'
),
$prop
->
getHrefs
());
$this
->
assertArrayHasKey
(
'{urn:ietf:params:xml:ns:caldav}calendar-user-type'
,
$props
[
0
][
200
]);
$prop
=
$props
[
0
][
200
][
'{urn:ietf:params:xml:ns:caldav}calendar-user-type'
];
$this
->
assertEquals
(
'INDIVIDUAL'
,
$prop
);
$this
->
assertArrayHasKey
(
'{urn:ietf:params:xml:ns:caldav}schedule-default-calendar-URL'
,
$props
[
0
][
200
]);
$prop
=
$props
[
0
][
200
][
'{urn:ietf:params:xml:ns:caldav}schedule-default-calendar-URL'
];
$this
->
assertEquals
(
'calendars/user1/default/'
,
$prop
->
getHref
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 8:12 AM (4 d, 11 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914100
Default Alt Text
PluginPropertiesWithSharedCalendarTest.php (2 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment