2013-10-25 10:28:56 -05:00
|
|
|
/*
|
|
|
|
Copyright 2013 Statoil ASA.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <iostream>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
|
|
|
#define BOOST_TEST_MODULE ScheduleTests
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
|
|
|
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
|
|
|
|
#include <opm/parser/eclipse/Deck/DeckIntItem.hpp>
|
|
|
|
#include <opm/parser/eclipse/Deck/DeckStringItem.hpp>
|
|
|
|
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
|
|
|
|
|
|
|
using namespace Opm;
|
|
|
|
|
2013-11-05 08:25:47 -06:00
|
|
|
DeckPtr createDeck() {
|
2013-10-25 10:28:56 -05:00
|
|
|
DeckPtr deck(new Deck());
|
|
|
|
DeckKeywordPtr scheduleKeyword(new DeckKeyword("SCHEDULE"));
|
|
|
|
DeckKeywordPtr startKeyword(new DeckKeyword("START"));
|
|
|
|
DeckRecordPtr startRecord(new DeckRecord());
|
|
|
|
DeckIntItemPtr dayItem( new DeckIntItem("DAY") );
|
|
|
|
DeckStringItemPtr monthItem(new DeckStringItem("MONTH") );
|
|
|
|
DeckIntItemPtr yearItem(new DeckIntItem("YEAR"));
|
|
|
|
|
|
|
|
|
|
|
|
dayItem->push_back( 8 );
|
|
|
|
monthItem->push_back( "MAR" );
|
|
|
|
yearItem->push_back( 1998 );
|
|
|
|
|
|
|
|
startRecord->addItem( dayItem );
|
|
|
|
startRecord->addItem( monthItem );
|
|
|
|
startRecord->addItem( yearItem );
|
|
|
|
startKeyword->addRecord( startRecord );
|
|
|
|
|
|
|
|
deck->addKeyword( startKeyword );
|
|
|
|
deck->addKeyword( scheduleKeyword );
|
|
|
|
|
2013-11-05 08:25:47 -06:00
|
|
|
return deck;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(CreateScheduleDeckMissingSCHEDULE_Throws) {
|
|
|
|
DeckPtr deck(new Deck());
|
|
|
|
BOOST_CHECK_THROW(Schedule schedule(deck) , std::invalid_argument);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(CreateScheduleDeckMissingReturnsDefaults) {
|
|
|
|
DeckPtr deck(new Deck());
|
|
|
|
DeckKeywordPtr keyword(new DeckKeyword("SCHEDULE"));
|
|
|
|
deck->addKeyword( keyword );
|
|
|
|
Schedule schedule(deck);
|
|
|
|
BOOST_CHECK_EQUAL( schedule.getStartDate() , boost::gregorian::date( 1983 , boost::gregorian::Jan , 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(CreateScheduleDeckWithStart) {
|
|
|
|
DeckPtr deck = createDeck();
|
2013-10-25 10:28:56 -05:00
|
|
|
Schedule schedule(deck);
|
|
|
|
BOOST_CHECK_EQUAL( schedule.getStartDate() , boost::gregorian::date( 1998 , boost::gregorian::Mar , 8));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(CreateScheduleDeckWithSCHEDULENoThrow) {
|
|
|
|
DeckPtr deck(new Deck());
|
|
|
|
DeckKeywordPtr keyword(new DeckKeyword("SCHEDULE"));
|
|
|
|
deck->addKeyword( keyword );
|
|
|
|
|
|
|
|
BOOST_CHECK_NO_THROW(Schedule schedule(deck));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-05 08:25:47 -06:00
|
|
|
BOOST_AUTO_TEST_CASE(EmptyScheduleHasNoWells) {
|
|
|
|
DeckPtr deck = createDeck();
|
|
|
|
Schedule schedule(deck);
|
|
|
|
BOOST_CHECK_EQUAL( 0U , schedule.numWells() );
|
|
|
|
BOOST_CHECK_EQUAL( false , schedule.hasWell("WELL1") );
|
|
|
|
BOOST_CHECK_THROW( schedule.getWell("WELL2") , std::invalid_argument );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|