-
Notifications
You must be signed in to change notification settings - Fork 6.1k
/
Copy pathTestCase.cpp
170 lines (144 loc) · 5.72 KB
/
TestCase.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
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/Common.h>
#include <test/TestCase.h>
#include <libsolutil/AnsiColorized.h>
#include <libsolutil/StringUtils.h>
#include <boost/algorithm/string/predicate.hpp>
#include <iostream>
#include <stdexcept>
using namespace solidity;
using namespace solidity::frontend;
using namespace solidity::frontend::test;
using namespace solidity::util;
void TestCase::printSettings(std::ostream& _stream, const std::string& _linePrefix, const bool)
{
auto& settings = m_reader.settings();
if (settings.empty())
return;
_stream << _linePrefix << "// ====" << std::endl;
for (auto const& setting: settings)
_stream << _linePrefix << "// " << setting.first << ": " << setting.second << std::endl;
}
void TestCase::printUpdatedSettings(std::ostream& _stream, std::string const& _linePrefix)
{
printSettings(_stream, _linePrefix);
}
bool TestCase::isTestFilename(boost::filesystem::path const& _filename)
{
std::string extension = _filename.extension().string();
return (extension == ".sol" || extension == ".yul" || extension == ".stack") &&
!boost::starts_with(_filename.string(), "~") &&
!boost::starts_with(_filename.string(), ".");
}
bool TestCase::shouldRun()
{
m_reader.ensureAllSettingsRead();
return m_shouldRun;
}
void TestCase::expect(std::string::iterator& _it, std::string::iterator _end, std::string::value_type _c)
{
if (_it == _end || *_it != _c)
BOOST_THROW_EXCEPTION(std::runtime_error(std::string("Invalid test expectation. Expected: \"") + _c + "\"."));
++_it;
}
void TestCase::printSource(std::ostream& _stream, std::string const& _linePrefix, bool const) const
{
printPrefixed(_stream, m_source, _linePrefix);
}
void TestCase::printUpdatedExpectations(std::ostream& _stream, std::string const& _linePrefix) const
{
printPrefixed(_stream, m_obtainedResult, _linePrefix);
}
TestCase::TestResult TestCase::checkResult(std::ostream& _stream, const std::string& _linePrefix, bool const _formatted)
{
if (m_expectation != m_obtainedResult)
{
std::string nextIndentLevel = _linePrefix + " ";
util::AnsiColorized(_stream, _formatted, {util::formatting::BOLD, util::formatting::CYAN})
<< _linePrefix << "Expected result:" << std::endl;
// TODO could compute a simple diff with highlighted lines
printPrefixed(_stream, m_expectation, nextIndentLevel);
util::AnsiColorized(_stream, _formatted, {util::formatting::BOLD, util::formatting::CYAN})
<< _linePrefix << "Obtained result:" << std::endl;
printPrefixed(_stream, m_obtainedResult, nextIndentLevel);
return TestResult::Failure;
}
return TestResult::Success;
}
void EVMVersionRestrictedTestCase::processEVMVersionSetting()
{
std::string versionString = m_reader.stringSetting("EVMVersion", "any");
if (versionString == "any")
return;
std::string comparator;
size_t versionBegin = 0;
for (auto character: versionString)
if (!isalpha(character, std::locale::classic()))
{
comparator += character;
versionBegin++;
}
else
break;
versionString = versionString.substr(versionBegin);
std::optional<langutil::EVMVersion> version;
if (versionString == "current")
version = std::make_optional<langutil::EVMVersion>();
else
version = langutil::EVMVersion::fromString(versionString);
if (!version)
BOOST_THROW_EXCEPTION(std::runtime_error{"Invalid EVM version: \"" + versionString + "\""});
langutil::EVMVersion evmVersion = solidity::test::CommonOptions::get().evmVersion();
bool comparisonResult;
if (comparator == ">")
comparisonResult = evmVersion > version;
else if (comparator == ">=")
comparisonResult = evmVersion >= version;
else if (comparator == "<")
comparisonResult = evmVersion < version;
else if (comparator == "<=")
comparisonResult = evmVersion <= version;
else if (comparator == "=")
comparisonResult = evmVersion == version;
else if (comparator == "!")
comparisonResult = !(evmVersion == version);
else
BOOST_THROW_EXCEPTION(std::runtime_error{"Invalid EVM comparator: \"" + comparator + "\""});
if (!comparisonResult)
m_shouldRun = false;
}
void EVMVersionRestrictedTestCase::processBytecodeFormatSetting()
{
std::optional<uint8_t> eofVersion = solidity::test::CommonOptions::get().eofVersion();
// EOF only available since Osaka
solAssert(!eofVersion.has_value() || solidity::test::CommonOptions::get().evmVersion().supportsEOF());
std::string bytecodeFormatString = m_reader.stringSetting("bytecodeFormat", "legacy,>=EOFv1");
if (bytecodeFormatString == "legacy,>=EOFv1" || bytecodeFormatString == ">=EOFv1,legacy")
return;
// TODO: This is naive implementation because for now we support only one EOF version.
if (bytecodeFormatString == "legacy" && eofVersion.has_value())
m_shouldRun = false;
else if (bytecodeFormatString == ">=EOFv1" && !eofVersion.has_value())
m_shouldRun = false;
else if (bytecodeFormatString != "legacy" && bytecodeFormatString != ">=EOFv1" )
BOOST_THROW_EXCEPTION(std::runtime_error{"Invalid bytecodeFormat flag: \"" + bytecodeFormatString + "\""});
}
EVMVersionRestrictedTestCase::EVMVersionRestrictedTestCase(std::string const& _filename):
TestCase(_filename)
{
processEVMVersionSetting();
processBytecodeFormatSetting();
}