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 <gtest/gtest.h>
24 #include "xestiacalendar_icaleventload.h"
25 #include "xestiacalendar_commonfunctions.h"
26 #include "xestiacalendar_icaltaskload.h"
27 #include "xestiacalendar_icaljournalload.h"
28 #include "xestiacalendar_icalfreebusyload.h"
31 TESTS_ICALLOADEVENT = 1,
33 TESTS_ICALLOADJOURNAL,
34 TESTS_ICALLOADFREEBUSY,
35 TESTS_ICALLOADTIMEZONE,
37 TESTS_COMMONFUNCTIONS,
41 void printn(std::string text){
42 // printn: Print a line and end with a newline (\n).
44 std::cout << text << std::endl;
49 // printmenu: Print the menu.
51 std::cout << "Select an option:" << std::endl << std::endl;
52 std::cout << TESTS_ICALLOADEVENT << ". iCalendar Event Component Load" << std::endl;
53 std::cout << TESTS_ICALLOADTODO << ". iCalendar Task Component Load" << std::endl;
54 std::cout << TESTS_ICALLOADJOURNAL << ". iCalendar Journal Component Load" << std::endl;
55 std::cout << TESTS_ICALLOADFREEBUSY << ". iCalendar FreeBusy Component Load" << std::endl;
56 std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl;
57 std::cout << TESTS_QUIT << ". Quit" << std::endl;
58 std::cout << std::endl;
62 int main(int argc, char* argv[]){
64 ::testing::InitGoogleTest(&argc, argv);
66 printn("Xestia Calendar Unit Testing Application");
67 printn("(c)2016 Xestia Software Development");
68 printn("Note: Unit testing is currently in development");
71 bool ExitEnabled = false;
72 std::string StringOption = "";
75 while(ExitEnabled == false){
81 std::cout << "Select Option: ";
82 std::cin >> StringOption;
86 // Check if input is a number.
89 IntOption = stoi(StringOption);
92 // Return to the top of the while statement if input
93 // really isn't a number.
95 catch(std::invalid_argument e){
96 printn("Error: Selected option is not a number.");
100 // Find which option has been selected from the
105 case TESTS_ICALLOADEVENT:
106 printn("Running iCalendar Event Component tests...");
107 ::testing::GTEST_FLAG(filter) = "iCalendarEvent*";
108 TestResult = RUN_ALL_TESTS();
110 case TESTS_ICALLOADTODO:
111 printn("Running iCalendar Task Component tests...");
112 ::testing::GTEST_FLAG(filter) = "iCalendarTask*";
113 TestResult = RUN_ALL_TESTS();
115 case TESTS_ICALLOADJOURNAL:
116 printn("Running iCalendar Journal Component tests...");
117 ::testing::GTEST_FLAG(filter) = "iCalendarJournal*";
118 TestResult = RUN_ALL_TESTS();
120 case TESTS_ICALLOADFREEBUSY:
121 printn("Running iCalendar Free Busy Component tests...");
122 ::testing::GTEST_FLAG(filter) = "iCalendarFreeBusy*";
123 TestResult = RUN_ALL_TESTS();
125 case TESTS_COMMONFUNCTIONS:
126 printn("Running Commmon Functions tests...");
127 ::testing::GTEST_FLAG(filter) = "CommonFunctions*";
128 TestResult = RUN_ALL_TESTS();
130 /*case TESTS_CARDDAV:
131 printn("Running CardDAV tests...");
132 ::testing::GTEST_FLAG(filter) = "CardDAV*";
133 TestResult = RUN_ALL_TESTS();
139 printn("Invalid menu number given.");