Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820392
DocumentTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
DocumentTest.php
View Options
<?php
namespace
Sabre\VObject
;
class
DocumentTest
extends
\PHPUnit_Framework_TestCase
{
function
testGetDocumentType
()
{
$doc
=
new
MockDocument
();
$this
->
assertEquals
(
Document
::
UNKNOWN
,
$doc
->
getDocumentType
());
}
function
testConstruct
()
{
$doc
=
new
MockDocument
(
'VLIST'
);
$this
->
assertEquals
(
'VLIST'
,
$doc
->
name
);
}
function
testCreateComponent
()
{
$vcal
=
new
Component\VCalendar
(
array
(),
false
);
$event
=
$vcal
->
createComponent
(
'VEVENT'
);
$this
->
assertInstanceOf
(
'Sabre
\V
Object
\C
omponent
\V
Event'
,
$event
);
$vcal
->
add
(
$event
);
$prop
=
$vcal
->
createProperty
(
'X-PROP'
,
'1234256'
,
array
(
'X-PARAM'
=>
'3'
));
$this
->
assertInstanceOf
(
'Sabre
\V
Object
\P
roperty'
,
$prop
);
$event
->
add
(
$prop
);
unset
(
$event
->
DTSTAMP
,
$event
->
UID
);
$out
=
$vcal
->
serialize
();
$this
->
assertEquals
(
"BEGIN:VCALENDAR
\r\n
BEGIN:VEVENT
\r\n
X-PROP;X-PARAM=3:1234256
\r\n
END:VEVENT
\r\n
END:VCALENDAR
\r\n
"
,
$out
);
}
function
testCreate
()
{
$vcal
=
new
Component\VCalendar
(
array
(),
false
);
$event
=
$vcal
->
create
(
'VEVENT'
);
$this
->
assertInstanceOf
(
'Sabre
\V
Object
\C
omponent
\V
Event'
,
$event
);
$event
=
$vcal
->
create
(
'CALSCALE'
);
$this
->
assertInstanceOf
(
'Sabre
\V
Object
\P
roperty
\T
ext'
,
$event
);
}
function
testGetClassNameForPropertyValue
()
{
$vcal
=
new
Component\VCalendar
(
array
(),
false
);
$this
->
assertEquals
(
'Sabre
\\
VObject
\\
Property
\\
Text'
,
$vcal
->
getClassNameForPropertyValue
(
'TEXT'
));
$this
->
assertNull
(
$vcal
->
getClassNameForPropertyValue
(
'FOO'
));
}
}
class
MockDocument
extends
Document
{
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 2:30 AM (6 d, 1 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
915824
Default Alt Text
DocumentTest.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment