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.

85 lines
3.0 KiB

13 years ago
  1. /*
  2. * ReadTraFileTest.cpp
  3. *
  4. * Created on: 16.08.2012
  5. * Author: Thomas Heinemann
  6. */
  7. #include "gtest/gtest.h"
  8. #include "storm-config.h"
  9. #include "src/storage/SparseMatrix.h"
  10. #include "src/parser/DeterministicSparseTransitionParser.h"
  11. #include "src/exceptions/FileIoException.h"
  12. #include "src/exceptions/WrongFormatException.h"
  13. TEST(ReadTraFileTest, NonExistingFileTest) {
  14. //No matter what happens, please don't create a file with the name "nonExistingFile.not"! :-)
  15. ASSERT_THROW(storm::parser::DeterministicSparseTransitionParser(STORM_CPP_TESTS_BASE_PATH "/nonExistingFile.not"), storm::exceptions::FileIoException);
  16. }
  17. /* The following test case is based on one of the original STORM test cases
  18. */
  19. TEST(ReadTraFileTest, ParseFileTest1) {
  20. storm::parser::DeterministicSparseTransitionParser* parser = nullptr;
  21. ASSERT_NO_THROW(parser = new storm::parser::DeterministicSparseTransitionParser(STORM_CPP_TESTS_BASE_PATH "/parser/tra_files/csl_general_input_01.tra"));
  22. std::shared_ptr<storm::storage::SparseMatrix<double>> result = parser->getMatrix();
  23. if (result != nullptr) {
  24. double val = 0;
  25. ASSERT_TRUE(result->getValue(0, 0, &val));
  26. ASSERT_EQ(val, 0.0);
  27. ASSERT_TRUE(result->getValue(0, 1, &val));
  28. ASSERT_EQ(val, 1.0);
  29. ASSERT_TRUE(result->getValue(1, 1, &val));
  30. ASSERT_EQ(val, 0.080645161290322580645161290322581);
  31. ASSERT_TRUE(result->getValue(1, 2, &val));
  32. ASSERT_EQ(val, 0.080645161290322580645161290322581);
  33. //Transition 1->3 was not set in the file, so it is not to appear in the matrix!
  34. ASSERT_FALSE(result->getValue(1, 3, &val));
  35. ASSERT_EQ(val, 0);
  36. ASSERT_TRUE(result->getValue(2, 1, &val));
  37. ASSERT_EQ(val, 0.04032258064516129032258064516129);
  38. ASSERT_TRUE(result->getValue(2, 2, &val));
  39. ASSERT_EQ(val, 0.04032258064516129032258064516129);
  40. ASSERT_TRUE(result->getValue(2, 3, &val));
  41. ASSERT_EQ(val, 0.04032258064516129032258064516129);
  42. ASSERT_TRUE(result->getValue(2, 4, &val));
  43. ASSERT_EQ(val, 0.04032258064516129032258064516129);
  44. ASSERT_TRUE(result->getValue(3, 2, &val));
  45. ASSERT_EQ(val, 0.0806451612903225806451612903225812);
  46. ASSERT_TRUE(result->getValue(3, 3, &val));
  47. ASSERT_EQ(val, 0.0);
  48. ASSERT_TRUE(result->getValue(3, 4, &val));
  49. ASSERT_EQ(val, 0.080645161290322580645161290322581);
  50. ASSERT_TRUE(result->getValue(4, 4, &val));
  51. ASSERT_EQ(val, 0.0);
  52. delete parser;
  53. } else {
  54. FAIL();
  55. }
  56. }
  57. TEST(ReadTraFileTest, WrongFormatTestHeader1) {
  58. ASSERT_THROW(storm::parser::DeterministicSparseTransitionParser(STORM_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header1.tra"), storm::exceptions::WrongFormatException);
  59. }
  60. TEST(ReadTraFileTest, WrongFormatTestHeader2) {
  61. ASSERT_THROW(storm::parser::DeterministicSparseTransitionParser(STORM_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header2.tra"), storm::exceptions::WrongFormatException);
  62. }
  63. TEST(ReadTraFileTest, WrongFormatTestTransition) {
  64. ASSERT_THROW(storm::parser::DeterministicSparseTransitionParser(STORM_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_transition.tra"), storm::exceptions::WrongFormatException);
  65. }