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
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @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>
|
2019-03-27 18:45:53 +00:00
|
|
|
|
|
|
|
#include <libyul/AssemblyStack.h>
|
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/Exceptions.h>
|
2018-11-24 11:33:36 +00:00
|
|
|
#include <liblangutil/SourceReferenceFormatter.h>
|
2014-12-11 15:37:17 +00:00
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2014-12-11 15:37:17 +00:00
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
2016-11-28 00:58:07 +00:00
|
|
|
class SolidityExecutionFramework: public dev::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:
|
2016-11-28 00:21:01 +00:00
|
|
|
SolidityExecutionFramework();
|
2019-03-18 13:08:56 +00:00
|
|
|
SolidityExecutionFramework(std::string const& _ipcPath, langutil::EVMVersion _evmVersion);
|
2014-12-11 15:37:17 +00:00
|
|
|
|
2016-11-28 00:21:01 +00:00
|
|
|
virtual bytes const& compileAndRunWithoutCheck(
|
2015-06-18 12:41:06 +00:00
|
|
|
std::string const& _sourceCode,
|
|
|
|
u256 const& _value = 0,
|
|
|
|
std::string const& _contractName = "",
|
2015-09-10 17:40:07 +00:00
|
|
|
bytes const& _arguments = bytes(),
|
2016-11-28 00:58:07 +00:00
|
|
|
std::map<std::string, dev::test::Address> const& _libraryAddresses = std::map<std::string, dev::test::Address>()
|
2016-11-28 00:21:01 +00:00
|
|
|
) override
|
2018-02-27 18:28:48 +00:00
|
|
|
{
|
|
|
|
bytes bytecode = compileContract(_sourceCode, _contractName, _libraryAddresses);
|
|
|
|
sendMessage(bytecode + _arguments, true, _value);
|
|
|
|
return m_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes compileContract(
|
|
|
|
std::string const& _sourceCode,
|
|
|
|
std::string const& _contractName = "",
|
|
|
|
std::map<std::string, dev::test::Address> const& _libraryAddresses = std::map<std::string, dev::test::Address>()
|
2019-05-07 15:25:02 +00:00
|
|
|
);
|
2015-06-01 11:03:29 +00:00
|
|
|
|
2015-02-11 13:32:46 +00:00
|
|
|
protected:
|
2015-05-19 22:27:07 +00:00
|
|
|
dev::solidity::CompilerStack m_compiler;
|
2019-03-27 18:45:53 +00:00
|
|
|
bool m_compileViaYul = false;
|
2014-12-11 15:37:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|
|
|
|
|