solidity/test/libsolutil/IterateReplacing.cpp

97 lines
2.9 KiB
C++
Raw Normal View History

2018-09-25 14:29:46 +00:00
/*
This file is part of solidity.
solidity 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.
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: GPL-3.0
2018-09-25 14:29:46 +00:00
/**
* Unit tests for the iterateReplacing function
*/
#include <libsolutil/CommonData.h>
2018-09-25 14:29:46 +00:00
#include <test/Common.h>
2018-09-25 14:29:46 +00:00
#include <boost/test/unit_test.hpp>
2018-09-25 14:29:46 +00:00
namespace solidity::util::test
2018-09-25 14:29:46 +00:00
{
BOOST_AUTO_TEST_SUITE(IterateReplacing, *boost::unit_test::label("nooptions"))
2018-09-25 14:29:46 +00:00
BOOST_AUTO_TEST_CASE(no_replacement)
{
std::vector<std::string> v{"abc", "def", "ghi"};
std::function<std::optional<std::vector<std::string>>(std::string&)> f = [](std::string&) -> std::optional<std::vector<std::string>> { return {}; };
2018-09-25 14:29:46 +00:00
iterateReplacing(v, f);
std::vector<std::string> expectation{"abc", "def", "ghi"};
2018-09-25 14:29:46 +00:00
BOOST_CHECK(v == expectation);
}
BOOST_AUTO_TEST_CASE(empty_input)
{
std::vector<std::string> v;
std::function<std::optional<std::vector<std::string>>(std::string&)> f = [](std::string&) -> std::optional<std::vector<std::string>> { return {}; };
2018-09-25 14:29:46 +00:00
iterateReplacing(v, f);
std::vector<std::string> expectation;
2018-09-25 14:29:46 +00:00
BOOST_CHECK(v == expectation);
}
BOOST_AUTO_TEST_CASE(delete_some)
{
std::vector<std::string> v{"abc", "def", "ghi"};
std::function<std::optional<std::vector<std::string>>(std::string&)> f = [](std::string& _s) -> std::optional<std::vector<std::string>> {
2018-09-25 14:29:46 +00:00
if (_s == "def")
return std::vector<std::string>();
2018-09-25 14:29:46 +00:00
else
return {};
};
iterateReplacing(v, f);
std::vector<std::string> expectation{"abc", "ghi"};
2018-09-25 14:29:46 +00:00
BOOST_CHECK(v == expectation);
}
BOOST_AUTO_TEST_CASE(inject_some_start)
{
std::vector<std::string> v{"abc", "def", "ghi"};
std::function<std::optional<std::vector<std::string>>(std::string&)> f = [](std::string& _s) -> std::optional<std::vector<std::string>> {
2018-09-25 14:29:46 +00:00
if (_s == "abc")
return std::vector<std::string>{"x", "y"};
2018-09-25 14:29:46 +00:00
else
return {};
};
iterateReplacing(v, f);
std::vector<std::string> expectation{"x", "y", "def", "ghi"};
2018-09-25 14:29:46 +00:00
BOOST_CHECK(v == expectation);
}
BOOST_AUTO_TEST_CASE(inject_some_end)
{
std::vector<std::string> v{"abc", "def", "ghi"};
std::function<std::optional<std::vector<std::string>>(std::string&)> f = [](std::string& _s) -> std::optional<std::vector<std::string>> {
2018-09-25 14:29:46 +00:00
if (_s == "ghi")
return std::vector<std::string>{"x", "y"};
2018-09-25 14:29:46 +00:00
else
return {};
};
iterateReplacing(v, f);
std::vector<std::string> expectation{"abc", "def", "x", "y"};
2018-09-25 14:29:46 +00:00
BOOST_CHECK(v == expectation);
}
BOOST_AUTO_TEST_SUITE_END()
}