this is just the result of ``` find -iname "*.[ch]pp" | xargs sed -i "s/ *$//" find opm/parser/share/keywords -type f | xargs sed -i "s/ *$//" ``` so if it causes conflicts with other patches, the others should get priority. The rationale behind this patch is that some people tell their editor to remove white space which leads to larger than necessary patches...
110 lines
3.4 KiB
C++
110 lines
3.4 KiB
C++
/*
|
|
Copyright (C) 2014 Statoil ASE
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#define BOOST_TEST_MODULE ParserIntegrationTests
|
|
#include <math.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <boost/test/test_tools.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Tables/PvtgTable.hpp>
|
|
|
|
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
|
#include <opm/parser/eclipse/Deck/DeckDoubleItem.hpp>
|
|
|
|
#include <opm/parser/eclipse/Parser/Parser.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserKeyword.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserRecord.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserIntItem.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserDoubleItem.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserStringItem.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserEnums.hpp>
|
|
|
|
using namespace Opm;
|
|
|
|
|
|
|
|
const char *dataMissingRecord = "\n\
|
|
ENDSCALE\n\
|
|
1* 1* 2 /\n\
|
|
\n\
|
|
ENKRVD\n\
|
|
100 1 2 3 4 5 6 7 200 11 22 33 44 55 66 77 /\n\
|
|
";
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( ParseMissingRECORD_THrows) {
|
|
ParserPtr parser(new Parser());
|
|
BOOST_CHECK_THROW( parser->parseString( dataMissingRecord ) , std::invalid_argument);
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *data = "\n\
|
|
ENDSCALE\n\
|
|
1* 1* 3 /\n\
|
|
\n\
|
|
ENKRVD\n\
|
|
100 * 2 * 2* 6 7 200 11 22 33 3*55 10 /\n\
|
|
100 * 2 3 4 5 6 7 200 11 22 33 44 55 66 77 /\n\
|
|
100 * 2 3 4 5 6 7 200 11 22 33 44 55 66 * /\n\
|
|
";
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE( parse_DATAWithDefult_OK ) {
|
|
ParserPtr parser(new Parser());
|
|
DeckConstPtr deck = parser->parseString( data );
|
|
DeckKeywordConstPtr keyword = deck->getKeyword( "ENKRVD" );
|
|
DeckRecordConstPtr rec0 = keyword->getRecord(0);
|
|
DeckRecordConstPtr rec1 = keyword->getRecord(1);
|
|
DeckRecordConstPtr rec2 = keyword->getRecord(2);
|
|
|
|
DeckItemConstPtr item0 = rec0->getItem(0);
|
|
DeckItemConstPtr item1 = rec1->getItem(0);
|
|
DeckItemConstPtr item2 = rec2->getItem(0);
|
|
|
|
BOOST_CHECK_EQUAL( 3U , keyword->size());
|
|
BOOST_CHECK( !item0->defaultApplied(0) );
|
|
BOOST_CHECK( item0->defaultApplied(1) );
|
|
|
|
BOOST_CHECK_EQUAL( 100 , item0->getRawDouble(0));
|
|
BOOST_CHECK_EQUAL( -1 , item0->getRawDouble(1));
|
|
BOOST_CHECK_EQUAL( 2 , item0->getRawDouble(2));
|
|
BOOST_CHECK_EQUAL( -1 , item0->getRawDouble(3));
|
|
BOOST_CHECK_EQUAL( -1 , item0->getRawDouble(4));
|
|
BOOST_CHECK_EQUAL( -1 , item0->getRawDouble(5));
|
|
BOOST_CHECK_EQUAL( 6 , item0->getRawDouble(6));
|
|
BOOST_CHECK_EQUAL( 55 , item0->getRawDouble(12));
|
|
BOOST_CHECK_EQUAL( 55 , item0->getRawDouble(13));
|
|
BOOST_CHECK_EQUAL( 55 , item0->getRawDouble(14));
|
|
BOOST_CHECK_EQUAL( 10 , item0->getRawDouble(15));
|
|
|
|
BOOST_CHECK_EQUAL( 100 , item1->getRawDouble(0));
|
|
BOOST_CHECK_EQUAL( -1 , item1->getRawDouble(1));
|
|
|
|
BOOST_CHECK( !item2->defaultApplied(0) );
|
|
BOOST_CHECK( item2->defaultApplied(1) );
|
|
}
|
|
|
|
|
|
|