1 // xestiacalendar_icaleventload.h - Xestia Calendar iCalendar Task 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/calendartask/CalendarTask.h"
21 TEST(iCalendarTask, BasicTests){
23 CalendarTaskObject TestTask;
25 ASSERT_EQ(CALENDAROBJECTLOAD_MISSING, TestTask.LoadFile("iCalendarTask-Missing.vcf"));
26 ASSERT_EQ(CALENDAROBJECTLOAD_CANNOTOPEN, TestTask.LoadFile("iCalendarTask-InvalidPermissions.vcf"));
27 ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestTask.LoadFile("iCalendarTask-Load1.vcf"));
31 TEST(iCalendarTask, ObjectDataTests){
33 CalendarTaskObject TestTask;
34 ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestTask.LoadFile("iCalendarTask-Load2.vcf"));
35 ASSERT_EQ(CALENDAROBJECTVALID_OK, TestTask.ValidBaseObject());
39 ASSERT_EQ("20160131T104500Z", TestTask.DateTimeStampData);
40 ASSERT_EQ("OTHER=PARAM", TestTask.DateTimeStampTokens);
44 ASSERT_EQ("b3a16392-ad86-4061-be53-c215af2306e1", TestTask.UniqueID);
45 ASSERT_EQ("UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT", TestTask.UniqueIDTokens);
49 ASSERT_EQ("PUBLIC", TestTask.ClassData);
50 ASSERT_EQ("CHOCOLATE=NONE", TestTask.ClassDataTokens);
52 // Tests for COMPLETED.
54 ASSERT_EQ("20160131T110100Z", TestTask.CompletedData);
55 ASSERT_EQ("LYING=NEVER", TestTask.CompletedDataTokens);
59 ASSERT_EQ("20160131T080000Z", TestTask.DateTimeCreatedData);
60 ASSERT_EQ("CARAMEL=PLEASE", TestTask.DateTimeCreatedTokens);