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>
|
|
|
|
#include <libsolidity/interface/Exceptions.h>
|
2016-08-06 11:27:29 +00:00
|
|
|
#include <libsolidity/interface/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();
|
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>()
|
|
|
|
)
|
2014-12-11 15:37:17 +00:00
|
|
|
{
|
2016-08-19 17:57:21 +00:00
|
|
|
// Silence compiler version warning
|
2016-08-24 10:15:35 +00:00
|
|
|
std::string sourceCode = "pragma solidity >=0.0;\n" + _sourceCode;
|
2016-08-15 14:58:01 +00:00
|
|
|
m_compiler.reset(false);
|
2016-08-19 17:57:21 +00:00
|
|
|
m_compiler.addSource("", sourceCode);
|
2017-07-17 10:49:45 +00:00
|
|
|
m_compiler.setLibraries(_libraryAddresses);
|
2018-02-22 16:21:26 +00:00
|
|
|
m_compiler.setEVMVersion(m_evmVersion);
|
2017-07-17 10:54:02 +00:00
|
|
|
m_compiler.setOptimiserSettings(m_optimize, m_optimizeRuns);
|
|
|
|
if (!m_compiler.compile())
|
2016-08-06 11:27:29 +00:00
|
|
|
{
|
2017-10-26 20:56:00 +00:00
|
|
|
auto scannerFromSourceName = [&](std::string const& _sourceName) -> solidity::Scanner const& { return m_compiler.scanner(_sourceName); };
|
|
|
|
SourceReferenceFormatter formatter(std::cerr, scannerFromSourceName);
|
|
|
|
|
2016-08-06 11:27:29 +00:00
|
|
|
for (auto const& error: m_compiler.errors())
|
2017-10-26 20:56:00 +00:00
|
|
|
formatter.printExceptionInformation(
|
2016-08-06 11:27:29 +00:00
|
|
|
*error,
|
2017-10-26 20:56:00 +00:00
|
|
|
(error->type() == Error::Type::Warning) ? "Warning" : "Error"
|
2016-08-06 11:27:29 +00:00
|
|
|
);
|
|
|
|
BOOST_ERROR("Compiling contract failed");
|
|
|
|
}
|
2017-08-21 20:49:58 +00:00
|
|
|
eth::LinkerObject obj = m_compiler.object(_contractName.empty() ? m_compiler.lastContractName() : _contractName);
|
2015-09-10 17:40:07 +00:00
|
|
|
BOOST_REQUIRE(obj.linkReferences.empty());
|
2018-02-27 18:28:48 +00:00
|
|
|
return obj.bytecode;
|
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;
|
2014-12-11 15:37:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end namespaces
|
|
|
|
|