1 // xestiacalendar_test.cpp - Xestia Calendar Unit Testing Suite.
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 <curl/curl.h>
20 #include <gtest/gtest.h>
25 #include "xestiacalendar_commonfunctions.h"
26 #include "xestiacalendar_populate.h"
27 #include "xestiacalendar_icaleventload.h"
28 #include "xestiacalendar_icaleventsave.h"
29 #include "xestiacalendar_icaltaskload.h"
30 #include "xestiacalendar_icaljournalload.h"
31 #include "xestiacalendar_icalfreebusyload.h"
32 #include "xestiacalendar_icaltimezoneload.h"
33 #include "xestiacalendar_caldav.h"
36 TESTS_ICALLOADEVENT = 1,
39 TESTS_ICALLOADJOURNAL,
40 TESTS_ICALLOADFREEBUSY,
41 TESTS_ICALLOADTIMEZONE,
43 TESTS_COMMONFUNCTIONS,
49 EXTRA_POPULATECALDAV = 1,
53 void printn(std::string text){
54 // printn: Print a line and end with a newline (\n).
56 std::cout << text << std::endl;
61 // printmenu: Print the menu.
63 std::cout << "Select an option:" << std::endl << std::endl;
64 std::cout << TESTS_ICALLOADEVENT << ". iCalendar Event Component Load" << std::endl;
65 std::cout << TESTS_ICALSAVEEVENT << ". iCalendar Event Component Save" << std::endl;
66 std::cout << TESTS_ICALLOADTODO << ". iCalendar Task Component Load" << std::endl;
67 std::cout << TESTS_ICALLOADJOURNAL << ". iCalendar Journal Component Load" << std::endl;
68 std::cout << TESTS_ICALLOADFREEBUSY << ". iCalendar FreeBusy Component Load" << std::endl;
69 std::cout << TESTS_ICALLOADTIMEZONE << ". iCalendar Timezone Component Load" << std::endl;
70 std::cout << TESTS_CALDAV << ". CalDAV Object" << std::endl;
71 std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl;
72 std::cout << TESTS_EXTRA << ". Extra Functions Menu" << std::endl;
73 std::cout << TESTS_QUIT << ". Quit" << std::endl;
74 std::cout << std::endl;
78 void printextramenu(){
80 std::cout << "Extra Functions Menu" << std::endl << std::endl;
81 std::cout << "Select an option:" << std::endl << std::endl;
82 std::cout << EXTRA_POPULATECALDAV << ". Populate CalDAV calendar" << std::endl;
83 std::cout << EXTRA_RETURN << ". Return to previous menu" << std::endl;
84 std::cout << std::endl;
90 bool ExitEnabled = false;
91 std::string StringOption = "";
94 while(ExitEnabled == false){
100 std::cout << "Select Option: ";
101 std::cin >> StringOption;
105 // Check if input is a number.
108 IntOption = stoi(StringOption);
111 // Return to the top of the while statement if input
112 // really isn't a number.
114 catch(std::invalid_argument e){
115 printn("Error: Selected option is not a number.");
119 // Find which option has been selected from the
124 case EXTRA_POPULATECALDAV:
125 printn("Populating CalDAV calendar...");
132 printn("Invalid menu number given.");
141 int main(int argc, char* argv[]){
143 // Initialise the several libraries that have
146 ::testing::InitGoogleTest(&argc, argv);
147 curl_global_init(CURL_GLOBAL_ALL);
149 printn("Xestia Calendar Unit Testing Application");
150 printn("(c)2016 Xestia Software Development");
151 printn("Note: Unit testing is currently in development");
154 bool ExitEnabled = false;
155 std::string StringOption = "";
158 while(ExitEnabled == false){
164 std::cout << "Select Option: ";
165 std::cin >> StringOption;
169 // Check if input is a number.
172 IntOption = stoi(StringOption);
175 // Return to the top of the while statement if input
176 // really isn't a number.
178 catch(std::invalid_argument e){
179 printn("Error: Selected option is not a number.");
183 // Find which option has been selected from the
188 case TESTS_ICALLOADEVENT:
189 printn("Running iCalendar Event Component tests...");
190 ::testing::GTEST_FLAG(filter) = "iCalendarEvent*";
191 TestResult = RUN_ALL_TESTS();
193 case TESTS_ICALSAVEEVENT:
194 printn("Running iCalendar Event Component Save tests...");
195 ::testing::GTEST_FLAG(filter) = "iCalendarSaveEvent*";
196 TestResult = RUN_ALL_TESTS();
198 case TESTS_ICALLOADTODO:
199 printn("Running iCalendar Task Component tests...");
200 ::testing::GTEST_FLAG(filter) = "iCalendarTask*";
201 TestResult = RUN_ALL_TESTS();
203 case TESTS_ICALLOADJOURNAL:
204 printn("Running iCalendar Journal Component tests...");
205 ::testing::GTEST_FLAG(filter) = "iCalendarJournal*";
206 TestResult = RUN_ALL_TESTS();
208 case TESTS_ICALLOADFREEBUSY:
209 printn("Running iCalendar Free Busy Component tests...");
210 ::testing::GTEST_FLAG(filter) = "iCalendarFreeBusy*";
211 TestResult = RUN_ALL_TESTS();
213 case TESTS_ICALLOADTIMEZONE:
214 printn("Running iCalendar Timezone Component tests...");
215 ::testing::GTEST_FLAG(filter) = "iCalendarTimezone*";
216 TestResult = RUN_ALL_TESTS();
219 printn("Running CalDAV tests...");
220 ::testing::GTEST_FLAG(filter) = "CalDAV*";
221 TestResult = RUN_ALL_TESTS();
223 case TESTS_COMMONFUNCTIONS:
224 printn("Running Commmon Functions tests...");
225 ::testing::GTEST_FLAG(filter) = "CommonFunctions*";
226 TestResult = RUN_ALL_TESTS();
235 printn("Invalid menu number given.");