/* Copyright 2014 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 . */ #define BOOST_TEST_MODULE BoxManagerTests #include #include #include #include #include #include #include #include #include namespace { Opm::Box::IsActive allActive() { return [](const std::size_t) { return true; }; } Opm::Box::ActiveIdx identityMapping() { return [](const std::size_t i) { return i; }; } } BOOST_AUTO_TEST_CASE(CreateBox) { Opm::Box box(Opm::GridDims{ 4, 3, 2 }, allActive(), identityMapping()); BOOST_CHECK_EQUAL( 24U , box.size() ); BOOST_CHECK( box.isGlobal() ); BOOST_CHECK_EQUAL( 4U , box.getDim(0) ); BOOST_CHECK_EQUAL( 3U , box.getDim(1) ); BOOST_CHECK_EQUAL( 2U , box.getDim(2) ); BOOST_CHECK_THROW( box.getDim(5) , std::invalid_argument); } BOOST_AUTO_TEST_CASE(CreateSubBox) { const Opm::GridDims gridDims(10,10,10); const Opm::Box globalBox(gridDims, allActive(), identityMapping()); BOOST_CHECK_THROW(std::make_unique( gridDims, allActive(), identityMapping(), -1 , 9 , 1 , 8 , 1, 8), std::invalid_argument); // Negative throw BOOST_CHECK_THROW(std::make_unique( gridDims, allActive(), identityMapping(), 1 , 19 , 1 , 8 , 1, 8), std::invalid_argument); // Bigger than global: throw BOOST_CHECK_THROW(std::make_unique( gridDims, allActive(), identityMapping(), 9 , 1 , 1 , 8 , 1, 8), std::invalid_argument); // Inverted order: throw Opm::Box subBox1(gridDims, allActive(), identityMapping(), 0,9,0,9,0,9); BOOST_CHECK( subBox1.isGlobal()); Opm::Box subBox2(gridDims, allActive(), identityMapping(), 1,3,1,4,1,5); BOOST_CHECK( !subBox2.isGlobal()); BOOST_CHECK_EQUAL( 60U , subBox2.size() ); } BOOST_AUTO_TEST_CASE(BoxEqual) { Opm::GridDims gridDims1(10,10,10); Opm::GridDims gridDims3(10,10,11); Opm::GridDims gridDims4(20,20,20); Opm::Box globalBox1( gridDims1, allActive(), identityMapping() ); Opm::Box globalBox2( gridDims1, allActive(), identityMapping() ); Opm::Box globalBox3( gridDims3, allActive(), identityMapping() ); Opm::Box globalBox4(gridDims4, allActive(), identityMapping()); Opm::Box subBox1( gridDims1 , allActive(), identityMapping() , 0 , 9 , 0 , 9 , 0, 9 ); Opm::Box subBox4( gridDims4 , allActive(), identityMapping() , 0 , 9 , 0 , 9 , 0, 9 ); Opm::Box subBox5( gridDims4 , allActive(), identityMapping() , 10 , 19 , 10 , 19 , 10, 19 ); BOOST_CHECK( globalBox1.equal( globalBox2 )); BOOST_CHECK( !globalBox1.equal( globalBox3 )); BOOST_CHECK( globalBox1.equal( subBox1 )); BOOST_CHECK( !globalBox4.equal( subBox4 )); BOOST_CHECK( !subBox4.equal( subBox5 )); } BOOST_AUTO_TEST_CASE(CreateBoxManager) { Opm::GridDims gridDims(10,10,10); Opm::BoxManager boxManager(gridDims, allActive(), identityMapping()); Opm::Box box(gridDims, allActive(), identityMapping()); BOOST_CHECK( box.equal( boxManager.getActiveBox()) ); } BOOST_AUTO_TEST_CASE(TestInputBox) { Opm::GridDims gridDims(10,10,10); Opm::BoxManager boxManager(gridDims, allActive(), identityMapping()); Opm::Box inputBox( gridDims, allActive(), identityMapping(), 0,4,0,4,0,4); Opm::Box globalBox( gridDims, allActive(), identityMapping() ); boxManager.setInputBox( 0,4,0,4,0,4 ); BOOST_CHECK( inputBox.equal( boxManager.getActiveBox()) ); boxManager.endSection(); BOOST_CHECK( boxManager.getActiveBox().equal(globalBox)); } BOOST_AUTO_TEST_CASE(TestKeywordBox) { Opm::GridDims gridDims(10,10,10); Opm::BoxManager boxManager(gridDims, allActive(), identityMapping()); Opm::Box inputBox( gridDims, allActive(), identityMapping(), 0,4,0,4,0,4); Opm::Box keywordBox( gridDims, allActive(), identityMapping(), 0,2,0,2,0,2); Opm::Box globalBox( gridDims, allActive(), identityMapping() ); boxManager.setInputBox( 0,4,0,4,0,4 ); BOOST_CHECK( inputBox.equal( boxManager.getActiveBox()) ); boxManager.setKeywordBox( 0,2,0,2,0,2 ); BOOST_CHECK( keywordBox.equal( boxManager.getActiveBox()) ); // Must end keyword first BOOST_CHECK_THROW( boxManager.endSection() , std::invalid_argument ); boxManager.endKeyword(); BOOST_CHECK( inputBox.equal( boxManager.getActiveBox()) ); boxManager.endSection(); BOOST_CHECK( boxManager.getActiveBox().equal(globalBox)); } BOOST_AUTO_TEST_CASE(BoxNineArg) { const size_t nx = 10; const size_t ny = 7; const size_t nz = 6; Opm::GridDims gridDims(nx,ny,nz); BOOST_CHECK_NO_THROW( Opm::Box(gridDims, allActive(), identityMapping(), 0,7,0,5,1,2) ); // J2 < J1 BOOST_CHECK_THROW( Opm::Box(gridDims, allActive(), identityMapping(), 1,1,4,3,2,2), std::invalid_argument); // K2 >= Nz BOOST_CHECK_THROW( Opm::Box(gridDims, allActive(), identityMapping(), 1,1,2,2,3,nz), std::invalid_argument); } BOOST_AUTO_TEST_CASE(TestKeywordBox2) { Opm::EclipseGrid grid(10,10,10); std::vector actnum(grid.getCartesianSize(), 1); actnum[0] = 0; grid.resetACTNUM(actnum); auto isActive = Opm::Box::IsActive { [&grid](const std::size_t global_index) { return grid.cellActive(global_index); } }; auto activeIdx = Opm::Box::ActiveIdx { [&grid](const std::size_t global_index) { return grid.activeIndex(global_index); } }; Opm::BoxManager boxManager(grid, isActive, activeIdx); const auto& box = boxManager.getActiveBox(); for (const auto& p : box.index_list()) BOOST_CHECK_EQUAL(p.active_index + 1, p.global_index); BOOST_CHECK_EQUAL(box.index_list().size() + 1, grid.getCartesianSize()); const auto& global_index_list = box.global_index_list(); BOOST_CHECK_EQUAL( global_index_list.size(), grid.getCartesianSize()); const auto& c0 = global_index_list[0]; BOOST_CHECK_EQUAL(c0.global_index, 0U); BOOST_CHECK_EQUAL(c0.active_index, c0.global_index); BOOST_CHECK_EQUAL(c0.data_index, 0U); Opm::Box box2(grid, isActive, activeIdx, 9,9,9,9,0,9); const auto& il = box2.index_list(); BOOST_CHECK_EQUAL(il.size(), 10U); for (std::size_t i=0; i < 10; i++) { BOOST_CHECK_EQUAL(il[i].data_index, i); BOOST_CHECK_EQUAL(il[i].global_index, 99 + i*100); BOOST_CHECK_EQUAL(il[i].active_index, 98 + i*100); } }