/
#include <cassert>
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MAIN
#define BOOST_TEST_MODULE IndexBuildingTestSuite
#include <boost/test/unit_test.hpp>
#include <opentrep/config/opentrep-paths.hpp>
namespace boost_utf = boost::unit_test;
boost_utf::unit_test_log.set_format (boost_utf::XML);
boost_utf::unit_test_log.set_threshold_level (boost_utf::log_test_units);
}
}
};
const std::string K_POR_FILEPATH (OPENTREP_POR_DATA_DIR
"/test_ori_por_public.csv");
const std::string
X_SQLITE_DB_FP (
"/tmp/opentrep/test_traveldb/ori_por_public.csv");
BOOST_AUTO_TEST_SUITE (master_test_suite)
std::string lLogFilename ("IndexBuildingTestSuite.log");
std::ofstream logOutputFile;
logOutputFile.open (lLogFilename.c_str());
logOutputFile.clear();
lTravelDBFilePath,
lSQLiteDBFilePath);
opentrepService.buildSearchIndex();
BOOST_CHECK_MESSAGE (nbOfEntries == 9,
"The Xapian index ('" << lTravelDBFilePath
<< "') contains " << nbOfEntries
<< " entries, where as 9 are expected.");
logOutputFile.close();
}
BOOST_AUTO_TEST_SUITE_END()