Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1822188
IncorrectExpandTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
IncorrectExpandTest.php
View Options
<?php
namespace
Sabre\VObject
;
use
DateTime
,
DateTimeZone
;
/**
* This is a unittest for Issue #53.
*/
class
RecurrenceIteratorIncorrectExpandTest
extends
\PHPUnit_Framework_TestCase
{
function
testExpand
()
{
$input
=
<<<ICS
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
UID:foo
DTSTART:20130711T050000Z
DTEND:20130711T053000Z
RRULE:FREQ=DAILY;INTERVAL=1;COUNT=2
END:VEVENT
BEGIN:VEVENT
UID:foo
DTSTART:20130719T050000Z
DTEND:20130719T053000Z
RECURRENCE-ID:20130712T050000Z
END:VEVENT
END:VCALENDAR
ICS;
$vcal
=
Reader
::
read
(
$input
);
$this
->
assertInstanceOf
(
'Sabre
\\
VObject
\\
Component
\\
VCalendar'
,
$vcal
);
$vcal
->
expand
(
new
DateTime
(
'2011-01-01'
),
new
DateTime
(
'2014-01-01'
));
$result
=
$vcal
->
serialize
();
$output
=
<<<ICS
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
UID:foo
DTSTART:20130711T050000Z
DTEND:20130711T053000Z
END:VEVENT
BEGIN:VEVENT
UID:foo
DTSTART:20130719T050000Z
DTEND:20130719T053000Z
RECURRENCE-ID:20130712T050000Z
END:VEVENT
END:VCALENDAR
ICS;
$this
->
assertEquals
(
$output
,
str_replace
(
"
\r
"
,
""
,
$result
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Dec 24, 2:52 PM (1 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
916972
Default Alt Text
IncorrectExpandTest.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment