2014-12-11 15:37:17 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-12-11 15:37:17 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-12-11 15:37:17 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-12-11 15:37:17 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-12-11 15:37:17 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2014-12-11 15:37:17 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Framework for executing Solidity contracts and testing them against C++ implementation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2017-09-20 12:23:00 +00:00
|
|
|
#include <test/ExecutionFramework.h>
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2020-01-22 14:48:56 +00:00
|
|
|
#include <libsolidity/interface/DebugSettings.h>
|
2019-03-27 18:45:53 +00:00
|
|
|
|
|
|
|
#include <libyul/AssemblyStack.h>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2014-12-11 15:37:17 +00:00
|
|
|
{
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
class SolidityExecutionFramework: public solidity::test::ExecutionFramework
|
2014-12-11 15:37:17 +00:00
|
|
|
{
|
2016-06-08 17:22:36 +00:00
|
|
|
|
2014-12-11 15:37:17 +00:00
|
|
|
public:
|
2020-03-11 02:07:11 +00:00
|
|
|
SolidityExecutionFramework(): m_showMetadata(solidity::test::CommonOptions::get().showMetadata) {}
|
2020-06-05 23:10:48 +00:00
|
|
|
explicit SolidityExecutionFramework(langutil::EVMVersion _evmVersion, std::vector<boost::filesystem::path> const& _vmPaths):
|
|
|
|
ExecutionFramework(_evmVersion, _vmPaths), m_showMetadata(solidity::test::CommonOptions::get().showMetadata)
|
2019-07-17 08:24:23 +00:00
|
|
|
{}
|
2014-12-11 15:37:17 +00:00
|
|
|
|
2020-03-31 23:58:22 +00:00
|
|
|
bytes const& compileAndRunWithoutCheck(
|
2020-06-18 10:31:55 +00:00
|
|
|
std::map<std::string, std::string> const& _sourceCode,
|
2015-06-18 12:41:06 +00:00
|
|
|
u256 const& _value = 0,
|
|
|
|
std::string const& _contractName = "",
|
2020-06-18 10:31:55 +00:00
|
|
|
bytes const& _arguments = {},
|
|
|
|
std::map<std::string, solidity::test::Address> const& _libraryAddresses = {}
|
2016-11-28 00:21:01 +00:00
|
|
|
) override
|
2018-02-27 18:28:48 +00:00
|
|
|
{
|
2020-06-18 10:31:55 +00:00
|
|
|
bytes bytecode = multiSourceCompileContract(_sourceCode, _contractName, _libraryAddresses);
|
2018-02-27 18:28:48 +00:00
|
|
|
sendMessage(bytecode + _arguments, true, _value);
|
|
|
|
return m_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes compileContract(
|
|
|
|
std::string const& _sourceCode,
|
|
|
|
std::string const& _contractName = "",
|
2020-06-18 10:31:55 +00:00
|
|
|
std::map<std::string, solidity::test::Address> const& _libraryAddresses = {}
|
|
|
|
);
|
|
|
|
|
|
|
|
bytes multiSourceCompileContract(
|
|
|
|
std::map<std::string, std::string> const& _sources,
|
|
|
|
std::string const& _contractName = "",
|
|
|
|
std::map<std::string, solidity::test::Address> const& _libraryAddresses = {}
|
2019-05-07 15:25:02 +00:00
|
|
|
);
|
2015-06-01 11:03:29 +00:00
|
|
|
|
2020-11-19 15:58:41 +00:00
|
|
|
/// Returns @param _sourceCode prefixed with the version pragma and the abi coder v1 pragma,
|
|
|
|
/// the latter only if it is forced.
|
2020-06-18 10:31:55 +00:00
|
|
|
static std::string addPreamble(std::string const& _sourceCode);
|
2015-02-11 13:32:46 +00:00
|
|
|
protected:
|
2020-06-05 23:10:48 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
solidity::frontend::CompilerStack m_compiler;
|
2019-03-27 18:45:53 +00:00
|
|
|
bool m_compileViaYul = false;
|
2020-06-05 23:10:48 +00:00
|
|
|
bool m_compileToEwasm = false;
|
2020-03-11 02:07:11 +00:00
|
|
|
bool m_showMetadata = false;
|
2020-01-22 14:48:56 +00:00
|
|
|
RevertStrings m_revertStrings = RevertStrings::Default;
|
2014-12-11 15:37:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespaces
|