Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added RRULE property for saving data from a CalendarJournalObject.
[xestiacalendar/.git] / source / tests / xestiacalendar_icaljournalsave.h
1 // xestiacalendar_icaleventsave.h - Xestia Calendar iCalendar Event 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/calendarjournal/CalendarJournal.h"
21 TEST(iCalendarSaveJournal, SaveEventTests){
23         CalendarJournalObject TestJournal;
24         CalendarJournalObject TestJournal2;
25         
26         // Load the test journal information.
27         
28         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestJournal.LoadFile("iCalendarJournal-Load1.vcf"));
29         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestJournal.ValidBaseObject());
30         
31         ASSERT_EQ(CALENDAROBJECTSAVE_CANNOTOPEN, TestJournal.SaveFile("/stupidfilelocation/dontsavehere.ics"));
32         
33         // Save the data to a string and compare the data.
35         // First journal file.
36         
37         std::string SaveDataComparison = "BEGIN:VCALENDAR\n"
38         "VERSION:2.0\n"
39         "PRODID:-//Xestia//Calendar Unit Testing//KW\n"
40         "BEGIN:VJOURNAL\n"
41         "UID:329128-12939123-123123-13\n"
42         "DTSTAMP:20160116T190200Z\n"
43         "SUMMARY:Unit Test Event 1 which has to be a really long summary as we don't k\n"
44         " now if multiple line processing is going to work without it. I mean seriousl\n"
45         " y, how annoying can this potentially be?\n"
46         "END:VJOURNAL\n"
47         "END:VCALENDAR";
48         
49         std::string SaveData;
50         
51         TestJournal.SaveString(&SaveData);
52         
53         ASSERT_EQ(SaveDataComparison, SaveData);
54         
55         SaveData.clear();
57         ASSERT_EQ(CALENDAROBJECTLOAD_OK, TestJournal2.LoadFile("iCalendarJournal-Load2.vcf"));
58         ASSERT_EQ(CALENDAROBJECTVALID_OK, TestJournal2.ValidBaseObject());
60         TestJournal2.SaveString(&SaveData);
61         
62         SaveDataComparison = "BEGIN:VCALENDAR\n"
63         "VERSION:2.0\n"
64         "PRODID:-//Xestia//Calendar Unit Testing//KW\n"
65         "BEGIN:VJOURNAL\n"
66         "UID;UNIQUEPARAM=CERTAINLY;OKAY=MAYBENOT:b3a16392-ad86-4061-be53-c215af2306c1\n"
67         "DTSTAMP;OTHER=PARAM:20160131T141500Z\n"
68         "SUMMARY;ALTREP=\"null:nodata\";LANGUAGE=kw;FAVOURITE=TOFU;NOTLIKE=NONE:A summar\n"
69         " y of the journal entry.\n"
70         "CLASS;CHOCOLATE=BAR:PUBLIC\n"
71         "DTSTART;VALUE=DATE-TIME;TZID=Europe/Truro;PARAMONE=YES;PARAMTWO=NO:20160131T1\n"
72         " 43500Z\n"
73         "LAST-MODIFIED;FUTURE=YES:20160131T143700Z\n"
74         "ORGANIZER;CN=ExampleOrganiser;DIR=\"null:nodata\";SENT-BY=\"mailto:organiser.nor\n"
75         " eply@example.com\";LANGUAGE=kw;HAPPY=DAYS:mailto:organiser@example.com\n"
76         "RECURRENCE-ID;TZID=Europe/Truro;RANGE=THISANDFUTURE;VALUE=DATE;EXAMPLE=DATA:2\n"
77         " 0160131\n"
78         "SEQUENCE;TEST=YAY:7\n"
79         "STATUS;LANGUAGE=kw;FAVOURITE=RICHTEA;NOTLIKE=UNKNOWN:2.0;Success\n"
80         "URL;EXTERNAL=YES:http://www.example.com/\n"
81         "RRULE;TEST=DATA:FREQ=DAILY;COUNT=10\n"
82         "END:VJOURNAL\n"
83         "END:VCALENDAR";
84         
85         ASSERT_EQ(SaveDataComparison, SaveData);
87 }
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