Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820791
PropFindAllTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
PropFindAllTest.php
View Options
<?php
namespace
Sabre\DAV\Browser
;
class
PropFindAllTest
extends
\PHPUnit_Framework_TestCase
{
function
testHandleSimple
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
handle
(
'{DAV:}displayname'
,
'foo'
);
$this
->
assertEquals
(
200
,
$pf
->
getStatus
(
'{DAV:}displayname'
));
$this
->
assertEquals
(
'foo'
,
$pf
->
get
(
'{DAV:}displayname'
));
}
function
testHandleCallBack
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
handle
(
'{DAV:}displayname'
,
function
()
{
return
'foo'
;
});
$this
->
assertEquals
(
200
,
$pf
->
getStatus
(
'{DAV:}displayname'
));
$this
->
assertEquals
(
'foo'
,
$pf
->
get
(
'{DAV:}displayname'
));
}
function
testSet
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
set
(
'{DAV:}displayname'
,
'foo'
);
$this
->
assertEquals
(
200
,
$pf
->
getStatus
(
'{DAV:}displayname'
));
$this
->
assertEquals
(
'foo'
,
$pf
->
get
(
'{DAV:}displayname'
));
}
function
testSetNull
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
set
(
'{DAV:}displayname'
,
null
);
$this
->
assertEquals
(
404
,
$pf
->
getStatus
(
'{DAV:}displayname'
));
$this
->
assertEquals
(
null
,
$pf
->
get
(
'{DAV:}displayname'
));
}
function
testGet404Properties
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
set
(
'{DAV:}displayname'
,
null
);
$this
->
assertEquals
(
[
'{DAV:}displayname'
],
$pf
->
get404Properties
()
);
}
function
testGet404PropertiesNothing
()
{
$pf
=
new
PropFindAll
(
'foo'
);
$pf
->
set
(
'{DAV:}displayname'
,
'foo'
);
$this
->
assertEquals
(
[
'{http://sabredav.org/ns}idk'
],
$pf
->
get404Properties
()
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 2:13 PM (3 d, 17 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914281
Default Alt Text
PropFindAllTest.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment