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);
43 TEST(iCalendarEvent, ObjectDataTests){
45 CalendarEventObject TestEvent;
46 ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestEvent.LoadFile("iCalendarEvent-Load2.vcf"));
47 ASSERT_EQ(CALENDAROBJECTVALID_OK, TestEvent.ValidBaseObject());
51 ASSERT_EQ("20160122T124100Z", TestEvent.DateTimeStampData);
52 ASSERT_EQ("OTHER=PARAM", TestEvent.DateTimeStampTokens);
56 ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306e0", TestEvent.UniqueID);
57 ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestEvent.UniqueIDTokens);