/* Copyright 2014 by Andreas Lauser This file is part of the Open Porous Media project (OPM). OPM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OPM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OPM. If not, see . */ #define BOOST_TEST_MODULE ParserTests #include #include #include #include #include #include #include #include #include inline std::string prefix() { return boost::unit_test::framework::master_test_suite().argv[1]; } BOOST_AUTO_TEST_CASE(ParserKeyword_includeInvalid) { Opm::filesystem::path inputFilePath(prefix() + "includeInvalid.data"); Opm::Parser parser; Opm::ParseContext parseContext; Opm::ErrorGuard errors; parseContext.update(Opm::ParseContext::PARSE_MISSING_INCLUDE , Opm::InputError::THROW_EXCEPTION ); BOOST_CHECK_THROW(parser.parseFile(inputFilePath.string() , parseContext, errors) , std::invalid_argument); parseContext.update(Opm::ParseContext::PARSE_MISSING_INCLUDE , Opm::InputError::IGNORE ); BOOST_CHECK_NO_THROW(parser.parseFile(inputFilePath.string() , parseContext, errors)); } BOOST_AUTO_TEST_CASE(DATA_FILE_IS_SYMLINK) { Opm::filesystem::path inputFilePath(prefix() + "includeSymlinkTestdata/symlink4/path/case.data"); Opm::Parser parser; std::cout << "Input file: " << inputFilePath.string() << std::endl; auto deck = parser.parseFile(inputFilePath.string()); BOOST_CHECK_EQUAL(true , deck.hasKeyword("OIL")); BOOST_CHECK_EQUAL(false , deck.hasKeyword("WATER")); } BOOST_AUTO_TEST_CASE(Verify_find_includes_Data_file_is_a_symlink) { Opm::filesystem::path inputFilePath(prefix() + "includeSymlinkTestdata/symlink1/case_symlink.data"); Opm::Parser parser; auto deck = parser.parseFile(inputFilePath.string()); BOOST_CHECK_EQUAL(true , deck.hasKeyword("OIL")); BOOST_CHECK_EQUAL(false , deck.hasKeyword("WATER")); } BOOST_AUTO_TEST_CASE(Verify_find_includes_Data_file_has_include_that_is_a_symlink) { Opm::filesystem::path inputFilePath(prefix() + "includeSymlinkTestdata/symlink2/caseWithIncludedSymlink.data"); Opm::Parser parser; auto deck = parser.parseFile(inputFilePath.string()); BOOST_CHECK_EQUAL(true , deck.hasKeyword("OIL")); BOOST_CHECK_EQUAL(false , deck.hasKeyword("WATER")); } BOOST_AUTO_TEST_CASE(Verify_find_includes_Data_file_has_include_file_that_again_includes_a_symlink) { Opm::filesystem::path inputFilePath(prefix() + "includeSymlinkTestdata/symlink3/case.data"); Opm::Parser parser; auto deck = parser.parseFile(inputFilePath.string()); BOOST_CHECK_EQUAL(true , deck.hasKeyword("OIL")); BOOST_CHECK_EQUAL(false , deck.hasKeyword("WATER")); } BOOST_AUTO_TEST_CASE(ParserKeyword_includeValid) { Opm::filesystem::path inputFilePath(prefix() + "includeValid.data"); Opm::Parser parser; auto deck = parser.parseFile(inputFilePath.string()); BOOST_CHECK_EQUAL(true , deck.hasKeyword("OIL")); BOOST_CHECK_EQUAL(false , deck.hasKeyword("WATER")); } BOOST_AUTO_TEST_CASE(ParserKeyword_includeWrongCase) { Opm::filesystem::path inputFile1Path(prefix() + "includeWrongCase1.data"); Opm::filesystem::path inputFile2Path(prefix() + "includeWrongCase2.data"); Opm::filesystem::path inputFile3Path(prefix() + "includeWrongCase3.data"); Opm::Parser parser; #if HAVE_CASE_SENSITIVE_FILESYSTEM // so far, we expect the files which are included to exhibit // exactly the same spelling as their names on disk. Eclipse seems // to be a bit more relaxed when it comes to this, so we might // have to change the current behavior one not-so-fine day... Opm::ParseContext parseContext; Opm::ErrorGuard errors; parseContext.update(Opm::ParseContext::PARSE_MISSING_INCLUDE , Opm::InputError::THROW_EXCEPTION ); BOOST_CHECK_THROW(parser.parseFile(inputFile1Path.string(), parseContext, errors), std::invalid_argument); BOOST_CHECK_THROW(parser.parseFile(inputFile2Path.string(), parseContext, errors), std::invalid_argument); BOOST_CHECK_THROW(parser.parseFile(inputFile3Path.string(), parseContext, errors), std::invalid_argument); #else // for case-insensitive filesystems, the include statement will // always work regardless of how the capitalization of the // included files is wrong... BOOST_CHECK_EQUAL(true, parser.parseFile(inputFile1Path.string() ).hasKeyword("OIL")); BOOST_CHECK_EQUAL(false, parser.parseFile(inputFile1Path.string()).hasKeyword("WATER")); BOOST_CHECK_EQUAL(true, parser.parseFile(inputFile2Path.string() ).hasKeyword("OIL")); BOOST_CHECK_EQUAL(false, parser.parseFile(inputFile2Path.string()).hasKeyword("WATER")); BOOST_CHECK_EQUAL(true, parser.parseFile(inputFile3Path.string() ).hasKeyword("OIL")); BOOST_CHECK_EQUAL(false, parser.parseFile(inputFile3Path.string()).hasKeyword("WATER")); #endif }