2017-08-28 18:40:38 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Framework for testing features from the analysis phase of compiler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <test/libsolidity/ErrorCheck.h>
|
|
|
|
|
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
|
|
|
class Type;
|
|
|
|
class FunctionType;
|
|
|
|
using TypePointer = std::shared_ptr<Type const>;
|
|
|
|
using FunctionTypePointer = std::shared_ptr<FunctionType const>;
|
|
|
|
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
class AnalysisFramework
|
|
|
|
{
|
|
|
|
|
|
|
|
protected:
|
2018-11-14 16:11:55 +00:00
|
|
|
virtual std::pair<SourceUnit const*, langutil::ErrorList>
|
2017-08-28 18:40:38 +00:00
|
|
|
parseAnalyseAndReturnError(
|
|
|
|
std::string const& _source,
|
|
|
|
bool _reportWarnings = false,
|
|
|
|
bool _insertVersionPragma = true,
|
|
|
|
bool _allowMultipleErrors = false
|
|
|
|
);
|
2018-05-02 11:29:16 +00:00
|
|
|
virtual ~AnalysisFramework() = default;
|
2017-08-28 18:40:38 +00:00
|
|
|
|
|
|
|
SourceUnit const* parseAndAnalyse(std::string const& _source);
|
|
|
|
bool success(std::string const& _source);
|
2018-11-14 16:11:55 +00:00
|
|
|
langutil::ErrorList expectError(std::string const& _source, bool _warning = false, bool _allowMultiple = false);
|
2017-08-28 18:40:38 +00:00
|
|
|
|
2018-04-03 10:05:26 +00:00
|
|
|
std::string formatErrors() const;
|
2018-11-14 16:11:55 +00:00
|
|
|
std::string formatError(langutil::Error const& _error) const;
|
2017-08-28 18:40:38 +00:00
|
|
|
|
2017-08-30 21:44:46 +00:00
|
|
|
static ContractDefinition const* retrieveContractByName(SourceUnit const& _source, std::string const& _name);
|
|
|
|
static FunctionTypePointer retrieveFunctionBySignature(
|
2017-08-28 18:40:38 +00:00
|
|
|
ContractDefinition const& _contract,
|
|
|
|
std::string const& _signature
|
|
|
|
);
|
|
|
|
|
2018-04-03 10:05:26 +00:00
|
|
|
// filter out the warnings in m_warningsToFilter or all warnings if _includeWarnings is false
|
2018-11-14 16:11:55 +00:00
|
|
|
langutil::ErrorList filterErrors(langutil::ErrorList const& _errorList, bool _includeWarnings) const;
|
2018-04-03 10:05:26 +00:00
|
|
|
|
2017-09-28 08:59:02 +00:00
|
|
|
std::vector<std::string> m_warningsToFilter = {"This is a pre-release compiler version"};
|
2017-08-28 18:40:38 +00:00
|
|
|
dev::solidity::CompilerStack m_compiler;
|
|
|
|
};
|
|
|
|
|
2018-02-09 22:54:05 +00:00
|
|
|
// Asserts that the compilation down to typechecking
|
|
|
|
// emits multiple errors of different types and messages, provided in the second argument.
|
|
|
|
#define CHECK_ALLOW_MULTI(text, expectations) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
ErrorList errors = expectError((text), true, true); \
|
|
|
|
auto message = searchErrors(errors, (expectations)); \
|
|
|
|
BOOST_CHECK_MESSAGE(message.empty(), message); \
|
|
|
|
} while(0)
|
2017-08-28 18:40:38 +00:00
|
|
|
|
2018-02-09 22:54:05 +00:00
|
|
|
#define CHECK_ERROR_OR_WARNING(text, typ, substrings, warning, allowMulti) \
|
2017-08-28 18:40:38 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2018-02-09 22:54:05 +00:00
|
|
|
ErrorList errors = expectError((text), (warning), (allowMulti)); \
|
|
|
|
std::vector<std::pair<Error::Type, std::string>> expectations; \
|
|
|
|
for (auto const& str: substrings) \
|
|
|
|
expectations.emplace_back((Error::Type::typ), str); \
|
|
|
|
auto message = searchErrors(errors, expectations); \
|
|
|
|
BOOST_CHECK_MESSAGE(message.empty(), message); \
|
2017-08-28 18:40:38 +00:00
|
|
|
} while(0)
|
|
|
|
|
|
|
|
// [checkError(text, type, substring)] asserts that the compilation down to typechecking
|
|
|
|
// emits an error of type [type] and with a message containing [substring].
|
|
|
|
#define CHECK_ERROR(text, type, substring) \
|
2018-02-09 22:54:05 +00:00
|
|
|
CHECK_ERROR_OR_WARNING(text, type, std::vector<std::string>{(substring)}, false, false)
|
2017-08-28 18:40:38 +00:00
|
|
|
|
|
|
|
// [checkError(text, type, substring)] asserts that the compilation down to typechecking
|
2018-02-09 22:54:05 +00:00
|
|
|
// emits multiple errors of the same type [type] and with a messages containing [substrings].
|
|
|
|
// Because of the limitations of the preprocessor, you cannot use {{T1, "abc"}, {T2, "def"}} as arguments,
|
|
|
|
// but have to replace them by (std::vector<std::pair<Error::Type, std::string>>{"abc", "def"})
|
|
|
|
// (note the parentheses)
|
|
|
|
#define CHECK_ERROR_ALLOW_MULTI(text, type, substrings) \
|
|
|
|
CHECK_ERROR_OR_WARNING(text, type, substrings, false, true)
|
2017-08-28 18:40:38 +00:00
|
|
|
|
|
|
|
// [checkWarning(text, substring)] asserts that the compilation down to typechecking
|
|
|
|
// emits a warning and with a message containing [substring].
|
|
|
|
#define CHECK_WARNING(text, substring) \
|
2018-02-09 22:54:05 +00:00
|
|
|
CHECK_ERROR_OR_WARNING(text, Warning, std::vector<std::string>{(substring)}, true, false)
|
2017-08-28 18:40:38 +00:00
|
|
|
|
|
|
|
// [checkWarningAllowMulti(text, substring)] aserts that the compilation down to typechecking
|
|
|
|
// emits a warning and with a message containing [substring].
|
2018-02-09 22:54:05 +00:00
|
|
|
// Because of the limitations of the preprocessor, you cannot use {"abc", "def"} as arguments,
|
|
|
|
// but have to replace them by (std::vector<std::string>{"abc", "def"}) (note the parentheses)
|
|
|
|
#define CHECK_WARNING_ALLOW_MULTI(text, substrings) \
|
|
|
|
CHECK_ERROR_OR_WARNING(text, Warning, substrings, true, true)
|
2017-08-28 18:40:38 +00:00
|
|
|
|
|
|
|
// [checkSuccess(text)] asserts that the compilation down to typechecking succeeds.
|
|
|
|
#define CHECK_SUCCESS(text) do { BOOST_CHECK(success((text))); } while(0)
|
|
|
|
|
|
|
|
#define CHECK_SUCCESS_NO_WARNINGS(text) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
auto sourceAndError = parseAnalyseAndReturnError((text), true); \
|
2017-09-28 08:59:15 +00:00
|
|
|
std::string message; \
|
2018-02-09 22:54:05 +00:00
|
|
|
if (!sourceAndError.second.empty()) \
|
|
|
|
message = formatErrors();\
|
|
|
|
BOOST_CHECK_MESSAGE(sourceAndError.second.empty(), message); \
|
2017-08-28 18:40:38 +00:00
|
|
|
} \
|
|
|
|
while(0)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|