X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=58d42c7dfe2201b550561a9100a511efe133328a;hb=c4b1b7959bcf3a87e4695c53144186bc317fc8c4;hp=6e0d1f2dae779300b2883aa06f3a7e0df48d5e59;hpb=9763aa365f2e57facef14434c084531824118d9d;p=xestiacalendar%2F.git diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index 6e0d1f2..58d42c7 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -16,23 +16,48 @@ // You should have received a copy of the GNU General Public License along // with Xestia Calendar. If not, see +#include #include #include #include #include +#include "xestiacalendar_commonfunctions.h" +#include "xestiacalendar_populate.h" #include "xestiacalendar_icaleventload.h" +#include "xestiacalendar_icaleventsave.h" +#include "xestiacalendar_icaltaskload.h" +#include "xestiacalendar_icaltasksave.h" +#include "xestiacalendar_icaljournalload.h" +#include "xestiacalendar_icaljournalsave.h" +#include "xestiacalendar_icalfreebusyload.h" +#include "xestiacalendar_icalfreebusysave.h" +#include "xestiacalendar_icaltimezoneload.h" +#include "xestiacalendar_icaltimezonesave.h" +#include "xestiacalendar_caldav.h" enum MenuOpts { TESTS_ICALLOADEVENT = 1, + TESTS_ICALSAVEEVENT, TESTS_ICALLOADTODO, + TESTS_ICALSAVETODO, TESTS_ICALLOADJOURNAL, + TESTS_ICALSAVEJOURNAL, TESTS_ICALLOADFREEBUSY, + TESTS_ICALSAVEFREEBUSY, TESTS_ICALLOADTIMEZONE, - TESTS_ICALLOADALARM, + TESTS_ICALSAVETIMEZONE, + TESTS_CALDAV, + TESTS_COMMONFUNCTIONS, + TESTS_EXTRA, TESTS_QUIT }; +enum ExtraMenuOpts{ + EXTRA_POPULATECALDAV = 1, + EXTRA_RETURN +}; + void printn(std::string text){ // printn: Print a line and end with a newline (\n). @@ -45,15 +70,94 @@ void printmenu(){ std::cout << "Select an option:" << std::endl << std::endl; std::cout << TESTS_ICALLOADEVENT << ". iCalendar Event Component Load" << std::endl; + std::cout << TESTS_ICALSAVEEVENT << ". iCalendar Event Component Save" << std::endl; + std::cout << TESTS_ICALLOADTODO << ". iCalendar Task Component Load" << std::endl; + std::cout << TESTS_ICALSAVETODO << ". iCalendar Task Component Save" << std::endl; + std::cout << TESTS_ICALLOADJOURNAL << ". iCalendar Journal Component Load" << std::endl; + std::cout << TESTS_ICALSAVEJOURNAL << ". iCalendar Journal Component Save" << std::endl; + std::cout << TESTS_ICALLOADFREEBUSY << ". iCalendar FreeBusy Component Load" << std::endl; + std::cout << TESTS_ICALSAVEFREEBUSY << ". iCalendar FreeBusy Component Save" << std::endl; + std::cout << TESTS_ICALLOADTIMEZONE << ". iCalendar Timezone Component Load" << std::endl; + std::cout << TESTS_ICALSAVETIMEZONE << ". iCalendar Timezone Component Save" << std::endl; + std::cout << TESTS_CALDAV << ". CalDAV Object" << std::endl; + std::cout << TESTS_COMMONFUNCTIONS << ". Common Functions" << std::endl; + std::cout << TESTS_EXTRA << ". Extra Functions Menu" << std::endl; std::cout << TESTS_QUIT << ". Quit" << std::endl; std::cout << std::endl; } +void printextramenu(){ + + std::cout << "Extra Functions Menu" << std::endl << std::endl; + std::cout << "Select an option:" << std::endl << std::endl; + std::cout << EXTRA_POPULATECALDAV << ". Populate CalDAV calendar" << std::endl; + std::cout << EXTRA_RETURN << ". Return to previous menu" << std::endl; + std::cout << std::endl; + +} + +void runextramenu(){ + + bool ExitEnabled = false; + std::string StringOption = ""; + int TestResult = 0; + + while(ExitEnabled == false){ + + printextramenu(); + + // Get user input. + + std::cout << "Select Option: "; + std::cin >> StringOption; + + int IntOption = -1; + + // Check if input is a number. + + try{ + IntOption = stoi(StringOption); + } + + // Return to the top of the while statement if input + // really isn't a number. + + catch(std::invalid_argument e){ + printn("Error: Selected option is not a number."); + continue; + } + + // Find which option has been selected from the + // input. + + switch(IntOption){ + + case EXTRA_POPULATECALDAV: + printn("Populating CalDAV calendar..."); + populatecaldav(); + break; + case EXTRA_RETURN: + return; + break; + default: + printn("Invalid menu number given."); + break; + + } + + } + +} + int main(int argc, char* argv[]){ + // Initialise the several libraries that have + // been included. + ::testing::InitGoogleTest(&argc, argv); - + curl_global_init(CURL_GLOBAL_ALL); + printn("Xestia Calendar Unit Testing Application"); printn("(c)2016 Xestia Software Development"); printn("Note: Unit testing is currently in development"); @@ -98,11 +202,64 @@ int main(int argc, char* argv[]){ ::testing::GTEST_FLAG(filter) = "iCalendarEvent*"; TestResult = RUN_ALL_TESTS(); break; - /*case TESTS_CARDDAV: - printn("Running CardDAV tests..."); - ::testing::GTEST_FLAG(filter) = "CardDAV*"; + case TESTS_ICALSAVEEVENT: + printn("Running iCalendar Event Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveEvent*"; TestResult = RUN_ALL_TESTS(); - break;*/ + break; + case TESTS_ICALLOADTODO: + printn("Running iCalendar Task Component tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarTask*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALSAVETODO: + printn("Running iCalendar Task Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveTask*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALLOADJOURNAL: + printn("Running iCalendar Journal Component tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarJournal*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALSAVEJOURNAL: + printn("Running iCalendar Journal Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveJournal*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALLOADFREEBUSY: + printn("Running iCalendar Free Busy Component tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarFreeBusy*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALSAVEFREEBUSY: + printn("Running iCalendar Free Busy Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveFreeBusy*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALLOADTIMEZONE: + printn("Running iCalendar Timezone Component tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarTimezone*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_ICALSAVETIMEZONE: + printn("Running iCalendar Timezone Component Save tests..."); + ::testing::GTEST_FLAG(filter) = "iCalendarSaveTimezone*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_CALDAV: + printn("Running CalDAV tests..."); + ::testing::GTEST_FLAG(filter) = "CalDAV*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_COMMONFUNCTIONS: + printn("Running Commmon Functions tests..."); + ::testing::GTEST_FLAG(filter) = "CommonFunctions*"; + TestResult = RUN_ALL_TESTS(); + break; + case TESTS_EXTRA: + runextramenu(); + break; case TESTS_QUIT: return 0; break;