2014-03-19 04:35:16 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-03-19 04:35:16 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-03-19 04:35:16 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-03-19 04:35:16 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-19 04:35:16 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2014-03-19 04:35:16 +00:00
|
|
|
/** @file boostTest.cpp
|
|
|
|
* @author Marko Simovic <markobarko@gmail.com>
|
|
|
|
* @date 2014
|
|
|
|
* Stub for generating main boost.test module.
|
2015-08-13 10:27:47 +00:00
|
|
|
* Original code taken from boost sources.
|
2014-03-19 04:35:16 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-04 20:01:56 +00:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
2016-03-21 23:05:30 +00:00
|
|
|
|
2016-08-06 09:37:52 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4535) // calling _set_se_translator requires /EHa
|
|
|
|
#endif
|
2018-07-25 07:17:53 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2016-08-06 09:37:52 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#pragma GCC diagnostic pop
|
2017-04-26 09:53:44 +00:00
|
|
|
|
2018-12-05 17:00:23 +00:00
|
|
|
#include <test/InteractiveTests.h>
|
2020-01-14 16:48:17 +00:00
|
|
|
#include <test/Common.h>
|
2019-07-16 17:05:13 +00:00
|
|
|
#include <test/EVMHost.h>
|
2017-04-26 09:53:44 +00:00
|
|
|
|
2018-06-08 12:17:50 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <boost/filesystem.hpp>
|
2018-12-05 17:00:23 +00:00
|
|
|
#include <string>
|
2018-06-08 12:17:50 +00:00
|
|
|
|
2017-04-26 09:53:44 +00:00
|
|
|
using namespace boost::unit_test;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::frontend::test;
|
2018-06-08 12:17:50 +00:00
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
using namespace std;
|
|
|
|
|
2017-09-28 08:28:41 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
void removeTestSuite(std::string const& _name)
|
|
|
|
{
|
|
|
|
master_test_suite_t& master = framework::master_test_suite();
|
|
|
|
auto id = master.get(_name);
|
|
|
|
assert(id != INV_TEST_UNIT_ID);
|
|
|
|
master.remove(id);
|
|
|
|
}
|
2018-06-08 12:17:50 +00:00
|
|
|
|
|
|
|
int registerTests(
|
|
|
|
boost::unit_test::test_suite& _suite,
|
|
|
|
boost::filesystem::path const& _basepath,
|
|
|
|
boost::filesystem::path const& _path,
|
2020-04-17 20:24:33 +00:00
|
|
|
bool _enforceViaYul,
|
2020-07-10 09:22:57 +00:00
|
|
|
vector<string> const& _labels,
|
2018-06-08 12:17:50 +00:00
|
|
|
TestCase::TestCaseCreator _testCaseCreator
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int numTestsAdded = 0;
|
|
|
|
fs::path fullpath = _basepath / _path;
|
2021-01-29 13:07:22 +00:00
|
|
|
TestCase::Config config{
|
|
|
|
fullpath.string(),
|
|
|
|
solidity::test::CommonOptions::get().evmVersion(),
|
|
|
|
solidity::test::CommonOptions::get().vmPaths,
|
|
|
|
_enforceViaYul,
|
2021-02-12 11:55:07 +00:00
|
|
|
solidity::test::CommonOptions::get().enforceGasTest,
|
|
|
|
solidity::test::CommonOptions::get().enforceGasTestMinValue
|
2021-01-29 13:07:22 +00:00
|
|
|
};
|
2018-06-08 12:17:50 +00:00
|
|
|
if (fs::is_directory(fullpath))
|
|
|
|
{
|
|
|
|
test_suite* sub_suite = BOOST_TEST_SUITE(_path.filename().string());
|
|
|
|
for (auto const& entry: boost::iterator_range<fs::directory_iterator>(
|
|
|
|
fs::directory_iterator(fullpath),
|
|
|
|
fs::directory_iterator()
|
|
|
|
))
|
|
|
|
if (fs::is_directory(entry.path()) || TestCase::isTestFilename(entry.path().filename()))
|
2020-04-17 20:24:33 +00:00
|
|
|
numTestsAdded += registerTests(
|
|
|
|
*sub_suite,
|
|
|
|
_basepath, _path / entry.path().filename(),
|
|
|
|
_enforceViaYul,
|
2020-07-10 09:22:57 +00:00
|
|
|
_labels,
|
2020-04-17 20:24:33 +00:00
|
|
|
_testCaseCreator
|
|
|
|
);
|
2018-06-08 12:17:50 +00:00
|
|
|
_suite.add(sub_suite);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-05-12 14:39:00 +00:00
|
|
|
// This must be a vector of unique_ptrs because Boost.Test keeps the equivalent of a string_view to the filename
|
|
|
|
// that is passed in. If the strings were stored directly in the vector, pointers/references to them would be
|
|
|
|
// invalidated on reallocation.
|
|
|
|
static vector<unique_ptr<string const>> filenames;
|
2018-06-08 12:17:50 +00:00
|
|
|
|
2019-11-27 16:24:21 +00:00
|
|
|
filenames.emplace_back(make_unique<string>(_path.string()));
|
2020-07-10 09:22:57 +00:00
|
|
|
auto test_case = make_test_case(
|
2019-02-06 11:10:48 +00:00
|
|
|
[config, _testCaseCreator]
|
2018-06-08 12:17:50 +00:00
|
|
|
{
|
|
|
|
BOOST_REQUIRE_NO_THROW({
|
|
|
|
try
|
|
|
|
{
|
|
|
|
stringstream errorStream;
|
2019-03-15 16:22:04 +00:00
|
|
|
auto testCase = _testCaseCreator(config);
|
2020-02-18 16:13:13 +00:00
|
|
|
if (testCase->shouldRun())
|
2019-05-07 13:33:22 +00:00
|
|
|
switch (testCase->run(errorStream))
|
|
|
|
{
|
|
|
|
case TestCase::TestResult::Success:
|
|
|
|
break;
|
|
|
|
case TestCase::TestResult::Failure:
|
|
|
|
BOOST_ERROR("Test expectation mismatch.\n" + errorStream.str());
|
|
|
|
break;
|
|
|
|
case TestCase::TestResult::FatalError:
|
|
|
|
BOOST_ERROR("Fatal error during test.\n" + errorStream.str());
|
|
|
|
break;
|
|
|
|
}
|
2018-06-08 12:17:50 +00:00
|
|
|
}
|
|
|
|
catch (boost::exception const& _e)
|
|
|
|
{
|
|
|
|
BOOST_ERROR("Exception during extracted test: " << boost::diagnostic_information(_e));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
_path.stem().string(),
|
|
|
|
*filenames.back(),
|
|
|
|
0
|
2020-07-10 09:22:57 +00:00
|
|
|
);
|
|
|
|
for (auto const& _label: _labels)
|
|
|
|
test_case->add_label(_label);
|
|
|
|
_suite.add(test_case);
|
2018-06-08 12:17:50 +00:00
|
|
|
numTestsAdded = 1;
|
|
|
|
}
|
|
|
|
return numTestsAdded;
|
|
|
|
}
|
2020-01-14 16:48:17 +00:00
|
|
|
|
|
|
|
void initializeOptions()
|
|
|
|
{
|
|
|
|
auto const& suite = boost::unit_test::framework::master_test_suite();
|
|
|
|
|
|
|
|
auto options = std::make_unique<solidity::test::CommonOptions>();
|
|
|
|
solAssert(options->parse(suite.argc, suite.argv), "Failed to parse options!");
|
|
|
|
options->validate();
|
|
|
|
|
|
|
|
solidity::test::CommonOptions::setSingleton(std::move(options));
|
|
|
|
}
|
2017-09-28 08:28:41 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 20:06:10 +00:00
|
|
|
// TODO: Prototype -- why isn't this declared in the boost headers?
|
|
|
|
// TODO: replace this with a (global) fixture.
|
|
|
|
test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] );
|
|
|
|
|
2017-04-26 09:53:44 +00:00
|
|
|
test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] )
|
|
|
|
{
|
|
|
|
master_test_suite_t& master = framework::master_test_suite();
|
|
|
|
master.p_name.value = "SolidityTests";
|
2018-12-05 17:00:23 +00:00
|
|
|
|
2020-01-14 16:48:17 +00:00
|
|
|
initializeOptions();
|
|
|
|
|
2020-06-05 23:10:48 +00:00
|
|
|
bool disableSemantics = true;
|
|
|
|
try
|
2019-07-16 17:05:13 +00:00
|
|
|
{
|
2020-06-05 23:10:48 +00:00
|
|
|
disableSemantics = !solidity::test::EVMHost::checkVmPaths(solidity::test::CommonOptions::get().vmPaths);
|
|
|
|
}
|
|
|
|
catch (std::runtime_error const& _exception)
|
|
|
|
{
|
|
|
|
cerr << "Error: " << _exception.what() << endl;
|
|
|
|
exit(1);
|
2019-07-16 17:05:13 +00:00
|
|
|
}
|
2020-06-05 23:10:48 +00:00
|
|
|
if (disableSemantics)
|
|
|
|
cout << endl << "--- SKIPPING ALL SEMANTICS TESTS ---" << endl << endl;
|
|
|
|
|
2018-12-05 17:00:23 +00:00
|
|
|
// Include the interactive tests in the automatic tests as well
|
|
|
|
for (auto const& ts: g_interactiveTestsuites)
|
2018-11-15 15:47:52 +00:00
|
|
|
{
|
2020-01-14 16:48:17 +00:00
|
|
|
auto const& options = solidity::test::CommonOptions::get();
|
2018-12-05 17:00:23 +00:00
|
|
|
|
|
|
|
if (ts.smt && options.disableSMT)
|
|
|
|
continue;
|
|
|
|
|
2019-07-17 08:24:23 +00:00
|
|
|
if (ts.needsVM && disableSemantics)
|
2018-12-05 17:00:23 +00:00
|
|
|
continue;
|
2018-11-15 15:47:52 +00:00
|
|
|
|
|
|
|
solAssert(registerTests(
|
|
|
|
master,
|
2018-12-05 17:00:23 +00:00
|
|
|
options.testPath / ts.path,
|
|
|
|
ts.subpath,
|
2020-04-17 20:24:33 +00:00
|
|
|
options.enforceViaYul,
|
2020-07-10 09:22:57 +00:00
|
|
|
ts.labels,
|
2018-12-05 17:00:23 +00:00
|
|
|
ts.testCaseCreator
|
|
|
|
) > 0, std::string("no ") + ts.title + " tests found");
|
2018-11-15 15:47:52 +00:00
|
|
|
}
|
2018-12-05 17:00:23 +00:00
|
|
|
|
2019-07-17 08:24:23 +00:00
|
|
|
if (disableSemantics)
|
2017-04-26 09:53:44 +00:00
|
|
|
{
|
|
|
|
for (auto suite: {
|
2017-09-13 15:16:45 +00:00
|
|
|
"ABIDecoderTest",
|
2017-08-07 10:52:40 +00:00
|
|
|
"ABIEncoderTest",
|
2017-04-26 09:53:44 +00:00
|
|
|
"SolidityAuctionRegistrar",
|
|
|
|
"SolidityFixedFeeRegistrar",
|
|
|
|
"SolidityWallet",
|
|
|
|
"GasMeterTests",
|
2018-12-06 14:59:58 +00:00
|
|
|
"GasCostTests",
|
2017-04-26 09:53:44 +00:00
|
|
|
"SolidityEndToEndTest",
|
|
|
|
"SolidityOptimizer"
|
|
|
|
})
|
2017-09-28 08:28:41 +00:00
|
|
|
removeTestSuite(suite);
|
2017-04-26 09:53:44 +00:00
|
|
|
}
|
2018-12-05 17:00:23 +00:00
|
|
|
|
2020-04-01 01:42:05 +00:00
|
|
|
return nullptr;
|
2017-04-26 09:53:44 +00:00
|
|
|
}
|
2018-07-26 14:23:53 +00:00
|
|
|
|
|
|
|
// BOOST_TEST_DYN_LINK should be defined if user want to link against shared boost test library
|
|
|
|
#ifdef BOOST_TEST_DYN_LINK
|
|
|
|
|
|
|
|
// Because we want to have customized initialization function and support shared boost libraries at the same time,
|
|
|
|
// we are forced to customize the entry point.
|
|
|
|
// see: https://www.boost.org/doc/libs/1_67_0/libs/test/doc/html/boost_test/adv_scenarios/shared_lib_customizations/init_func.html
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
auto init_unit_test = []() -> bool { init_unit_test_suite(0, nullptr); return true; };
|
|
|
|
return boost::unit_test::unit_test_main(init_unit_test, argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|