Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1819716
LockDiscoveryTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
LockDiscoveryTest.php
View Options
<?php
namespace
Sabre\DAV\Xml\Property
;
use
Sabre\DAV\Xml\XmlTest
;
use
Sabre\DAV\Locks\LockInfo
;
class
LockDiscoveryTest
extends
XmlTest
{
function
testSerialize
()
{
$lock
=
new
LockInfo
();
$lock
->
owner
=
'hello'
;
$lock
->
token
=
'blabla'
;
$lock
->
timeout
=
600
;
$lock
->
created
=
strtotime
(
'2015-03-25 19:21:00'
);
$lock
->
scope
=
LockInfo
::
EXCLUSIVE
;
$lock
->
depth
=
0
;
$lock
->
uri
=
'hi'
;
$prop
=
new
LockDiscovery
([
$lock
]);
$xml
=
$this
->
write
([
'{DAV:}root'
=>
$prop
]);
$this
->
assertXmlStringEqualsXmlString
(
'<?xml version="1.0"?>
<d:root xmlns:d="DAV:">
<d:activelock>
<d:lockscope><d:exclusive /></d:lockscope>
<d:locktype><d:write /></d:locktype>
<d:lockroot>
<d:href>/hi</d:href>
</d:lockroot>
<d:depth>0</d:depth>
<d:timeout>Second-600</d:timeout>
<d:locktoken>
<d:href>opaquelocktoken:blabla</d:href>
</d:locktoken>
<d:owner>hello</d:owner>
</d:activelock>
</d:root>
'
,
$xml
);
}
function
testSerializeShared
()
{
$lock
=
new
LockInfo
();
$lock
->
owner
=
'hello'
;
$lock
->
token
=
'blabla'
;
$lock
->
timeout
=
600
;
$lock
->
created
=
strtotime
(
'2015-03-25 19:21:00'
);
$lock
->
scope
=
LockInfo
::
SHARED
;
$lock
->
depth
=
0
;
$lock
->
uri
=
'hi'
;
$prop
=
new
LockDiscovery
([
$lock
]);
$xml
=
$this
->
write
([
'{DAV:}root'
=>
$prop
]);
$this
->
assertXmlStringEqualsXmlString
(
'<?xml version="1.0"?>
<d:root xmlns:d="DAV:">
<d:activelock>
<d:lockscope><d:shared /></d:lockscope>
<d:locktype><d:write /></d:locktype>
<d:lockroot>
<d:href>/hi</d:href>
</d:lockroot>
<d:depth>0</d:depth>
<d:timeout>Second-600</d:timeout>
<d:locktoken>
<d:href>opaquelocktoken:blabla</d:href>
</d:locktoken>
<d:owner>hello</d:owner>
</d:activelock>
</d:root>
'
,
$xml
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Dec 21, 1:05 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914102
Default Alt Text
LockDiscoveryTest.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment