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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2018-09-25 14:29:46 +00:00
|
|
|
/**
|
|
|
|
* Unit tests for the iterateReplacing function
|
|
|
|
*/
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2020-01-14 16:48:17 +00:00
|
|
|
#include <test/Common.h>
|
2018-09-25 14:29:46 +00:00
|
|
|
|
2020-01-14 14:55:31 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2018-09-25 14:29:46 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::util::test
|
2018-09-25 14:29:46 +00:00
|
|
|
{
|
|
|
|
|
2020-07-08 15:56:14 +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)
|
|
|
|
{
|
|
|
|
vector<string> v{"abc", "def", "ghi"};
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<string>>(string&)> f = [](string&) -> std::optional<vector<string>> { return {}; };
|
2018-09-25 14:29:46 +00:00
|
|
|
iterateReplacing(v, f);
|
|
|
|
vector<string> expectation{"abc", "def", "ghi"};
|
|
|
|
BOOST_CHECK(v == expectation);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_input)
|
|
|
|
{
|
|
|
|
vector<string> v;
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<string>>(string&)> f = [](string&) -> std::optional<vector<string>> { return {}; };
|
2018-09-25 14:29:46 +00:00
|
|
|
iterateReplacing(v, f);
|
|
|
|
vector<string> expectation;
|
|
|
|
BOOST_CHECK(v == expectation);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(delete_some)
|
|
|
|
{
|
|
|
|
vector<string> v{"abc", "def", "ghi"};
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<string>>(string&)> f = [](string& _s) -> std::optional<vector<string>> {
|
2018-09-25 14:29:46 +00:00
|
|
|
if (_s == "def")
|
|
|
|
return vector<string>();
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
};
|
|
|
|
iterateReplacing(v, f);
|
|
|
|
vector<string> expectation{"abc", "ghi"};
|
|
|
|
BOOST_CHECK(v == expectation);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(inject_some_start)
|
|
|
|
{
|
|
|
|
vector<string> v{"abc", "def", "ghi"};
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<string>>(string&)> f = [](string& _s) -> std::optional<vector<string>> {
|
2018-09-25 14:29:46 +00:00
|
|
|
if (_s == "abc")
|
|
|
|
return vector<string>{"x", "y"};
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
};
|
|
|
|
iterateReplacing(v, f);
|
|
|
|
vector<string> expectation{"x", "y", "def", "ghi"};
|
|
|
|
BOOST_CHECK(v == expectation);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(inject_some_end)
|
|
|
|
{
|
|
|
|
vector<string> v{"abc", "def", "ghi"};
|
2019-10-28 10:39:30 +00:00
|
|
|
function<std::optional<vector<string>>(string&)> f = [](string& _s) -> std::optional<vector<string>> {
|
2018-09-25 14:29:46 +00:00
|
|
|
if (_s == "ghi")
|
|
|
|
return vector<string>{"x", "y"};
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
};
|
|
|
|
iterateReplacing(v, f);
|
|
|
|
vector<string> expectation{"abc", "def", "x", "y"};
|
|
|
|
BOOST_CHECK(v == expectation);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|