2018-08-03 17:30:18 +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-08-03 17:30:18 +00:00
|
|
|
|
2020-12-01 13:22:15 +00:00
|
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
2022-06-16 16:05:51 +00:00
|
|
|
#include <libsolidity/ast/ASTJsonExporter.h>
|
2021-10-27 11:22:02 +00:00
|
|
|
#include <libsolutil/AnsiColorized.h>
|
|
|
|
#include <libsolutil/CommonIO.h>
|
2021-10-22 02:05:49 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2021-10-27 11:22:02 +00:00
|
|
|
|
|
|
|
#include <test/Common.h>
|
|
|
|
#include <test/libsolidity/ASTJSONTest.h>
|
|
|
|
|
2018-08-03 17:30:18 +00:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
2021-10-27 11:22:02 +00:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2022-02-22 11:29:29 +00:00
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2020-01-14 14:55:31 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2021-10-27 11:22:02 +00:00
|
|
|
#include <boost/throw_exception.hpp>
|
|
|
|
|
2018-08-03 17:30:18 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <memory>
|
|
|
|
#include <stdexcept>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::frontend;
|
|
|
|
using namespace solidity::frontend::test;
|
|
|
|
using namespace solidity::util::formatting;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity;
|
2018-08-03 17:30:18 +00:00
|
|
|
using namespace std;
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
using namespace boost::unit_test;
|
|
|
|
|
2020-01-14 11:46:47 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2020-09-03 09:39:56 +00:00
|
|
|
string const sourceDelimiter("==== Source: ");
|
|
|
|
|
2022-02-23 13:57:57 +00:00
|
|
|
string compilerStateToString(CompilerStack::State _state)
|
|
|
|
{
|
|
|
|
switch (_state)
|
|
|
|
{
|
|
|
|
case CompilerStack::State::Empty: return "Empty";
|
|
|
|
case CompilerStack::State::SourcesSet: return "SourcesSet";
|
|
|
|
case CompilerStack::State::Parsed: return "Parsed";
|
|
|
|
case CompilerStack::State::ParsedAndImported: return "ParsedAndImported";
|
|
|
|
case CompilerStack::State::AnalysisPerformed: return "AnalysisPerformed";
|
|
|
|
case CompilerStack::State::CompilationSuccessful: return "CompilationSuccessful";
|
|
|
|
}
|
|
|
|
soltestAssert(false, "Unexpected value of state parameter");
|
|
|
|
}
|
|
|
|
|
|
|
|
CompilerStack::State stringToCompilerState(const string& _state)
|
|
|
|
{
|
|
|
|
for (unsigned int i = CompilerStack::State::Empty; i <= CompilerStack::State::CompilationSuccessful; ++i)
|
|
|
|
{
|
|
|
|
if (_state == compilerStateToString(CompilerStack::State(i)))
|
|
|
|
return CompilerStack::State(i);
|
|
|
|
}
|
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Unsupported compiler state (" + _state + ") in test contract file"));
|
|
|
|
}
|
2022-02-22 11:29:29 +00:00
|
|
|
|
2020-01-14 11:46:47 +00:00
|
|
|
void replaceVersionWithTag(string& _input)
|
|
|
|
{
|
|
|
|
boost::algorithm::replace_all(
|
|
|
|
_input,
|
2020-01-14 16:48:17 +00:00
|
|
|
"\"" + solidity::test::CommonOptions::get().evmVersion().name() + "\"",
|
2020-01-14 11:46:47 +00:00
|
|
|
"%EVMVERSION%"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void replaceTagWithVersion(string& _input)
|
|
|
|
{
|
|
|
|
boost::algorithm::replace_all(
|
|
|
|
_input,
|
|
|
|
"%EVMVERSION%",
|
2020-01-14 16:48:17 +00:00
|
|
|
"\"" + solidity::test::CommonOptions::get().evmVersion().name() + "\""
|
2020-01-14 11:46:47 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-03-07 13:21:27 +00:00
|
|
|
void ASTJSONTest::generateTestVariants(string const& _filename)
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
2021-10-27 11:22:02 +00:00
|
|
|
string_view baseName = _filename;
|
|
|
|
baseName.remove_suffix(4);
|
|
|
|
|
2022-02-23 13:57:57 +00:00
|
|
|
const std::vector<CompilerStack::State> variantCompileStates = {
|
|
|
|
CompilerStack::State::Parsed,
|
|
|
|
CompilerStack::State::AnalysisPerformed
|
2021-10-27 11:22:02 +00:00
|
|
|
};
|
2018-08-03 17:30:18 +00:00
|
|
|
|
2022-02-23 13:57:57 +00:00
|
|
|
for (const auto state: variantCompileStates)
|
|
|
|
{
|
|
|
|
auto variant = TestVariant(baseName, state);
|
|
|
|
if (boost::filesystem::exists(variant.astFilename()))
|
|
|
|
{
|
|
|
|
variant.expectation = readFileAsString(variant.astFilename());
|
|
|
|
boost::replace_all(variant.expectation, "\r\n", "\n");
|
|
|
|
m_variants.push_back(variant);
|
|
|
|
}
|
|
|
|
}
|
2022-03-07 13:21:27 +00:00
|
|
|
}
|
2022-02-23 13:57:57 +00:00
|
|
|
|
2022-03-07 13:21:27 +00:00
|
|
|
void ASTJSONTest::fillSources(string const& _filename)
|
|
|
|
{
|
2018-08-03 17:30:18 +00:00
|
|
|
ifstream file(_filename);
|
|
|
|
if (!file)
|
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Cannot open test contract: \"" + _filename + "\"."));
|
|
|
|
file.exceptions(ios::badbit);
|
|
|
|
|
|
|
|
string sourceName;
|
|
|
|
string source;
|
|
|
|
string line;
|
|
|
|
string const delimiter("// ----");
|
2022-02-22 11:29:29 +00:00
|
|
|
string const failMarker("// failAfter:");
|
2018-08-03 17:30:18 +00:00
|
|
|
while (getline(file, line))
|
|
|
|
{
|
|
|
|
if (boost::algorithm::starts_with(line, sourceDelimiter))
|
|
|
|
{
|
|
|
|
if (!sourceName.empty())
|
|
|
|
m_sources.emplace_back(sourceName, source);
|
|
|
|
|
2020-09-03 09:39:56 +00:00
|
|
|
sourceName = line.substr(
|
|
|
|
sourceDelimiter.size(),
|
|
|
|
line.size() - " ===="s.size() - sourceDelimiter.size()
|
|
|
|
);
|
2018-08-03 17:30:18 +00:00
|
|
|
source = string();
|
|
|
|
}
|
2022-02-22 11:29:29 +00:00
|
|
|
else if (boost::algorithm::starts_with(line, failMarker))
|
|
|
|
{
|
|
|
|
string state = line.substr(failMarker.size());
|
|
|
|
boost::algorithm::trim(state);
|
|
|
|
if (m_expectedFailAfter.has_value())
|
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Duplicated \"failAfter\" directive"));
|
2022-02-23 13:57:57 +00:00
|
|
|
m_expectedFailAfter = stringToCompilerState(state);
|
2022-03-07 13:21:27 +00:00
|
|
|
|
2022-02-22 11:29:29 +00:00
|
|
|
}
|
2018-08-03 17:30:18 +00:00
|
|
|
else if (!line.empty() && !boost::algorithm::starts_with(line, delimiter))
|
|
|
|
source += line + "\n";
|
|
|
|
}
|
|
|
|
m_sources.emplace_back(sourceName.empty() ? "a" : sourceName, source);
|
|
|
|
file.close();
|
|
|
|
}
|
|
|
|
|
2022-03-07 13:21:27 +00:00
|
|
|
void ASTJSONTest::validateTestConfiguration() const
|
|
|
|
{
|
|
|
|
if (m_variants.empty())
|
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("No file with expected result found."));
|
|
|
|
|
|
|
|
if (m_expectedFailAfter.has_value())
|
|
|
|
{
|
|
|
|
auto unexpectedTestVariant = std::find_if(
|
|
|
|
m_variants.begin(), m_variants.end(),
|
|
|
|
[failAfter = m_expectedFailAfter](TestVariant v) { return v.stopAfter > failAfter; }
|
|
|
|
);
|
|
|
|
|
|
|
|
if (unexpectedTestVariant != m_variants.end())
|
|
|
|
BOOST_THROW_EXCEPTION(
|
|
|
|
runtime_error(
|
|
|
|
string("Unexpected JSON file: ") + unexpectedTestVariant->astFilename() +
|
|
|
|
" in \"failAfter: " +
|
|
|
|
compilerStateToString(m_expectedFailAfter.value()) + "\" scenario."
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTJSONTest::ASTJSONTest(string const& _filename)
|
|
|
|
{
|
|
|
|
if (!boost::algorithm::ends_with(_filename, ".sol"))
|
|
|
|
BOOST_THROW_EXCEPTION(runtime_error("Invalid test contract file name: \"" + _filename + "\"."));
|
|
|
|
|
|
|
|
generateTestVariants(_filename);
|
|
|
|
fillSources(_filename);
|
|
|
|
validateTestConfiguration();
|
|
|
|
}
|
|
|
|
|
2019-05-07 13:33:22 +00:00
|
|
|
TestCase::TestResult ASTJSONTest::run(ostream& _stream, string const& _linePrefix, bool const _formatted)
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
|
|
|
CompilerStack c;
|
|
|
|
|
2019-03-20 18:07:12 +00:00
|
|
|
StringMap sources;
|
2018-08-03 17:30:18 +00:00
|
|
|
map<string, unsigned> sourceIndices;
|
|
|
|
for (size_t i = 0; i < m_sources.size(); i++)
|
|
|
|
{
|
2019-03-20 18:07:12 +00:00
|
|
|
sources[m_sources[i].first] = m_sources[i].second;
|
2019-12-12 23:39:29 +00:00
|
|
|
sourceIndices[m_sources[i].first] = static_cast<unsigned>(i + 1);
|
2018-08-03 17:30:18 +00:00
|
|
|
}
|
2020-08-26 17:01:25 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
bool resultsMatch = true;
|
2020-07-08 20:08:50 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
for (TestVariant& variant: m_variants)
|
2020-07-08 20:08:50 +00:00
|
|
|
{
|
2021-10-27 11:22:02 +00:00
|
|
|
c.reset();
|
|
|
|
c.setSources(sources);
|
|
|
|
c.setEVMVersion(solidity::test::CommonOptions::get().evmVersion());
|
2020-07-08 20:08:50 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
if (!c.parseAndAnalyze(variant.stopAfter))
|
|
|
|
{
|
2022-02-22 11:29:29 +00:00
|
|
|
if (!m_expectedFailAfter.has_value() || m_expectedFailAfter.value() + 1 != c.state())
|
2022-02-18 08:13:33 +00:00
|
|
|
{
|
|
|
|
SourceReferenceFormatter formatter(_stream, c, _formatted, false);
|
|
|
|
formatter.printErrorInformation(c.errors());
|
|
|
|
return TestResult::FatalError;
|
|
|
|
}
|
2021-10-27 11:22:02 +00:00
|
|
|
}
|
2020-07-08 20:08:50 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
resultsMatch = resultsMatch && runTest(
|
|
|
|
variant,
|
|
|
|
sourceIndices,
|
|
|
|
c,
|
|
|
|
_stream,
|
|
|
|
_linePrefix,
|
|
|
|
_formatted
|
|
|
|
);
|
2019-05-07 13:33:22 +00:00
|
|
|
}
|
2018-08-03 17:30:18 +00:00
|
|
|
|
2020-08-26 17:01:25 +00:00
|
|
|
return resultsMatch ? TestResult::Success : TestResult::Failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ASTJSONTest::runTest(
|
2021-10-27 11:22:02 +00:00
|
|
|
TestVariant& _variant,
|
2020-08-26 17:01:25 +00:00
|
|
|
map<string, unsigned> const& _sourceIndices,
|
|
|
|
CompilerStack& _compiler,
|
|
|
|
ostream& _stream,
|
|
|
|
string const& _linePrefix,
|
|
|
|
bool const _formatted
|
|
|
|
)
|
|
|
|
{
|
2020-05-19 12:26:08 +00:00
|
|
|
if (m_sources.size() > 1)
|
2021-10-27 11:22:02 +00:00
|
|
|
_variant.result += "[\n";
|
2020-05-19 12:26:08 +00:00
|
|
|
|
2018-08-03 17:30:18 +00:00
|
|
|
for (size_t i = 0; i < m_sources.size(); i++)
|
|
|
|
{
|
|
|
|
ostringstream result;
|
2022-06-16 16:05:51 +00:00
|
|
|
ASTJsonExporter(_compiler.state(), _sourceIndices).print(result, _compiler.ast(m_sources[i].first), JsonFormat{ JsonFormat::Pretty });
|
2021-10-27 11:22:02 +00:00
|
|
|
_variant.result += result.str();
|
2018-08-03 17:30:18 +00:00
|
|
|
if (i != m_sources.size() - 1)
|
2021-10-27 11:22:02 +00:00
|
|
|
_variant.result += ",";
|
|
|
|
_variant.result += "\n";
|
2018-08-03 17:30:18 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 12:26:08 +00:00
|
|
|
if (m_sources.size() > 1)
|
2021-10-27 11:22:02 +00:00
|
|
|
_variant.result += "]\n";
|
2020-05-19 12:26:08 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
replaceTagWithVersion(_variant.expectation);
|
2018-08-03 17:30:18 +00:00
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
if (_variant.expectation != _variant.result)
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
|
|
|
string nextIndentLevel = _linePrefix + " ";
|
2020-08-26 17:01:25 +00:00
|
|
|
AnsiColorized(_stream, _formatted, {BOLD, CYAN}) <<
|
|
|
|
_linePrefix <<
|
|
|
|
"Expected result" <<
|
2021-10-27 11:22:02 +00:00
|
|
|
(!_variant.name().empty() ? " (" + _variant.name() + "):" : ":") <<
|
2020-08-26 17:01:25 +00:00
|
|
|
endl;
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
2021-10-27 11:22:02 +00:00
|
|
|
istringstream stream(_variant.expectation);
|
2018-08-03 17:30:18 +00:00
|
|
|
string line;
|
|
|
|
while (getline(stream, line))
|
|
|
|
_stream << nextIndentLevel << line << endl;
|
|
|
|
}
|
|
|
|
_stream << endl;
|
2020-01-14 11:46:47 +00:00
|
|
|
|
2020-08-26 17:01:25 +00:00
|
|
|
AnsiColorized(_stream, _formatted, {BOLD, CYAN}) <<
|
|
|
|
_linePrefix <<
|
|
|
|
"Obtained result" <<
|
2021-10-27 11:22:02 +00:00
|
|
|
(!_variant.name().empty() ? " (" + _variant.name() + "):" : ":") <<
|
2020-08-26 17:01:25 +00:00
|
|
|
endl;
|
2018-08-03 17:30:18 +00:00
|
|
|
{
|
2021-10-27 11:22:02 +00:00
|
|
|
istringstream stream(_variant.result);
|
2018-08-03 17:30:18 +00:00
|
|
|
string line;
|
|
|
|
while (getline(stream, line))
|
|
|
|
_stream << nextIndentLevel << line << endl;
|
|
|
|
}
|
|
|
|
_stream << endl;
|
2020-08-26 17:01:25 +00:00
|
|
|
return false;
|
2018-08-03 17:30:18 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 20:08:50 +00:00
|
|
|
return true;
|
2018-08-03 17:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ASTJSONTest::printSource(ostream& _stream, string const& _linePrefix, bool const) const
|
|
|
|
{
|
|
|
|
for (auto const& source: m_sources)
|
|
|
|
{
|
|
|
|
if (m_sources.size() > 1 || source.first != "a")
|
2020-11-25 00:41:26 +00:00
|
|
|
_stream << _linePrefix << sourceDelimiter << source.first << " ====" << endl << endl;
|
2018-08-03 17:30:18 +00:00
|
|
|
stringstream stream(source.second);
|
|
|
|
string line;
|
|
|
|
while (getline(stream, line))
|
|
|
|
_stream << _linePrefix << line << endl;
|
|
|
|
_stream << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ASTJSONTest::printUpdatedExpectations(std::ostream&, std::string const&) const
|
|
|
|
{
|
2021-10-27 11:22:02 +00:00
|
|
|
for (TestVariant const& variant: m_variants)
|
|
|
|
updateExpectation(
|
|
|
|
variant.astFilename(),
|
|
|
|
variant.result,
|
|
|
|
variant.name().empty() ? "" : variant.name() + " "
|
|
|
|
);
|
2020-08-26 17:01:25 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 11:22:02 +00:00
|
|
|
void ASTJSONTest::updateExpectation(string const& _filename, string const& _expectation, string const& _variant) const
|
2020-08-26 17:01:25 +00:00
|
|
|
{
|
|
|
|
ofstream file(_filename.c_str());
|
2021-10-27 11:22:02 +00:00
|
|
|
if (!file) BOOST_THROW_EXCEPTION(runtime_error("Cannot write " + _variant + "AST expectation to \"" + _filename + "\"."));
|
2018-08-03 17:30:18 +00:00
|
|
|
file.exceptions(ios::badbit);
|
2020-01-14 11:46:47 +00:00
|
|
|
|
2020-08-26 17:01:25 +00:00
|
|
|
string replacedResult = _expectation;
|
2020-01-14 11:46:47 +00:00
|
|
|
replaceVersionWithTag(replacedResult);
|
|
|
|
|
|
|
|
file << replacedResult;
|
2018-08-03 17:30:18 +00:00
|
|
|
file.flush();
|
|
|
|
file.close();
|
|
|
|
}
|