mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
205 lines
6.1 KiB
C++
205 lines
6.1 KiB
C++
/*
|
|
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
|
|
|
|
#include <test/libsolidity/ASTPropertyTest.h>
|
|
#include <test/Common.h>
|
|
|
|
#include <libsolidity/ast/ASTJsonExporter.h>
|
|
#include <libsolidity/interface/CompilerStack.h>
|
|
|
|
#include <liblangutil/Common.h>
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
|
#include <libsolutil/JSON.h>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/throw_exception.hpp>
|
|
|
|
#include <range/v3/algorithm/find_if.hpp>
|
|
#include <range/v3/range/conversion.hpp>
|
|
#include <range/v3/view/split.hpp>
|
|
|
|
#include <queue>
|
|
|
|
using namespace solidity::util;
|
|
using namespace solidity::langutil;
|
|
using namespace solidity::frontend;
|
|
using namespace solidity::frontend::test;
|
|
using namespace solidity;
|
|
using namespace std;
|
|
|
|
ASTPropertyTest::ASTPropertyTest(string const& _filename):
|
|
TestCase(_filename)
|
|
{
|
|
if (!boost::algorithm::ends_with(_filename, ".sol"))
|
|
BOOST_THROW_EXCEPTION(runtime_error("Not a Solidity file: \"" + _filename + "\"."));
|
|
|
|
m_source = m_reader.source();
|
|
readExpectations();
|
|
soltestAssert(m_tests.size() > 0, "No tests specified in " + _filename);
|
|
}
|
|
|
|
string ASTPropertyTest::formatExpectations(bool _obtainedResult)
|
|
{
|
|
string expectations;
|
|
for (string const& testId: m_testOrder)
|
|
{
|
|
soltestAssert(m_tests.count(testId) > 0);
|
|
expectations +=
|
|
testId +
|
|
": " +
|
|
(_obtainedResult ? m_tests[testId].obtainedValue : m_tests[testId].expectedValue)
|
|
+ "\n";
|
|
}
|
|
return expectations;
|
|
}
|
|
|
|
vector<StringPair> ASTPropertyTest::readKeyValuePairs(string const& _input)
|
|
{
|
|
vector<StringPair> result;
|
|
for (string line: _input | ranges::views::split('\n') | ranges::to<vector<string>>)
|
|
{
|
|
boost::trim(line);
|
|
if (line.empty())
|
|
continue;
|
|
|
|
soltestAssert(
|
|
ranges::all_of(line, [](char c) { return isprint(c); }),
|
|
"Non-printable character(s) found in property test: " + line
|
|
);
|
|
|
|
auto colonPosition = line.find_first_of(':');
|
|
soltestAssert(colonPosition != string::npos, "Property test is missing a colon: " + line);
|
|
|
|
StringPair pair{
|
|
boost::trim_copy(line.substr(0, colonPosition)),
|
|
boost::trim_copy(line.substr(colonPosition + 1))
|
|
};
|
|
soltestAssert(!get<0>(pair).empty() != false, "Empty key in property test: " + line);
|
|
soltestAssert(!get<1>(pair).empty() != false, "Empty value in property test: " + line);
|
|
|
|
result.push_back(pair);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void ASTPropertyTest::readExpectations()
|
|
{
|
|
for (auto const& [testId, testExpectation]: readKeyValuePairs(m_reader.simpleExpectations()))
|
|
{
|
|
soltestAssert(m_tests.count(testId) == 0, "More than one expectation for test \"" + testId + "\"");
|
|
m_tests.emplace(testId, Test{"", testExpectation, ""});
|
|
m_testOrder.push_back(testId);
|
|
}
|
|
m_expectation = formatExpectations(false /* _obtainedResult */);
|
|
}
|
|
|
|
void ASTPropertyTest::extractTestsFromAST(Json::Value const& _astJson)
|
|
{
|
|
queue<Json::Value> nodesToVisit;
|
|
nodesToVisit.push(_astJson);
|
|
|
|
while (!nodesToVisit.empty())
|
|
{
|
|
Json::Value& node = nodesToVisit.front();
|
|
|
|
if (node.isArray())
|
|
for (auto&& member: node)
|
|
nodesToVisit.push(member);
|
|
else if (node.isObject())
|
|
for (string const& memberName: node.getMemberNames())
|
|
{
|
|
if (memberName != "documentation")
|
|
{
|
|
nodesToVisit.push(node[memberName]);
|
|
continue;
|
|
}
|
|
|
|
string nodeDocstring = node["documentation"].isObject() ?
|
|
node["documentation"]["text"].asString() :
|
|
node["documentation"].asString();
|
|
soltestAssert(!nodeDocstring.empty());
|
|
|
|
vector<StringPair> pairs = readKeyValuePairs(nodeDocstring);
|
|
if (pairs.empty())
|
|
continue;
|
|
|
|
for (auto const& [testId, testedProperty]: pairs)
|
|
{
|
|
soltestAssert(
|
|
m_tests.count(testId) > 0,
|
|
"Test \"" + testId + "\" does not have a corresponding expected value."
|
|
);
|
|
soltestAssert(
|
|
m_tests[testId].property.empty(),
|
|
"Test \"" + testId + "\" was already defined before."
|
|
);
|
|
m_tests[testId].property = testedProperty;
|
|
|
|
soltestAssert(node.isMember("nodeType"));
|
|
optional<Json::Value> propertyNode = jsonValueByPath(node, testedProperty);
|
|
soltestAssert(
|
|
propertyNode.has_value(),
|
|
node["nodeType"].asString() + " node does not have a property named \""s + testedProperty + "\""
|
|
);
|
|
soltestAssert(
|
|
!propertyNode->isObject() && !propertyNode->isArray(),
|
|
"Property \"" + testedProperty + "\" is an object or an array."
|
|
);
|
|
m_tests[testId].obtainedValue = propertyNode->asString();
|
|
}
|
|
}
|
|
|
|
nodesToVisit.pop();
|
|
}
|
|
|
|
auto firstTestWithoutProperty = ranges::find_if(
|
|
m_tests,
|
|
[&](auto const& _testCase) { return _testCase.second.property.empty(); }
|
|
);
|
|
soltestAssert(
|
|
firstTestWithoutProperty == ranges::end(m_tests),
|
|
"AST property not defined for test \"" + firstTestWithoutProperty->first + "\""
|
|
);
|
|
|
|
m_obtainedResult = formatExpectations(true /* _obtainedResult */);
|
|
}
|
|
|
|
TestCase::TestResult ASTPropertyTest::run(ostream& _stream, string const& _linePrefix, bool const _formatted)
|
|
{
|
|
CompilerStack compiler;
|
|
|
|
compiler.setSources({{
|
|
"A",
|
|
"pragma solidity >=0.0;\n// SPDX-License-Identifier: GPL-3.0\n" + m_source
|
|
}});
|
|
compiler.setEVMVersion(solidity::test::CommonOptions::get().evmVersion());
|
|
compiler.setOptimiserSettings(solidity::test::CommonOptions::get().optimize);
|
|
if (!compiler.parseAndAnalyze())
|
|
BOOST_THROW_EXCEPTION(runtime_error(
|
|
"Parsing contract failed" +
|
|
SourceReferenceFormatter::formatErrorInformation(compiler.errors(), compiler, _formatted)
|
|
));
|
|
|
|
Json::Value astJson = ASTJsonExporter(compiler.state()).toJson(compiler.ast("A"));
|
|
soltestAssert(astJson);
|
|
|
|
extractTestsFromAST(astJson);
|
|
|
|
return checkResult(_stream, _linePrefix, _formatted);
|
|
}
|