#include #include "inputlogcsv.hh" #include "inputcsv.hh" #include class InputLogCSV_test: public CxxTest::TestSuite { private: std::string csv_file_name ; std::string log_file_name ; public: InputLogCSV_test(void) { // If we cannot open the file, we want to stop the test CxxTest::setAbortTestOnFail(true) ; csv_file_name = "/tmp/InputLogCSV_test_csv_file.csv" ; TestUtil::create_test_csv_file(csv_file_name) ; log_file_name = "/tmp/InputLogCSV_test_log_file.csv" ; // Back to the normal behaviour (i.e. do not abort on fail) CxxTest::setAbortTestOnFail(false) ; } ~InputLogCSV_test(void) { TestUtil::remove_file(csv_file_name) ; TestUtil::remove_file(log_file_name) ; } static InputLogCSV_test* createSuite(void) { return new InputLogCSV_test() ; } static void destroySuite(InputLogCSV_test *suite) { delete suite ; } void test_inputlogcsv(void) { // Note: we need to dynamically create and delete an InputLogCSV // instance in order to be able to close the file (and therefore // flush the stream) before to read it with InputCSV InputLogCSV *inputlogcsv1 = new InputLogCSV(log_file_name) ; for (std::vector::const_iterator i = TestUtil::requests.begin() ; i != TestUtil::requests.end() ; ++i) inputlogcsv1->log_request(**i) ; delete inputlogcsv1 ; // Close the output file // Even if data is not in the same order, size of the two files // must be identical TS_ASSERT(TestUtil::file_size_equals(csv_file_name, log_file_name)) ; // Read the two files and compare to the reference Request list InputCSV inputcsv_csv(csv_file_name) ; InputCSV inputcsv_log(log_file_name) ; for (auto i = TestUtil::requests.begin() ; i != TestUtil::requests.end() ; ++i) { Stock::clear() ; Request request_csv = inputcsv_csv.get_next_request() ; TS_ASSERT(TestUtil::request_equals(**i, request_csv)) ; Stock::clear() ; Request request_log = inputcsv_log.get_next_request() ; TS_ASSERT(TestUtil::request_equals(**i, request_log)) ; } TS_ASSERT(! inputcsv_csv.eof()) ; TS_ASSERT(! inputcsv_log.eof()) ; TS_ASSERT(! inputcsv_csv.get_next_request()) ; TS_ASSERT(! inputcsv_log.get_next_request()) ; TS_ASSERT(inputcsv_csv.eof()) ; TS_ASSERT(inputcsv_log.eof()) ; } } ;