OpenTREP Logo  0.07.18
C++ Open Travel Request Parsing Library
Loading...
Searching...
No Matches
Command-Line Test to Demonstrate How To Test the OpenTREP Project
/
// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
// STL
#include <cassert>
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
// Boost Unit Test Framework (UTF)
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MAIN
#define BOOST_TEST_MODULE IndexBuildingTestSuite
#include <boost/test/unit_test.hpp>
// OpenTrep
#include <opentrep/config/opentrep-paths.hpp>
namespace boost_utf = boost::unit_test;
// (Boost) Unit Test XML Report
std::ofstream utfReportStream ("IndexBuildingTestSuite_utfresults.xml");
boost_utf::unit_test_log.set_stream (utfReportStream);
#if defined(BOOST_VERSION) && BOOST_VERSION >= 105900
boost_utf::unit_test_log.set_format (boost_utf::OF_XML);
#else // BOOST_VERSION
boost_utf::unit_test_log.set_format (boost_utf::XML);
#endif // BOOST_VERSION
boost_utf::unit_test_log.set_threshold_level (boost_utf::log_test_units);
//boost_utf::unit_test_log.set_threshold_level (boost_utf::log_successful_tests);
}
}
};
// //////////// Constants for the tests ///////////////
const std::string K_POR_FILEPATH (OPENTREP_POR_DATA_DIR
"/test_optd_por_public.csv");
const std::string X_XAPIAN_DB_FP ("/tmp/opentrep/test_traveldb");
const std::string X_SQL_DB_STR ("");
const OPENTREP::shouldIndexNonIATAPOR_T K_ALL_POR = false;
const OPENTREP::shouldIndexPORInXapian_T K_XAPIAN_IDX = true;
const OPENTREP::shouldAddPORInSQLDB_T K_SQLDB_ADD = false;
// /////////////// Main: Unit Test Suite //////////////
// Set the UTF configuration (re-direct the output to a specific file)
// Start the test suite
BOOST_AUTO_TEST_SUITE (master_test_suite)
BOOST_AUTO_TEST_CASE (opentrep_simple_index) {
// Output log File
std::string lLogFilename ("IndexBuildingTestSuite.log");
// Set the log parameters
std::ofstream logOutputFile;
// Open and clean the log outputfile
logOutputFile.open (lLogFilename.c_str());
logOutputFile.clear();
// Initialise the context
const OPENTREP::PORFilePath_T lPORFilePath (K_POR_FILEPATH);
const OPENTREP::TravelDBFilePath_T lTravelDBFilePath (X_XAPIAN_DB_FP);
const OPENTREP::shouldIndexNonIATAPOR_T lShouldIndexNonIATAPOR (K_ALL_POR);
const OPENTREP::shouldIndexPORInXapian_T lShouldIndexPORInXapian(K_XAPIAN_IDX);
const OPENTREP::shouldAddPORInSQLDB_T lShouldAddPORInSQLDB (K_SQLDB_ADD);
OPENTREP::OPENTREP_Service opentrepService (logOutputFile, lPORFilePath,
lTravelDBFilePath,
lDBType, lSQLDBConnStr,
lDeploymentNumber,
lShouldIndexNonIATAPOR,
lShouldIndexPORInXapian,
lShouldAddPORInSQLDB);
// Query the Xapian database (index)
OPENTREP::WordList_T lNonMatchedWordList;
OPENTREP::LocationList_T lLocationList;
// Launch the indexation
const OPENTREP::NbOfDBEntries_T nbOfEntries =
opentrepService.insertIntoDBAndXapian();
BOOST_CHECK_MESSAGE (nbOfEntries == 9,
"The Xapian index ('" << lTravelDBFilePath
<< "') contains " << nbOfEntries
<< " entries, where as 9 are expected.");
// Close the Log outputFile
logOutputFile.close();
}
// End the test suite
BOOST_AUTO_TEST_SUITE_END()