1 // xestiacalendar_icaleventload.h - Xestia Calendar iCalendar Event Component Unit Tests
3 // (c) 2016 Xestia Software Development.
5 // This file is part of Xestia Calendar.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Calendar. If not, see <http://www.gnu.org/licenses/>
19 #include "../objects/calendarevent/CalendarEvent.h"
21 TEST(iCalendarEvent, BasicTests){
23 CalendarEventObject TestEvent;
25 ASSERT_EQ(CALENDAROBJECTLOAD_MISSING, TestEvent.LoadFile("iCalendarEvent-Missing.vcf"));
26 ASSERT_EQ(CALENDAROBJECTLOAD_CANNOTOPEN, TestEvent.LoadFile("iCalendarEvent-InvalidPermissions.vcf"));
27 ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent.LoadFile("iCalendarEvent-Load1.vcf"));
31 TEST(iCalendarEvent, BaseObjectVerifyTests){
33 CalendarEventObject TestEvent;
34 TestEvent.LoadFile("iCalendarEvent-Load1.vcf");
35 ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent.ValidBaseObject());
39 ASSERT_EQ("REQUEST", TestEvent.MethodData);
40 ASSERT_EQ("EXAMPLE=DATA", TestEvent.MethodTokens);
42 // Tests for CALSCALE.
44 ASSERT_EQ("GREGORIAN", TestEvent.CalendarScaleData);
45 ASSERT_EQ("MORE=YES", TestEvent.CalendarScaleTokens);
49 TEST(iCalendarEvent, ObjectDataTests){
51 CalendarEventObject TestEvent;
52 ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent.LoadFile("iCalendarEvent-Load2.vcf"));
53 ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent.ValidBaseObject());
57 ASSERT_EQ("20160122T124100Z", TestEvent.DateTimeStampData);
58 ASSERT_EQ("OTHER=PARAM", TestEvent.DateTimeStampTokens);
62 ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306e0", TestEvent.UniqueID);
63 ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestEvent.UniqueIDTokens);
67 ASSERT_EQ("20160122T183000Z", TestEvent.DateTimeStartData);
68 ASSERT_EQ("DATE-TIME", TestEvent.DateTimeStartDataValue);
69 ASSERT_EQ("Europe/Truro", TestEvent.DateTimeStartDataTimeZoneID);
70 ASSERT_EQ("PARAMONE=YES;PARAMTWO=NO", TestEvent.DateTimeStartDataTokens);
74 ASSERT_EQ("PUBLIC", TestEvent.ClassData);
75 ASSERT_EQ("CHOCOLATE=BAR", TestEvent.ClassDataTokens);
79 ASSERT_EQ("20160123T081100Z", TestEvent.DateTimeCreatedData);
80 ASSERT_EQ("CARAMEL=PLEASE", TestEvent.DateTimeCreatedTokens);
82 // Tests for DESCRIPTION.
84 std::string DescriptionData;
85 std::string DescriptionAltRep;
86 std::string DescriptionLanguage;
87 std::string DescriptionTokens;
89 if (TestEvent.DescriptionList.begin() != TestEvent.DescriptionList.end()){
90 DescriptionData = TestEvent.DescriptionList[0];
93 if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){
94 DescriptionAltRep = TestEvent.DescriptionListAltRep[0];
97 if (TestEvent.DescriptionListAltRep.begin() != TestEvent.DescriptionListAltRep.end()){
98 DescriptionLanguage = TestEvent.DescriptionListLanguage[0];
101 if (TestEvent.DescriptionListTokens.begin() != TestEvent.DescriptionListTokens.end()){
102 DescriptionTokens = TestEvent.DescriptionListTokens[0];
105 ASSERT_EQ("This is a description of the event.", DescriptionData);
106 ASSERT_EQ("null:nodata", DescriptionAltRep);
107 ASSERT_EQ("kw", DescriptionLanguage);
108 ASSERT_EQ("EXAMPLE=TOKEN;MOREDATA=YES", DescriptionTokens);
112 ASSERT_EQ("5.0;5.0", TestEvent.GeographicData);
113 ASSERT_EQ("EXAMPLE=MEEP", TestEvent.GeographicTokens);
115 // Tests for LAST-MODIFIED.
117 ASSERT_EQ("20160124T093000Z", TestEvent.LastModifiedData);
118 ASSERT_EQ("FUTURE=ODD", TestEvent.LastModifiedTokens);
120 // Tests for LOCATION.
122 ASSERT_EQ("The Basement, Truro", TestEvent.LocationData);
123 ASSERT_EQ("null:nodata", TestEvent.LocationDataAltRep);
124 ASSERT_EQ("kw", TestEvent.LocationDataLanguage);
125 ASSERT_EQ("EXACT=NO", TestEvent.LocationDataTokens);
127 // Tests for ORGANIZER.
129 ASSERT_EQ("mailto:organiser@example.com", TestEvent.OrganiserData);
130 ASSERT_EQ("ExampleOrganiser", TestEvent.OrganiserDataCommonName);
131 ASSERT_EQ("null:nodata", TestEvent.OrganiserDataDirectoryEntry);
132 ASSERT_EQ("mailto:organiser.noreply@example.com", TestEvent.OrganiserDataSentByParam);
133 ASSERT_EQ("kw", TestEvent.OrganiserDataLanguage);
134 ASSERT_EQ("HAPPY=DAYS", TestEvent.OrganiserDataTokens);
136 // Tests for PRIORITY.
138 ASSERT_EQ(5, TestEvent.PriorityData);
139 ASSERT_EQ("STATUS=DEFAULT", TestEvent.PriorityTokens);
141 // Tests for SEQUENCE.
143 ASSERT_EQ(3, TestEvent.SequenceData);
144 ASSERT_EQ("TEST=YAY", TestEvent.SequenceTokens);
148 ASSERT_EQ("2.0;Success", TestEvent.RequestStatusData);
149 ASSERT_EQ("kw", TestEvent.RequestStatusLanguage);
150 ASSERT_EQ("FAVOURITE=RICHTEA;NOTLIKE=UNKNOWN", TestEvent.RequestStatusTokens);
152 // Tests for SUMMARY.
154 ASSERT_EQ("A summary of the event.", TestEvent.SummaryData);
155 ASSERT_EQ("null:nodata", TestEvent.SummaryDataAltRep);
156 ASSERT_EQ("kw", TestEvent.SummaryDataLanguage);
157 ASSERT_EQ("FAVOURITE=TOFU;NOTLIKE=NONE", TestEvent.SummaryDataTokens);
161 ASSERT_EQ("TRANSPARENT", TestEvent.TimeTransparencyData);
162 ASSERT_EQ("OPAQUE=NOTYET", TestEvent.TimeTransparencyDataTokens);
166 ASSERT_EQ("http://www.example.com/", TestEvent.URLData);
167 ASSERT_EQ("EXTERNAL=YES", TestEvent.URLDataTokens);
169 // Tests for RECURRENCE-ID.
171 ASSERT_EQ("20160124", TestEvent.RecurranceIDData);
172 ASSERT_EQ("Europe/Truro", TestEvent.RecurranceIDDataTimeZoneParam);
173 ASSERT_EQ("THISANDFUTURE", TestEvent.RecurranceIDDataRangeParam);
174 ASSERT_EQ("DATE", TestEvent.RecurranceIDDataValue);
175 ASSERT_EQ("EXAMPLE=DATA", TestEvent.RecurranceIDDataTokens);
179 ASSERT_EQ("FREQ=DAILY;COUNT=10", TestEvent.RecurranceRuleData);
180 ASSERT_EQ("TEST=DATA", TestEvent.RecurranceRuleDataTokens);