You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.9 KiB

  1. /*
  2. * read_tra_file_test.cpp
  3. *
  4. * Created on: 16.08.2012
  5. * Author: Thomas Heinemann
  6. */
  7. #include "gtest/gtest.h"
  8. #include "MRMCConfig.h"
  9. #include "src/sparse/static_sparse_matrix.h"
  10. #include "src/parser/read_tra_file.h"
  11. #include "src/exceptions/file_IO_exception.h"
  12. #include "src/exceptions/wrong_file_format.h"
  13. #include <pantheios/pantheios.hpp>
  14. TEST(ReadTraFileTest, NonExistingFileTest) {
  15. pantheios::log_INFORMATIONAL("Started NonExistingFileTest");
  16. //No matter what happens, please don't create a file with the name "nonExistingFile.not"! :-)
  17. ASSERT_THROW(mrmc::parser::read_tra_file(MRMC_CPP_TESTS_BASE_PATH "/nonExistingFile.not"), mrmc::exceptions::file_IO_exception);
  18. }
  19. /* The following test case is based on one of the original MRMC test cases
  20. */
  21. TEST(ReadTraFileTest, ParseFileTest1) {
  22. pantheios::log_INFORMATIONAL("Started ParseFileTest1");
  23. mrmc::sparse::StaticSparseMatrix<double> *result;
  24. ASSERT_NO_THROW(result = mrmc::parser::read_tra_file(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/csl_general_input_01.tra"));
  25. double val = 0;
  26. ASSERT_TRUE(result->getValue(1,1,&val));
  27. ASSERT_EQ(val,0.080645161290322580645161290322581);
  28. ASSERT_TRUE(result->getValue(1,2,&val));
  29. ASSERT_EQ(val,0.080645161290322580645161290322581);
  30. //Transition 1->3 was not set in the file, so it is not to appear in the matrix!
  31. ASSERT_FALSE(result->getValue(1,3,&val));
  32. ASSERT_EQ(val,0);
  33. ASSERT_TRUE(result->getValue(2,1,&val));
  34. ASSERT_EQ(val,0.04032258064516129032258064516129);
  35. ASSERT_TRUE(result->getValue(2,2,&val));
  36. ASSERT_EQ(val,0.04032258064516129032258064516129);
  37. ASSERT_TRUE(result->getValue(2,3,&val));
  38. ASSERT_EQ(val,0.04032258064516129032258064516129);
  39. ASSERT_TRUE(result->getValue(2,4,&val));
  40. ASSERT_EQ(val,0.04032258064516129032258064516129);
  41. ASSERT_TRUE(result->getValue(3,2,&val));
  42. ASSERT_EQ(val,0.0806451612903225806451612903225812);
  43. ASSERT_TRUE(result->getValue(3,3,&val));
  44. ASSERT_EQ(val,0);
  45. ASSERT_TRUE(result->getValue(3,4,&val));
  46. ASSERT_EQ(val,0.080645161290322580645161290322581);
  47. ASSERT_TRUE(result->getValue(4,4,&val));
  48. ASSERT_EQ(val,0);
  49. delete result;
  50. }
  51. TEST(ReadTraFileTest, WrongFormatTestHeader1) {
  52. pantheios::log_INFORMATIONAL("Started WrongFormatTestHeader1");
  53. ASSERT_THROW(mrmc::parser::read_tra_file(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header1.tra"), mrmc::exceptions::wrong_file_format);
  54. }
  55. TEST(ReadTraFileTest, WrongFormatTestHeader2) {
  56. pantheios::log_INFORMATIONAL("Started WrongFormatTestHeader2");
  57. ASSERT_THROW(mrmc::parser::read_tra_file(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header2.tra"), mrmc::exceptions::wrong_file_format);
  58. }
  59. TEST(ReadTraFileTest, WrongFormatTestTransition) {
  60. pantheios::log_INFORMATIONAL("Started WrongFormatTestTransition");
  61. ASSERT_THROW(mrmc::parser::read_tra_file(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_transition.tra"), mrmc::exceptions::wrong_file_format);
  62. }