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.
83 lines
2.7 KiB
83 lines
2.7 KiB
/*
|
|
* read_tra_file_test.cpp
|
|
*
|
|
* Created on: 16.08.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "mrmc-config.h"
|
|
#include "src/storage/SquareSparseMatrix.h"
|
|
#include "src/parser/readTraFile.h"
|
|
#include "src/exceptions/file_IO_exception.h"
|
|
#include "src/exceptions/wrong_file_format.h"
|
|
|
|
#include "src/utility/ioUtility.h"
|
|
|
|
TEST(ReadTraFileTest, NonExistingFileTest) {
|
|
//No matter what happens, please don't create a file with the name "nonExistingFile.not"! :-)
|
|
ASSERT_THROW(mrmc::parser::TraParser(MRMC_CPP_TESTS_BASE_PATH "/nonExistingFile.not"), mrmc::exceptions::file_IO_exception);
|
|
}
|
|
|
|
/* The following test case is based on one of the original MRMC test cases
|
|
*/
|
|
TEST(ReadTraFileTest, ParseFileTest1) {
|
|
mrmc::storage::SquareSparseMatrix<double> *result = NULL;
|
|
mrmc::parser::TraParser* parser;
|
|
ASSERT_NO_THROW(parser = new mrmc::parser::TraParser(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/csl_general_input_01.tra"));
|
|
result = parser->getMatrix();
|
|
|
|
if (result != NULL) {
|
|
double val = 0;
|
|
ASSERT_TRUE(result->getValue(1,1,&val));
|
|
ASSERT_EQ(val,0.080645161290322580645161290322581);
|
|
|
|
ASSERT_TRUE(result->getValue(1,2,&val));
|
|
ASSERT_EQ(val,0.080645161290322580645161290322581);
|
|
|
|
//Transition 1->3 was not set in the file, so it is not to appear in the matrix!
|
|
ASSERT_FALSE(result->getValue(1,3,&val));
|
|
ASSERT_EQ(val,0);
|
|
|
|
ASSERT_TRUE(result->getValue(2,1,&val));
|
|
ASSERT_EQ(val,0.04032258064516129032258064516129);
|
|
|
|
ASSERT_TRUE(result->getValue(2,2,&val));
|
|
ASSERT_EQ(val,0.04032258064516129032258064516129);
|
|
|
|
ASSERT_TRUE(result->getValue(2,3,&val));
|
|
ASSERT_EQ(val,0.04032258064516129032258064516129);
|
|
|
|
ASSERT_TRUE(result->getValue(2,4,&val));
|
|
ASSERT_EQ(val,0.04032258064516129032258064516129);
|
|
|
|
ASSERT_TRUE(result->getValue(3,2,&val));
|
|
ASSERT_EQ(val,0.0806451612903225806451612903225812);
|
|
|
|
ASSERT_TRUE(result->getValue(3,3,&val));
|
|
ASSERT_EQ(val,0);
|
|
|
|
ASSERT_TRUE(result->getValue(3,4,&val));
|
|
ASSERT_EQ(val,0.080645161290322580645161290322581);
|
|
|
|
ASSERT_TRUE(result->getValue(4,4,&val));
|
|
ASSERT_EQ(val,0);
|
|
|
|
delete result;
|
|
delete parser;
|
|
} else {
|
|
FAIL();
|
|
}
|
|
}
|
|
|
|
TEST(ReadTraFileTest, WrongFormatTestHeader1) {
|
|
ASSERT_THROW(mrmc::parser::TraParser(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header1.tra"), mrmc::exceptions::wrong_file_format);
|
|
}
|
|
|
|
TEST(ReadTraFileTest, WrongFormatTestHeader2) {
|
|
ASSERT_THROW(mrmc::parser::TraParser(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_header2.tra"), mrmc::exceptions::wrong_file_format);
|
|
}
|
|
|
|
TEST(ReadTraFileTest, WrongFormatTestTransition) {
|
|
ASSERT_THROW(mrmc::parser::TraParser(MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/wrong_format_transition.tra"), mrmc::exceptions::wrong_file_format);
|
|
}
|