Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820702
VFreeBusyTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
2 KB
Subscribers
None
VFreeBusyTest.php
View Options
<?php
namespace
Sabre\VObject\Component
;
use
Sabre\VObject
;
use
Sabre\VObject\Reader
;
class
VFreeBusyTest
extends
\PHPUnit_Framework_TestCase
{
function
testIsFree
()
{
$input
=
<<<BLA
BEGIN:VCALENDAR
BEGIN:VFREEBUSY
FREEBUSY;FBTYPE=FREE:20120912T000500Z/PT1H
FREEBUSY;FBTYPE=BUSY:20120912T010000Z/20120912T020000Z
FREEBUSY;FBTYPE=BUSY-TENTATIVE:20120912T020000Z/20120912T030000Z
FREEBUSY;FBTYPE=BUSY-UNAVAILABLE:20120912T030000Z/20120912T040000Z
FREEBUSY;FBTYPE=BUSY:20120912T050000Z/20120912T060000Z,20120912T080000Z/20120912T090000Z
FREEBUSY;FBTYPE=BUSY:20120912T100000Z/PT1H
END:VFREEBUSY
END:VCALENDAR
BLA;
$obj
=
VObject\Reader
::
read
(
$input
);
$vfb
=
$obj
->
VFREEBUSY
;
$tz
=
new
\DateTimeZone
(
'UTC'
);
$this
->
assertFalse
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 01:15:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 01:45:00'
,
$tz
)));
$this
->
assertFalse
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 08:05:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 08:10:00'
,
$tz
)));
$this
->
assertFalse
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 10:15:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 10:45:00'
,
$tz
)));
// Checking whether the end time is treated as non-inclusive
$this
->
assertTrue
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 09:00:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 09:15:00'
,
$tz
)));
$this
->
assertTrue
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 09:45:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 10:00:00'
,
$tz
)));
$this
->
assertTrue
(
$vfb
->
isFree
(
new
\DateTime
(
'2012-09-12 11:00:00'
,
$tz
),
new
\DateTime
(
'2012-09-12 12:00:00'
,
$tz
)));
}
public
function
testValidate
()
{
$input
=
<<<HI
BEGIN:VCALENDAR
VERSION:2.0
PRODID:YoYo
BEGIN:VFREEBUSY
UID:some-random-id
DTSTAMP:20140402T180200Z
END:VFREEBUSY
END:VCALENDAR
HI;
$obj
=
Reader
::
read
(
$input
);
$warnings
=
$obj
->
validate
();
$messages
=
array
();
foreach
(
$warnings
as
$warning
)
{
$messages
[]
=
$warning
[
'message'
];
}
$this
->
assertEquals
(
array
(),
$messages
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 9:41 AM (4 d, 9 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
916457
Default Alt Text
VFreeBusyTest.php (2 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment