Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for RECURRENCE-ID in iCalendarJournal/ObjectDataTests.
[xestiacalendar/.git] / source / tests / xestiacalendar_icaljournalload.h
1 // xestiacalendar_icaleventload.h - Xestia Calendar iCalendar Journal Component Unit Tests
2 //
3 // (c) 2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Calendar.
6 //
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.
10 //
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.
15 //
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/calendarjournal/CalendarJournal.h"
21 TEST(iCalendarJournal, BasicTests){
23         CalendarJournalObject TestJournal;
24         
25         ASSERT_EQ(CALENDAROBJECTLOAD_MISSING, TestJournal.LoadFile("iCalendarJournal-Missing.vcf"));
26         ASSERT_EQ(CALENDAROBJECTLOAD_CANNOTOPEN, TestJournal.LoadFile("iCalendarJournal-InvalidPermissions.vcf"));
27         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestJournal.LoadFile("iCalendarJournal-Load1.vcf"));
28         
29 }
31 TEST(iCalendarJournal, ObjectDataTests){
32         
33         CalendarJournalObject TestJournal;
34         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestJournal.LoadFile("iCalendarJournal-Load2.vcf"));
35         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestJournal.ValidBaseObject());
36         
37         // Tests for DTSTAMP.
38         
39         ASSERT_EQ("20160131T141500Z", TestJournal.DateTimeStampData);
40         ASSERT_EQ("OTHER=PARAM", TestJournal.DateTimeStampTokens);
41         
42         // Tests for UID.
43         
44         ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306c1", TestJournal.UniqueID);
45         ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestJournal.UniqueIDTokens);
46         
47         // Tests for CLASS.
48         
49         ASSERT_EQ("PUBLIC", TestJournal.ClassData);
50         ASSERT_EQ("CHOCOLATE=BAR", TestJournal.ClassDataTokens);
51         
52         // Tests for DTSTART.
53         
54         ASSERT_EQ("20160131T143500Z", TestJournal.DateTimeStartData);
55         ASSERT_EQ("DATE-TIME", TestJournal.DateTimeStartDataValue);
56         ASSERT_EQ("Europe/Truro", TestJournal.DateTimeStartDataTimeZoneID);
57         ASSERT_EQ("PARAMONE=YES;PARAMTWO=NO", TestJournal.DateTimeStartDataTokens);
58         
59         // Tests for LAST-MODIFIED.
60         
61         ASSERT_EQ("20160131T143700Z", TestJournal.LastModifiedData);
62         ASSERT_EQ("FUTURE=YES", TestJournal.LastModifiedTokens);
63         
64         // Tests for ORGANIZER.
65         
66         ASSERT_EQ("mailto:organiser@example.com", TestJournal.OrganiserData);
67         ASSERT_EQ("ExampleOrganiser", TestJournal.OrganiserDataCommonName);
68         ASSERT_EQ("null:nodata", TestJournal.OrganiserDataDirectoryEntry);
69         ASSERT_EQ("mailto:organiser.noreply@example.com", TestJournal.OrganiserDataSentByParam);
70         ASSERT_EQ("kw", TestJournal.OrganiserDataLanguage);
71         ASSERT_EQ("HAPPY=DAYS", TestJournal.OrganiserDataTokens);
72         
73         // Tests for RECURRENCE-ID.
74         
75         ASSERT_EQ("20160131", TestJournal.RecurranceIDData);
76         ASSERT_EQ("Europe/Truro", TestJournal.RecurranceIDDataTimeZoneParam);
77         ASSERT_EQ("THISANDFUTURE", TestJournal.RecurranceIDDataRangeParam);
78         ASSERT_EQ("DATE", TestJournal.RecurranceIDDataValue);
79         ASSERT_EQ("EXAMPLE=DATA", TestJournal.RecurranceIDDataTokens);
80         
81 }
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy