solidity/test/libsolidity/SMTCheckerTest.cpp

132 lines
4.3 KiB
C++
Raw Normal View History

2019-12-03 15:50:28 +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
2019-12-03 15:50:28 +00:00
#include <test/libsolidity/SMTCheckerTest.h>
#include <test/Common.h>
2019-12-03 15:50:28 +00:00
#include <range/v3/action/remove_if.hpp>
2019-12-03 15:50:28 +00:00
using namespace std;
using namespace solidity;
using namespace solidity::langutil;
using namespace solidity::frontend;
using namespace solidity::frontend::test;
2019-12-03 15:50:28 +00:00
2020-07-10 09:22:57 +00:00
SMTCheckerTest::SMTCheckerTest(string const& _filename): SyntaxTest(_filename, EVMVersion{})
2019-12-03 15:50:28 +00:00
{
2021-07-02 13:05:24 +00:00
auto const& showUnproved = m_reader.stringSetting("SMTShowUnproved", "yes");
if (showUnproved == "no")
m_modelCheckerSettings.showUnproved = false;
else if (showUnproved == "yes")
m_modelCheckerSettings.showUnproved = true;
else
BOOST_THROW_EXCEPTION(runtime_error("Invalid SMT \"show unproved\" choice."));
2021-09-06 20:23:24 +00:00
m_modelCheckerSettings.solvers = smtutil::SMTSolverChoice::None();
2020-03-06 00:22:51 +00:00
auto const& choice = m_reader.stringSetting("SMTSolvers", "any");
if (choice == "any")
2021-05-19 15:35:19 +00:00
m_modelCheckerSettings.solvers = smtutil::SMTSolverChoice::All();
2020-03-06 00:22:51 +00:00
else if (choice == "none")
2021-05-19 15:35:19 +00:00
m_modelCheckerSettings.solvers = smtutil::SMTSolverChoice::None();
else if (!m_modelCheckerSettings.solvers.setSolver(choice))
2020-03-06 00:22:51 +00:00
BOOST_THROW_EXCEPTION(runtime_error("Invalid SMT solver choice."));
2020-02-18 16:13:13 +00:00
2021-05-19 15:35:19 +00:00
m_modelCheckerSettings.solvers &= ModelChecker::availableSolvers();
2020-02-18 16:13:13 +00:00
/// Underflow and Overflow are not enabled by default for Solidity >=0.8.7,
/// so we explicitly enable all targets for the tests.
m_modelCheckerSettings.targets = ModelCheckerTargets::All();
auto engine = ModelCheckerEngine::fromString(m_reader.stringSetting("SMTEngine", "all"));
if (engine)
m_modelCheckerSettings.engine = *engine;
else
BOOST_THROW_EXCEPTION(runtime_error("Invalid SMT engine choice."));
2021-05-19 15:35:19 +00:00
if (m_modelCheckerSettings.solvers.none() || m_modelCheckerSettings.engine.none())
2020-02-18 16:13:13 +00:00
m_shouldRun = false;
auto const& ignoreCex = m_reader.stringSetting("SMTIgnoreCex", "no");
if (ignoreCex == "no")
m_ignoreCex = false;
else if (ignoreCex == "yes")
m_ignoreCex = true;
else
BOOST_THROW_EXCEPTION(runtime_error("Invalid SMT counterexample choice."));
2021-09-27 15:45:34 +00:00
2022-05-03 08:43:19 +00:00
static auto removeInv = [](vector<SyntaxTestError>&& errors) {
vector<SyntaxTestError> filtered;
for (auto&& e: errors)
if (e.errorId != 1180_error)
filtered.emplace_back(e);
return filtered;
};
if (m_modelCheckerSettings.invariants.invariants.empty())
2022-08-23 17:28:45 +00:00
m_expectations = removeInv(std::move(m_expectations));
2022-05-03 08:43:19 +00:00
auto const& ignoreInv = m_reader.stringSetting("SMTIgnoreInv", "yes");
if (ignoreInv == "no")
m_modelCheckerSettings.invariants = ModelCheckerInvariants::All();
else if (ignoreInv == "yes")
m_modelCheckerSettings.invariants = ModelCheckerInvariants::None();
else
BOOST_THROW_EXCEPTION(runtime_error("Invalid SMT invariant choice."));
2021-09-27 15:45:34 +00:00
auto const& ignoreOSSetting = m_reader.stringSetting("SMTIgnoreOS", "none");
for (string const& os: ignoreOSSetting | ranges::views::split(',') | ranges::to<vector<string>>())
{
#ifdef __APPLE__
if (os == "macos")
m_shouldRun = false;
#elif _WIN32
if (os == "windows")
m_shouldRun = false;
#elif __linux__
if (os == "linux")
m_shouldRun = false;
#endif
}
2019-12-03 15:50:28 +00:00
}
TestCase::TestResult SMTCheckerTest::run(ostream& _stream, string const& _linePrefix, bool _formatted)
{
setupCompiler();
compiler().setModelCheckerSettings(m_modelCheckerSettings);
2019-12-03 15:50:28 +00:00
parseAndAnalyze();
filterObtainedErrors();
return conclude(_stream, _linePrefix, _formatted);
2019-12-03 15:50:28 +00:00
}
void SMTCheckerTest::filterObtainedErrors()
{
SyntaxTest::filterObtainedErrors();
static auto removeCex = [](vector<SyntaxTestError>& errors) {
for (auto& e: errors)
if (
auto cexPos = e.message.find("\\nCounterexample");
cexPos != string::npos
)
e.message = e.message.substr(0, cexPos);
};
if (m_ignoreCex)
removeCex(m_errorList);
}