Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added TZNAME property for saving data from a CalendarTimezoneObject.
[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         "LAST-MODIFIED;FUTURE=ODD:20160203T200700Z\n"
66         "TZURL;URL=YES:http://www.example.com/\n"
67         "BEGIN:STANDARD\n"
68         "DTSTART:20160204T020000\n"
69         "TZOFFSETFROM:-0500\n"
70         "TZOFFSETTO:-0400\n"
71         "END:STANDARD\n"
72         "BEGIN:STANDARD\n"
73         "DTSTART;MEEP=MOO:20160205T020000\n"
74         "TZOFFSETFROM;LETS=GO:-0500\n"
75         "TZOFFSETTO;EXAMPLE=DATA:-0400\n"
76         "END:STANDARD\n"
77         "BEGIN:STANDARD\n"
78         "DTSTART;MEEP=MOO:20160206T020000\n"
79         "TZOFFSETFROM;LETS=GO:-0500\n"
80         "TZOFFSETTO;EXAMPLE=DATA:-0400\n"
81         "RRULE;YAK=YES:FREQ=DAILY;COUNT=10\n"
82         "COMMENT;ALTREP=\"null:nodata\";LANGUAGE=kw;YO=YOYOS:Example timezone comment.\n"
83         "RDATE;VALUE=DATE;TZID=Europe/Truro;BEEP=BOOP:20160205,20160207,20160216,20160\n"
84         " 305\n"
85         "TZNAME;LANGUAGE=en;NOPE=YES:Example Timezone Name 1\n"
86         "END:STANDARD\n"
87         "BEGIN:DAYLIGHT\n"
88         "DTSTART:20160204T020000\n"
89         "TZOFFSETFROM:-0500\n"
90         "TZOFFSETTO:-0400\n"
91         "END:DAYLIGHT\n"
92         "BEGIN:DAYLIGHT\n"
93         "DTSTART;MEEP=MOO:20160205T020000\n"
94         "TZOFFSETFROM;LETS=GO:-0500\n"
95         "TZOFFSETTO;EXAMPLE=DATA:-0400\n"
96         "END:DAYLIGHT\n"
97         "BEGIN:DAYLIGHT\n"
98         "DTSTART;MEEP=MOO:20160206T020000\n"
99         "TZOFFSETFROM;LETS=GO:-0500\n"
100         "TZOFFSETTO;EXAMPLE=DATA:-0400\n"
101         "RRULE;YAK=YES:FREQ=DAILY;COUNT=10\n"
102         "COMMENT;ALTREP=\"null:nodata\";LANGUAGE=kw;YO=YOYOS:Example timezone comment.\n"
103         "RDATE;VALUE=DATE;TZID=Europe/Truro;BEEP=BOOP:20160205,20160207,20160216,20160\n"
104         " 305\n"
105         "TZNAME;LANGUAGE=en;NOPE=YES:Example Timezone Name 1\n"
106         "END:DAYLIGHT\n"
107         "END:VTIMEZONE\n"
108         "END:VCALENDAR";
110         ASSERT_EQ(SaveDataComparison, SaveData);
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