/*
Copyright 2021 SINTEF Digital, Mathematics and Cybernetics.
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 .
*/
#include
#define BOOST_TEST_MODULE OPM_test_aspinPartition
#include
#include
BOOST_AUTO_TEST_CASE(FileBased)
{
auto [part, num_part] = Opm::partitionCellsFromFile("test10.partition", 10);
BOOST_CHECK_EQUAL(num_part, 3);
std::vector expected = { 0, 0, 1, 1, 2, 2, 1, 1, 0, 0 };
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
}
BOOST_AUTO_TEST_CASE(FileBasedWrongNumberOfCells)
{
auto func = []() { auto [part, num_part] = Opm::partitionCellsFromFile("test10.partition", 11); };
BOOST_CHECK_THROW(func(), std::runtime_error);
}
BOOST_AUTO_TEST_CASE(Simple1)
{
auto [part, num_part] = Opm::partitionCellsSimple(10, 3);
BOOST_CHECK_EQUAL(num_part, 3);
std::vector expected = { 0, 0, 0, 0, 1, 1, 1, 2, 2, 2 };
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
}
BOOST_AUTO_TEST_CASE(Simple2)
{
auto [part, num_part] = Opm::partitionCellsSimple(10, 7);
BOOST_CHECK_EQUAL(num_part, 7);
std::vector expected = { 0, 0, 1, 1, 2, 2, 3, 4, 5, 6 };
BOOST_CHECK_EQUAL_COLLECTIONS(expected.begin(), expected.end(), part.begin(), part.end());
}