mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
253 lines
7.0 KiB
C++
253 lines
7.0 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/>.
|
|
*/
|
|
|
|
#include <test/CommonSyntaxTest.h>
|
|
#include <test/Common.h>
|
|
#include <test/TestCase.h>
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <boost/throw_exception.hpp>
|
|
#include <fstream>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
|
|
using namespace std;
|
|
using namespace solidity;
|
|
using namespace solidity::util;
|
|
using namespace solidity::util::formatting;
|
|
using namespace solidity::langutil;
|
|
using namespace solidity::frontend;
|
|
using namespace solidity::frontend::test;
|
|
using namespace solidity::test;
|
|
using namespace boost::unit_test;
|
|
namespace fs = boost::filesystem;
|
|
|
|
namespace
|
|
{
|
|
|
|
int parseUnsignedInteger(string::iterator& _it, string::iterator _end)
|
|
{
|
|
if (_it == _end || !isdigit(*_it))
|
|
throw runtime_error("Invalid test expectation. Source location expected.");
|
|
int result = 0;
|
|
while (_it != _end && isdigit(*_it))
|
|
{
|
|
result *= 10;
|
|
result += *_it - '0';
|
|
++_it;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
}
|
|
|
|
CommonSyntaxTest::CommonSyntaxTest(string const& _filename, langutil::EVMVersion _evmVersion):
|
|
EVMVersionRestrictedTestCase(_filename),
|
|
m_evmVersion(_evmVersion)
|
|
{
|
|
m_sources = m_reader.sources();
|
|
m_expectations = parseExpectations(m_reader.stream());
|
|
}
|
|
|
|
TestCase::TestResult CommonSyntaxTest::run(ostream& _stream, string const& _linePrefix, bool _formatted)
|
|
{
|
|
parseAndAnalyze();
|
|
|
|
return conclude(_stream, _linePrefix, _formatted);
|
|
}
|
|
|
|
TestCase::TestResult CommonSyntaxTest::conclude(ostream& _stream, string const& _linePrefix, bool _formatted)
|
|
{
|
|
if (m_expectations == m_errorList)
|
|
return TestResult::Success;
|
|
|
|
printExpectationAndError(_stream, _linePrefix, _formatted);
|
|
return TestResult::Failure;
|
|
}
|
|
|
|
void CommonSyntaxTest::printExpectationAndError(ostream& _stream, string const& _linePrefix, bool _formatted)
|
|
{
|
|
string nextIndentLevel = _linePrefix + " ";
|
|
AnsiColorized(_stream, _formatted, {BOLD, CYAN}) << _linePrefix << "Expected result:" << endl;
|
|
printErrorList(_stream, m_expectations, nextIndentLevel, _formatted);
|
|
AnsiColorized(_stream, _formatted, {BOLD, CYAN}) << _linePrefix << "Obtained result:" << endl;
|
|
printErrorList(_stream, m_errorList, nextIndentLevel, _formatted);
|
|
}
|
|
|
|
void CommonSyntaxTest::printSource(ostream& _stream, string const& _linePrefix, bool _formatted) const
|
|
{
|
|
if (m_sources.empty())
|
|
return;
|
|
|
|
bool outputSourceNames = true;
|
|
if (m_sources.size() == 1 && m_sources.begin()->first.empty())
|
|
outputSourceNames = false;
|
|
|
|
if (_formatted)
|
|
for (auto const& [name, source]: m_sources)
|
|
{
|
|
if (source.empty())
|
|
continue;
|
|
|
|
if (outputSourceNames)
|
|
_stream << _linePrefix << formatting::CYAN << "==== Source: " << name << " ====" << formatting::RESET << endl;
|
|
vector<char const*> sourceFormatting(source.length(), formatting::RESET);
|
|
for (auto const& error: m_errorList)
|
|
if (error.sourceName == name && error.locationStart >= 0 && error.locationEnd >= 0)
|
|
{
|
|
assert(static_cast<size_t>(error.locationStart) <= source.length());
|
|
assert(static_cast<size_t>(error.locationEnd) <= source.length());
|
|
bool isWarning = error.type == "Warning";
|
|
for (int i = error.locationStart; i < error.locationEnd; i++)
|
|
if (isWarning)
|
|
{
|
|
if (sourceFormatting[i] == formatting::RESET)
|
|
sourceFormatting[i] = formatting::ORANGE_BACKGROUND_256;
|
|
}
|
|
else
|
|
sourceFormatting[i] = formatting::RED_BACKGROUND;
|
|
}
|
|
|
|
_stream << _linePrefix << sourceFormatting.front() << source.front();
|
|
for (size_t i = 1; i < source.length(); i++)
|
|
{
|
|
if (sourceFormatting[i] != sourceFormatting[i - 1])
|
|
_stream << sourceFormatting[i];
|
|
if (source[i] != '\n')
|
|
_stream << source[i];
|
|
else
|
|
{
|
|
_stream << formatting::RESET << endl;
|
|
if (i + 1 < source.length())
|
|
_stream << _linePrefix << sourceFormatting[i];
|
|
}
|
|
}
|
|
_stream << formatting::RESET;
|
|
}
|
|
else
|
|
for (auto const& [name, source]: m_sources)
|
|
{
|
|
if (outputSourceNames)
|
|
_stream << _linePrefix << "==== Source: " + name << " ====" << endl;
|
|
stringstream stream(source);
|
|
string line;
|
|
while (getline(stream, line))
|
|
_stream << _linePrefix << line << endl;
|
|
}
|
|
}
|
|
|
|
void CommonSyntaxTest::printErrorList(
|
|
ostream& _stream,
|
|
vector<SyntaxTestError> const& _errorList,
|
|
string const& _linePrefix,
|
|
bool _formatted
|
|
)
|
|
{
|
|
if (_errorList.empty())
|
|
AnsiColorized(_stream, _formatted, {BOLD, GREEN}) << _linePrefix << "Success" << endl;
|
|
else
|
|
for (auto const& error: _errorList)
|
|
{
|
|
{
|
|
AnsiColorized scope(_stream, _formatted, {BOLD, (error.type == "Warning") ? YELLOW : RED});
|
|
_stream << _linePrefix;
|
|
_stream << error.type << ": ";
|
|
}
|
|
if (!error.sourceName.empty() || error.locationStart >= 0 || error.locationEnd >= 0)
|
|
{
|
|
_stream << "(";
|
|
if (!error.sourceName.empty())
|
|
_stream << error.sourceName << ":";
|
|
if (error.locationStart >= 0)
|
|
_stream << error.locationStart;
|
|
_stream << "-";
|
|
if (error.locationEnd >= 0)
|
|
_stream << error.locationEnd;
|
|
_stream << "): ";
|
|
}
|
|
_stream << error.message << endl;
|
|
}
|
|
}
|
|
|
|
string CommonSyntaxTest::errorMessage(Exception const& _e)
|
|
{
|
|
if (_e.comment() && !_e.comment()->empty())
|
|
return boost::replace_all_copy(*_e.comment(), "\n", "\\n");
|
|
else
|
|
return "NONE";
|
|
}
|
|
|
|
vector<SyntaxTestError> CommonSyntaxTest::parseExpectations(istream& _stream)
|
|
{
|
|
vector<SyntaxTestError> expectations;
|
|
string line;
|
|
while (getline(_stream, line))
|
|
{
|
|
auto it = line.begin();
|
|
|
|
skipSlashes(it, line.end());
|
|
skipWhitespace(it, line.end());
|
|
|
|
if (it == line.end()) continue;
|
|
|
|
auto typeBegin = it;
|
|
while (it != line.end() && *it != ':')
|
|
++it;
|
|
string errorType(typeBegin, it);
|
|
|
|
// skip colon
|
|
if (it != line.end()) it++;
|
|
|
|
skipWhitespace(it, line.end());
|
|
|
|
int locationStart = -1;
|
|
int locationEnd = -1;
|
|
std::string sourceName;
|
|
|
|
if (it != line.end() && *it == '(')
|
|
{
|
|
++it;
|
|
if (it != line.end() && !isdigit(*it))
|
|
{
|
|
auto sourceNameStart = it;
|
|
while (it != line.end() && *it != ':')
|
|
++it;
|
|
sourceName = std::string(sourceNameStart, it);
|
|
expect(it, line.end(), ':');
|
|
}
|
|
locationStart = parseUnsignedInteger(it, line.end());
|
|
expect(it, line.end(), '-');
|
|
locationEnd = parseUnsignedInteger(it, line.end());
|
|
expect(it, line.end(), ')');
|
|
expect(it, line.end(), ':');
|
|
}
|
|
|
|
skipWhitespace(it, line.end());
|
|
|
|
string errorMessage(it, line.end());
|
|
expectations.emplace_back(SyntaxTestError{
|
|
move(errorType),
|
|
move(errorMessage),
|
|
move(sourceName),
|
|
locationStart,
|
|
locationEnd
|
|
});
|
|
}
|
|
return expectations;
|
|
}
|