X-Git-Url: http://Server1/repobrowser/?p=xestiacalendar%2F.git;a=blobdiff_plain;f=source%2Ftests%2Fxestiacalendar_test.cpp;h=2e4737b7e982e1c8e053abb8f7d93ece4906feee;hp=c6a602f9a58621510b1a19f4fc8469feddf2d99e;hb=353e537a0c84a496c97e8889403c77d13a0b7341;hpb=92f76e70da98ebf857ba003bd5e14947c497082b diff --git a/source/tests/xestiacalendar_test.cpp b/source/tests/xestiacalendar_test.cpp index c6a602f..2e4737b 100644 --- a/source/tests/xestiacalendar_test.cpp +++ b/source/tests/xestiacalendar_test.cpp @@ -1,14 +1,14 @@ // xestiacalendar_test.cpp - Xestia Calendar Unit Testing Suite. // -// (c) 2016 Xestia Software Development. +// (c) 2016-2017 Xestia Software Development. // // This file is part of Xestia Calendar. // -// Xestia Address Book is free software: you can redistribute it and/or modify +// Xestia Calendar is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by the // Free Software Foundation, version 3 of the license. // -// Xestia Address Book is distributed in the hope that it will be useful, +// Xestia Calendar is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. @@ -27,20 +27,28 @@ #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_calendardatastorage.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_ICALSAVETIMEZONE, + TESTS_CALENDARDATASTORAGE, TESTS_CALDAV, TESTS_COMMONFUNCTIONS, TESTS_EXTRA, @@ -66,10 +74,14 @@ void printmenu(){ 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_CALENDARDATASTORAGE << ". Calendar Data Storage" << 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; @@ -90,25 +102,25 @@ void printextramenu(){ void runextramenu(){ - bool ExitEnabled = false; - std::string StringOption = ""; - int TestResult = 0; + bool exitEnabled = false; + std::string stringOption = ""; + int testResult = 0; - while(ExitEnabled == false){ + while(exitEnabled == false){ printextramenu(); // Get user input. std::cout << "Select Option: "; - std::cin >> StringOption; + std::cin >> stringOption; - int IntOption = -1; + int intOption = -1; // Check if input is a number. try{ - IntOption = stoi(StringOption); + intOption = stoi(stringOption); } // Return to the top of the while statement if input @@ -122,7 +134,7 @@ void runextramenu(){ // Find which option has been selected from the // input. - switch(IntOption){ + switch(intOption){ case EXTRA_POPULATECALDAV: printn("Populating CalDAV calendar..."); @@ -154,25 +166,25 @@ int main(int argc, char* argv[]){ printn("Note: Unit testing is currently in development"); printn(""); - bool ExitEnabled = false; - std::string StringOption = ""; - int TestResult = 0; + bool exitEnabled = false; + std::string stringOption = ""; + int testResult = 0; - while(ExitEnabled == false){ + while(exitEnabled == false){ printmenu(); // Get user input. std::cout << "Select Option: "; - std::cin >> StringOption; + std::cin >> stringOption; - int IntOption = -1; + int intOption = -1; // Check if input is a number. try{ - IntOption = stoi(StringOption); + intOption = stoi(stringOption); } // Return to the top of the while statement if input @@ -186,52 +198,72 @@ int main(int argc, char* argv[]){ // Find which option has been selected from the // input. - switch(IntOption){ + switch(intOption){ case TESTS_ICALLOADEVENT: printn("Running iCalendar Event Component tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarEvent*"; - TestResult = RUN_ALL_TESTS(); + testResult = RUN_ALL_TESTS(); break; case TESTS_ICALSAVEEVENT: printn("Running iCalendar Event Component Save tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarSaveEvent*"; - TestResult = RUN_ALL_TESTS(); + testResult = RUN_ALL_TESTS(); break; case TESTS_ICALLOADTODO: printn("Running iCalendar Task Component tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarTask*"; - TestResult = RUN_ALL_TESTS(); + 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(); + 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(); + 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(); + testResult = RUN_ALL_TESTS(); break; case TESTS_ICALLOADTIMEZONE: printn("Running iCalendar Timezone Component tests..."); ::testing::GTEST_FLAG(filter) = "iCalendarTimezone*"; - TestResult = RUN_ALL_TESTS(); + 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_CALENDARDATASTORAGE: + printn("Running Calendar Data Storage tests..."); + ::testing::GTEST_FLAG(filter) = "CalendarDataStorage*"; + testResult = RUN_ALL_TESTS(); break; case TESTS_CALDAV: printn("Running CalDAV tests..."); ::testing::GTEST_FLAG(filter) = "CalDAV*"; - TestResult = RUN_ALL_TESTS(); + testResult = RUN_ALL_TESTS(); break; case TESTS_COMMONFUNCTIONS: printn("Running Commmon Functions tests..."); ::testing::GTEST_FLAG(filter) = "CommonFunctions*"; - TestResult = RUN_ALL_TESTS(); + testResult = RUN_ALL_TESTS(); break; case TESTS_EXTRA: runextramenu();