1, 'name' => 'Calendar', 'principaluri' => 'principals/user1', 'uri' => 'calendar1', '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => 'BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VTIMEZONE TZID:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU DTSTART:19810329T020000 TZNAME:GMT+2 TZOFFSETTO:+0200 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU DTSTART:19961027T030000 TZNAME:GMT+1 TZOFFSETTO:+0100 END:STANDARD END:VTIMEZONE END:VCALENDAR', ) ); protected $caldavCalendarObjects = array( 1 => array( 'event.ics' => array( 'calendardata' => 'BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VEVENT CREATED:20140701T143658Z UID:dba46fe8-1631-4d98-a575-97963c364dfe DTEND:20141108T073000 TRANSP:OPAQUE SUMMARY:Floating Time event, starting 05:30am Europe/Berlin DTSTART:20141108T053000 DTSTAMP:20140701T143706Z SEQUENCE:1 END:VEVENT END:VCALENDAR ', ), ), ); function testExpandCalendarQuery() { $request = new HTTP\Request('REPORT', '/calendars/user1/calendar1', [ 'Depth' => 1, 'Content-Type' => 'application/xml', ]); $request->setBody(' '); $response = $this->request($request); // Everts super awesome xml parser. $body = substr( $response->body, $start = strpos($response->body, 'BEGIN:VCALENDAR'), strpos($response->body, 'END:VCALENDAR') - $start + 13 ); $body = str_replace(' ','',$body); $vObject = VObject\Reader::read($body); // check if DTSTARTs and DTENDs are correct foreach ($vObject->VEVENT as $vevent) { /** @var $vevent Sabre\VObject\Component\VEvent */ foreach ($vevent->children as $child) { /** @var $child Sabre\VObject\Property */ if ($child->name == 'DTSTART') { // DTSTART should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T043000Z'); } elseif ($child->name == 'DTEND') { // DTEND should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T063000Z'); } } } } function testExpandMultiGet() { $request = new HTTP\Request('REPORT', '/calendars/user1/calendar1', [ 'Depth' => 1, 'Content-Type' => 'application/xml', ]); $request->setBody(' /calendars/user1/calendar1/event.ics '); $response = $this->request($request); $this->assertEquals(207, $response->getStatus()); // Everts super awesome xml parser. $body = substr( $response->body, $start = strpos($response->body, 'BEGIN:VCALENDAR'), strpos($response->body, 'END:VCALENDAR') - $start + 13 ); $body = str_replace(' ','',$body); $vObject = VObject\Reader::read($body); // check if DTSTARTs and DTENDs are correct foreach ($vObject->VEVENT as $vevent) { /** @var $vevent Sabre\VObject\Component\VEvent */ foreach ($vevent->children as $child) { /** @var $child Sabre\VObject\Property */ if ($child->name == 'DTSTART') { // DTSTART should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T043000Z'); } elseif ($child->name == 'DTEND') { // DTEND should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T063000Z'); } } } } function testExpandExport() { $request = new HTTP\Request('GET', '/calendars/user1/calendar1?export&start=1&end=2000000000&expand=1', [ 'Depth' => 1, 'Content-Type' => 'application/xml', ]); $response = $this->request($request); $this->assertEquals(200, $response->getStatus()); // Everts super awesome xml parser. $body = substr( $response->body, $start = strpos($response->body, 'BEGIN:VCALENDAR'), strpos($response->body, 'END:VCALENDAR') - $start + 13 ); $body = str_replace(' ','',$body); $vObject = VObject\Reader::read($body); // check if DTSTARTs and DTENDs are correct foreach ($vObject->VEVENT as $vevent) { /** @var $vevent Sabre\VObject\Component\VEvent */ foreach ($vevent->children as $child) { /** @var $child Sabre\VObject\Property */ if ($child->name == 'DTSTART') { // DTSTART should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T043000Z'); } elseif ($child->name == 'DTEND') { // DTEND should be the UTC equivalent of given floating time $this->assertEquals($child->getValue(), '20141108T063000Z'); } } } } }