123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- <?php
- namespace Sabre\VObject\ITip;
- class BrokerProcessReplyTest extends BrokerTester {
- function testReplyNoOriginal() {
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = null;
- $expected = null;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyAccept() {
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE;PARTSTAT=ACCEPTED;SCHEDULE-STATUS=2.0:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyRequestStatus() {
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- UID:foobar
- REQUEST-STATUS:2.3;foo-bar!
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- UID:foobar
- SEQUENCE:2
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- UID:foobar
- SEQUENCE:2
- ATTENDEE;PARTSTAT=ACCEPTED;SCHEDULE-STATUS=2.3:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyPartyCrasher() {
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:crasher@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:crasher@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyNewException() {
- // This is a reply to 1 instance of a recurring event. This should
- // automatically create an exception.
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- RECURRENCE-ID:20140725T000000Z
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- DTSTART:20140725T000000Z
- DTEND:20140725T010000Z
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- RECURRENCE-ID:20140725T000000Z
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyNewExceptionTz() {
- // This is a reply to 1 instance of a recurring event. This should
- // automatically create an exception.
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- RECURRENCE-ID;TZID=America/Toronto:20140725T000000
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART;TZID=America/Toronto:20140724T000000
- DTEND;TZID=America/Toronto:20140724T010000
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART;TZID=America/Toronto:20140724T000000
- DTEND;TZID=America/Toronto:20140724T010000
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- DTSTART;TZID=America/Toronto:20140725T000000
- DTEND;TZID=America/Toronto:20140725T010000
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- RECURRENCE-ID;TZID=America/Toronto:20140725T000000
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyPartyCrashCreateExcepton() {
- // IN this test there's a recurring event that has an exception. The
- // exception is missing the attendee.
- //
- // The attendee party crashes the instance, so it should show up in the
- // resulting object.
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED;CN=Crasher!:mailto:crasher@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- RECURRENCE-ID:20140725T000000Z
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- DTSTART:20140725T000000Z
- DTEND:20140725T010000Z
- ORGANIZER:mailto:bar@example.org
- RECURRENCE-ID:20140725T000000Z
- ATTENDEE;PARTSTAT=ACCEPTED;CN=Crasher!:mailto:crasher@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyNewExceptionNoMasterEvent() {
- /**
- * This iTip message would normally create a new exception, but the
- * server is not able to create this new instance, because there's no
- * master event to clone from.
- *
- * This test checks if the message is ignored.
- */
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED;CN=Crasher!:mailto:crasher@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- RECURRENCE-ID:20140725T000000Z
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- RECURRENCE-ID:20140724T000000Z
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = null;
- $result = $this->process($itip, $old, $expected);
- }
- /**
- * @depends testReplyAccept
- */
- function testReplyAcceptUpdateRSVP() {
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE;RSVP=TRUE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- ATTENDEE;PARTSTAT=ACCEPTED;SCHEDULE-STATUS=2.0:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- function testReplyNewExceptionFirstOccurence() {
- // This is a reply to 1 instance of a recurring event. This should
- // automatically create an exception.
- $itip = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- METHOD:REPLY
- BEGIN:VEVENT
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- SEQUENCE:2
- RECURRENCE-ID:20140724T000000Z
- UID:foobar
- END:VEVENT
- END:VCALENDAR
- ICS;
- $old = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- END:VCALENDAR
- ICS;
- $expected = <<<ICS
- BEGIN:VCALENDAR
- VERSION:2.0
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- RRULE:FREQ=DAILY
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ATTENDEE:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- END:VEVENT
- BEGIN:VEVENT
- SEQUENCE:2
- UID:foobar
- DTSTART:20140724T000000Z
- DTEND:20140724T010000Z
- ATTENDEE;PARTSTAT=ACCEPTED:mailto:foo@example.org
- ORGANIZER:mailto:bar@example.org
- RECURRENCE-ID:20140724T000000Z
- END:VEVENT
- END:VCALENDAR
- ICS;
- $result = $this->process($itip, $old, $expected);
- }
- }
|