Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820520
AddressBookRootTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
819 B
Subscribers
None
AddressBookRootTest.php
View Options
<?php
namespace
Sabre\CardDAV
;
use
Sabre\DAVACL
;
class
AddressBookRootTest
extends
\PHPUnit_Framework_TestCase
{
function
testGetName
()
{
$pBackend
=
new
DAVACL\PrincipalBackend\Mock
();
$cBackend
=
new
Backend\Mock
();
$root
=
new
AddressBookRoot
(
$pBackend
,
$cBackend
);
$this
->
assertEquals
(
'addressbooks'
,
$root
->
getName
());
}
function
testGetChildForPrincipal
()
{
$pBackend
=
new
DAVACL\PrincipalBackend\Mock
();
$cBackend
=
new
Backend\Mock
();
$root
=
new
AddressBookRoot
(
$pBackend
,
$cBackend
);
$children
=
$root
->
getChildren
();
$this
->
assertEquals
(
3
,
count
(
$children
));
$this
->
assertInstanceOf
(
'Sabre
\\
CardDAV
\\
AddressBookHome'
,
$children
[
0
]);
$this
->
assertEquals
(
'user1'
,
$children
[
0
]->
getName
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 4:43 AM (5 d, 6 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914150
Default Alt Text
AddressBookRootTest.php (819 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment