Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added initial tests for the iCalendarTimezone-Load2.vcf
[xestiacalendar/.git] / source / tests / xestiacalendar_icaltimezonesave.h
1 // xestiacalendar_icaltimezonesave.h - Xestia Calendar iCalendar Timezone Component Save 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/calendartimezone/CalendarTimezone.h"
21 TEST(iCalendarSaveTimezone, SaveTimezoneTests){
23         CalendarTimezoneObject TestTimezone;
24         CalendarTimezoneObject TestTimezone2;
25         
26         // Load the first test timezone.
27         
28         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestTimezone.LoadFile("iCalendarTimezone-Load1.vcf"));
29         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestTimezone.ValidBaseObject());
30         
31         ASSERT_EQ(CALENDAROBJECTSAVE_CANNOTOPEN, TestTimezone.SaveFile("/stupidfilelocation/dontsavehere.ics"));
32         
33         // Save the data to a string and compare the data.
35         // First contact file.
36         
37         std::string SaveDataComparison = "BEGIN:VCALENDAR\n"
38         "VERSION:2.0\n"
39         "PRODID:-//Xestia//Calendar Unit Testing//KW\n"
40         "BEGIN:VTIMEZONE\n"
41         "TZID:Example/Starrgazy\n"
42         "END:VTIMEZONE\n"
43         "END:VCALENDAR";
44         
45         std::string SaveData;
46         
47         TestTimezone.SaveString(&SaveData);
48         
49         ASSERT_EQ(SaveDataComparison, SaveData);
50         
51         // Process the second calendar item.
53         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestTimezone2.LoadFile("iCalendarTimezone-Load2.vcf"));
54         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestTimezone2.ValidBaseObject());
55         
56         SaveData.clear();
57         
58         TestTimezone2.SaveString(&SaveData);
60         SaveDataComparison = "BEGIN:VCALENDAR\n"
61         "VERSION:2.0\n"
62         "PRODID:-//Xestia//Calendar Unit Testing//KW\n"
63         "BEGIN:VTIMEZONE\n"
64         "TZID;OTHER=PARAM:Example/Starrgazy\n"
65         "END:VTIMEZONE\n"
66         "END:VCALENDAR";
68         ASSERT_EQ(SaveDataComparison, SaveData);
70 }
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