2014-11-12 10:39:42 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-11-12 10:39:42 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-11-12 10:39:42 +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-11-12 10:39:42 +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-11-12 10:39:42 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Marek Kotewicz <marek@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Unit tests for the solidity compiler JSON Interface output.
|
|
|
|
*/
|
|
|
|
|
2018-03-14 11:04:04 +00:00
|
|
|
#include <test/Options.h>
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2016-11-24 09:55:32 +00:00
|
|
|
|
2014-12-02 09:41:18 +00:00
|
|
|
#include <libdevcore/Exceptions.h>
|
2016-11-24 09:55:32 +00:00
|
|
|
#include <libdevcore/SwarmHash.h>
|
|
|
|
|
2018-02-07 01:05:20 +00:00
|
|
|
#include <libdevcore/JSON.h>
|
2014-11-12 10:39:42 +00:00
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
class JSONInterfaceChecker
|
2014-11-12 12:00:11 +00:00
|
|
|
{
|
2014-11-12 10:39:42 +00:00
|
|
|
public:
|
2016-08-15 14:58:01 +00:00
|
|
|
JSONInterfaceChecker(): m_compilerStack() {}
|
2015-01-28 12:39:04 +00:00
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
void checkInterface(std::string const& _code, std::string const& _expectedInterfaceString)
|
2014-11-12 10:39:42 +00:00
|
|
|
{
|
2017-07-18 13:34:22 +00:00
|
|
|
m_compilerStack.reset(false);
|
|
|
|
m_compilerStack.addSource("", "pragma solidity >=0.0;\n" + _code);
|
2018-02-23 18:29:20 +00:00
|
|
|
m_compilerStack.setEVMVersion(dev::test::Options::get().evmVersion());
|
|
|
|
m_compilerStack.setOptimiserSettings(dev::test::Options::get().optimize);
|
2017-09-20 09:52:41 +00:00
|
|
|
BOOST_REQUIRE_MESSAGE(m_compilerStack.parseAndAnalyze(), "Parsing contract failed");
|
2016-11-15 17:37:18 +00:00
|
|
|
|
2017-08-21 20:49:58 +00:00
|
|
|
Json::Value generatedInterface = m_compilerStack.contractABI(m_compilerStack.lastContractName());
|
2014-11-12 10:39:42 +00:00
|
|
|
Json::Value expectedInterface;
|
2018-02-07 01:05:20 +00:00
|
|
|
BOOST_REQUIRE(jsonParseStrict(_expectedInterfaceString, expectedInterface));
|
2015-10-14 18:37:41 +00:00
|
|
|
BOOST_CHECK_MESSAGE(
|
|
|
|
expectedInterface == generatedInterface,
|
2016-11-15 17:37:18 +00:00
|
|
|
"Expected:\n" << expectedInterface.toStyledString() <<
|
|
|
|
"\n but got:\n" << generatedInterface.toStyledString()
|
2015-10-14 18:37:41 +00:00
|
|
|
);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2016-11-24 09:55:32 +00:00
|
|
|
protected:
|
2014-11-12 10:39:42 +00:00
|
|
|
CompilerStack m_compilerStack;
|
|
|
|
};
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(SolidityABIJSON, JSONInterfaceChecker)
|
2014-11-12 10:39:42 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(basic_test)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint a) public returns (uint d) { return a * 7; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-11-12 10:39:42 +00:00
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_contract)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test { }
|
|
|
|
)";
|
2014-11-12 10:39:42 +00:00
|
|
|
char const* interface = "[]";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(multiple_methods)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint a) public returns (uint d) { return a * 7; }
|
|
|
|
function g(uint b) public returns (uint e) { return b * 8; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2014-11-12 10:39:42 +00:00
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "g",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "e",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(multiple_params)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint a, uint b) public returns (uint d) { return a + b; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-11-12 10:39:42 +00:00
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(multiple_methods_order)
|
|
|
|
{
|
2018-07-16 10:23:06 +00:00
|
|
|
// methods are expected to be in alphabetical order
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint a) public returns (uint d) { return a * 7; }
|
|
|
|
function c(uint b) public returns (uint e) { return b * 8; }
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2014-11-12 10:39:42 +00:00
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "c",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "e",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-11-12 10:39:42 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 22:21:27 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(view_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function foo(uint a, uint b) public returns (uint d) { return a + b; }
|
2018-07-11 13:57:07 +00:00
|
|
|
function boo(uint32 a) public view returns(uint b) { return a * 4; }
|
2017-08-21 22:21:27 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
2014-12-19 09:48:59 +00:00
|
|
|
{
|
|
|
|
"name": "foo",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2014-12-19 09:48:59 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
2015-01-09 08:29:19 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "boo",
|
|
|
|
"constant": true,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "view",
|
2015-01-31 00:28:43 +00:00
|
|
|
"type": "function",
|
2015-01-09 08:29:19 +00:00
|
|
|
"inputs": [{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint32"
|
|
|
|
}],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
2014-12-19 09:48:59 +00:00
|
|
|
}
|
|
|
|
])";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2014-12-19 09:48:59 +00:00
|
|
|
}
|
|
|
|
|
2017-08-15 18:13:05 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(pure_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function foo(uint a, uint b) public returns (uint d) { return a + b; }
|
2018-07-11 13:57:07 +00:00
|
|
|
function boo(uint32 a) public pure returns (uint b) { return a * 4; }
|
2017-08-15 18:13:05 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "foo",
|
|
|
|
"constant": false,
|
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2017-08-15 18:13:05 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "boo",
|
|
|
|
"constant": true,
|
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "pure",
|
2017-08-15 18:13:05 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs": [{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint32"
|
|
|
|
}],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2015-01-31 13:41:11 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(events)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint a) public returns (uint d) { return a * 7; }
|
2016-12-03 20:52:51 +00:00
|
|
|
event e1(uint b, address indexed c);
|
|
|
|
event e2();
|
2017-08-25 09:41:48 +00:00
|
|
|
event e2(uint a);
|
|
|
|
event e3() anonymous;
|
2016-12-03 20:52:51 +00:00
|
|
|
}
|
|
|
|
)";
|
2015-01-31 13:41:11 +00:00
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 13:41:11 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "d",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "e1",
|
|
|
|
"type": "event",
|
2015-03-17 10:34:56 +00:00
|
|
|
"anonymous": false,
|
2015-01-31 13:41:11 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"indexed": false,
|
|
|
|
"name": "b",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"indexed": true,
|
|
|
|
"name": "c",
|
|
|
|
"type": "address"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "e2",
|
|
|
|
"type": "event",
|
2015-03-17 10:34:56 +00:00
|
|
|
"anonymous": false,
|
2015-01-31 13:41:11 +00:00
|
|
|
"inputs": []
|
2017-08-25 09:41:48 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "e2",
|
|
|
|
"type": "event",
|
|
|
|
"anonymous": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"indexed": false,
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "e3",
|
|
|
|
"type": "event",
|
|
|
|
"anonymous": true,
|
|
|
|
"inputs": []
|
2015-01-31 13:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
])";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2015-01-31 13:41:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-17 10:34:56 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(events_anonymous)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
event e() anonymous;
|
|
|
|
}
|
|
|
|
)";
|
2015-03-17 10:34:56 +00:00
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "e",
|
|
|
|
"type": "event",
|
|
|
|
"anonymous": true,
|
|
|
|
"inputs": []
|
|
|
|
}
|
|
|
|
|
|
|
|
])";
|
|
|
|
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
2015-01-31 13:41:11 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(inherited)
|
|
|
|
{
|
2016-12-03 20:52:51 +00:00
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract Base {
|
2018-06-29 14:52:41 +00:00
|
|
|
function baseFunction(uint p) public returns (uint i) { return p; }
|
2016-12-03 20:52:51 +00:00
|
|
|
event baseEvent(bytes32 indexed evtArgBase);
|
|
|
|
}
|
|
|
|
contract Derived is Base {
|
2018-06-29 14:52:41 +00:00
|
|
|
function derivedFunction(bytes32 p) public returns (bytes32 i) { return p; }
|
2016-12-03 20:52:51 +00:00
|
|
|
event derivedEvent(uint indexed evtArgDerived);
|
|
|
|
}
|
|
|
|
)";
|
2015-01-31 13:41:11 +00:00
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "baseFunction",
|
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 13:41:11 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs":
|
|
|
|
[{
|
|
|
|
"name": "p",
|
|
|
|
"type": "uint256"
|
|
|
|
}],
|
|
|
|
"outputs":
|
|
|
|
[{
|
|
|
|
"name": "i",
|
|
|
|
"type": "uint256"
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "derivedFunction",
|
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-01-31 13:41:11 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs":
|
|
|
|
[{
|
|
|
|
"name": "p",
|
2015-03-11 10:38:11 +00:00
|
|
|
"type": "bytes32"
|
2015-01-31 13:41:11 +00:00
|
|
|
}],
|
|
|
|
"outputs":
|
|
|
|
[{
|
|
|
|
"name": "i",
|
2015-03-11 10:38:11 +00:00
|
|
|
"type": "bytes32"
|
2015-01-31 13:41:11 +00:00
|
|
|
}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "derivedEvent",
|
|
|
|
"type": "event",
|
2015-03-17 10:34:56 +00:00
|
|
|
"anonymous": false,
|
2015-01-31 13:41:11 +00:00
|
|
|
"inputs":
|
|
|
|
[{
|
|
|
|
"indexed": true,
|
|
|
|
"name": "evtArgDerived",
|
|
|
|
"type": "uint256"
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "baseEvent",
|
|
|
|
"type": "event",
|
2015-03-17 10:34:56 +00:00
|
|
|
"anonymous": false,
|
2015-01-31 13:41:11 +00:00
|
|
|
"inputs":
|
|
|
|
[{
|
|
|
|
"indexed": true,
|
|
|
|
"name": "evtArgBase",
|
2015-03-11 10:38:11 +00:00
|
|
|
"type": "bytes32"
|
2015-01-31 13:41:11 +00:00
|
|
|
}]
|
|
|
|
}])";
|
|
|
|
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2015-01-29 21:50:20 +00:00
|
|
|
}
|
2015-02-09 01:06:30 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_input_parameter_with_named_one)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
2016-12-03 20:52:51 +00:00
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint, uint k) public returns (uint ret_k, uint ret_g) {
|
2016-12-03 20:52:51 +00:00
|
|
|
uint g = 8;
|
|
|
|
ret_k = k;
|
|
|
|
ret_g = g;
|
|
|
|
}
|
2015-02-09 01:06:30 +00:00
|
|
|
}
|
2016-12-03 20:52:51 +00:00
|
|
|
)";
|
2015-02-09 01:06:30 +00:00
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-02-09 01:06:30 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "k",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "ret_k",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ret_g",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
2015-01-29 21:50:20 +00:00
|
|
|
|
2015-02-09 01:06:30 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_name_return_parameter)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-29 14:52:41 +00:00
|
|
|
function f(uint k) public returns (uint) {
|
2016-12-03 20:52:51 +00:00
|
|
|
return k;
|
|
|
|
}
|
2015-02-09 01:06:30 +00:00
|
|
|
}
|
2016-12-03 20:52:51 +00:00
|
|
|
)";
|
2015-02-09 01:06:30 +00:00
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-02-09 01:06:30 +00:00
|
|
|
"type": "function",
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "k",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
2015-01-31 13:41:11 +00:00
|
|
|
|
2015-04-16 13:19:25 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(constructor_abi)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-07-11 13:57:07 +00:00
|
|
|
constructor(uint param1, test param2, bool param3) public {}
|
2015-04-16 13:19:25 +00:00
|
|
|
}
|
2015-04-22 16:53:58 +00:00
|
|
|
)";
|
2015-04-16 13:19:25 +00:00
|
|
|
|
2015-04-17 13:26:12 +00:00
|
|
|
char const* interface = R"([
|
|
|
|
{
|
2015-04-22 16:53:58 +00:00
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "param1",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "param2",
|
|
|
|
"type": "address"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "param3",
|
|
|
|
"type": "bool"
|
2015-05-11 11:47:21 +00:00
|
|
|
}
|
|
|
|
],
|
2016-11-15 18:41:54 +00:00
|
|
|
"payable": false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-05-11 11:47:21 +00:00
|
|
|
"type": "constructor"
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2017-08-15 00:40:53 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(payable_constructor_abi)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-07-11 13:57:07 +00:00
|
|
|
constructor(uint param1, test param2, bool param3) public payable {}
|
2017-08-15 00:40:53 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "param1",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "param2",
|
|
|
|
"type": "address"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "param3",
|
|
|
|
"type": "bool"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"payable": true,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "payable",
|
2017-08-15 00:40:53 +00:00
|
|
|
"type": "constructor"
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
2015-05-11 11:47:21 +00:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(return_param_in_abi)
|
|
|
|
{
|
|
|
|
// bug #1801
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
2018-07-11 13:57:07 +00:00
|
|
|
constructor(ActionChoices param) public {}
|
2018-06-29 14:52:41 +00:00
|
|
|
function ret() public returns (ActionChoices) {
|
2015-05-11 11:47:21 +00:00
|
|
|
ActionChoices action = ActionChoices.GoLeft;
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2015-05-11 14:24:04 +00:00
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-05-11 14:24:04 +00:00
|
|
|
"inputs" : [],
|
|
|
|
"name" : "ret",
|
2015-05-11 15:17:50 +00:00
|
|
|
"outputs" : [
|
2015-05-11 14:24:04 +00:00
|
|
|
{
|
|
|
|
"name" : "",
|
|
|
|
"type" : "uint8"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type" : "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "param",
|
|
|
|
"type": "uint8"
|
|
|
|
}
|
|
|
|
],
|
2016-11-15 18:41:54 +00:00
|
|
|
"payable": false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-05-11 14:24:04 +00:00
|
|
|
"type": "constructor"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
2015-04-16 13:19:25 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2015-05-28 14:20:50 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(strings_and_arrays)
|
|
|
|
{
|
|
|
|
// bug #1801
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
function f(string a, bytes b, uint[] c) external {}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-05-28 14:20:50 +00:00
|
|
|
"name": "f",
|
|
|
|
"inputs": [
|
|
|
|
{ "name": "a", "type": "string" },
|
|
|
|
{ "name": "b", "type": "bytes" },
|
|
|
|
{ "name": "c", "type": "uint256[]" }
|
|
|
|
],
|
|
|
|
"outputs": [],
|
|
|
|
"type" : "function"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2015-10-05 15:19:23 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(library_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
library test {
|
|
|
|
struct StructType { uint a; }
|
2018-07-12 04:18:50 +00:00
|
|
|
function f(StructType storage b, uint[] storage c, test d) public returns (uint[] memory e, StructType storage f) {}
|
2015-10-05 15:19:23 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
2016-08-02 19:22:26 +00:00
|
|
|
"payable" : false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2015-10-05 15:19:23 +00:00
|
|
|
"name": "f",
|
|
|
|
"inputs": [
|
|
|
|
{ "name": "b", "type": "test.StructType storage" },
|
|
|
|
{ "name": "c", "type": "uint256[] storage" },
|
|
|
|
{ "name": "d", "type": "test" }
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
{ "name": "e", "type": "uint256[]" },
|
|
|
|
{ "name": "f", "type": "test.StructType storage" }
|
|
|
|
],
|
|
|
|
"type" : "function"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2016-07-25 10:09:07 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(include_fallback_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-28 16:08:45 +00:00
|
|
|
function() external {}
|
2016-07-25 10:09:07 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
2016-09-06 08:59:13 +00:00
|
|
|
"payable": false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2016-07-25 10:09:07 +00:00
|
|
|
"type" : "fallback"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2016-08-02 19:22:26 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(payable_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-07-11 13:57:07 +00:00
|
|
|
function f() public {}
|
|
|
|
function g() public payable {}
|
2016-08-02 19:22:26 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
|
|
|
"payable": false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2016-08-02 19:22:26 +00:00
|
|
|
"inputs": [],
|
|
|
|
"name": "f",
|
|
|
|
"outputs": [],
|
|
|
|
"type" : "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant" : false,
|
|
|
|
"payable": true,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "payable",
|
2016-08-02 19:22:26 +00:00
|
|
|
"inputs": [],
|
|
|
|
"name": "g",
|
|
|
|
"outputs": [],
|
|
|
|
"type" : "function"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2016-11-09 16:51:48 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(payable_fallback_function)
|
2016-09-06 08:59:13 +00:00
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-06-28 16:08:45 +00:00
|
|
|
function () external payable {}
|
2016-09-06 08:59:13 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"payable": true,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "payable",
|
2016-09-06 08:59:13 +00:00
|
|
|
"type" : "fallback"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
2016-08-02 19:22:26 +00:00
|
|
|
|
2016-11-14 22:37:19 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(function_type)
|
|
|
|
{
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
2018-07-11 13:57:07 +00:00
|
|
|
function g(function(uint) external returns (uint) x) public {}
|
2016-11-14 22:37:19 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
2016-11-14 22:52:07 +00:00
|
|
|
"payable": false,
|
2017-08-24 14:23:00 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2016-11-14 22:52:07 +00:00
|
|
|
"inputs": [{
|
|
|
|
"name": "x",
|
|
|
|
"type": "function"
|
|
|
|
}],
|
2016-11-14 22:37:19 +00:00
|
|
|
"name": "g",
|
|
|
|
"outputs": [],
|
|
|
|
"type" : "function"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
2017-01-24 11:44:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(return_structs)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
2017-12-11 02:39:39 +00:00
|
|
|
pragma experimental ABIEncoderV2;
|
2017-01-24 11:44:49 +00:00
|
|
|
contract C {
|
|
|
|
struct S { uint a; T[] sub; }
|
|
|
|
struct T { uint[2] x; }
|
2018-07-12 04:18:50 +00:00
|
|
|
function f() public returns (uint x, S memory s) {
|
2017-01-24 11:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
char const* interface = R"(
|
2017-06-30 08:22:35 +00:00
|
|
|
[{
|
2017-01-24 11:44:49 +00:00
|
|
|
"constant" : false,
|
2017-06-30 08:22:35 +00:00
|
|
|
"inputs" : [],
|
|
|
|
"name" : "f",
|
|
|
|
"outputs" : [
|
|
|
|
{
|
|
|
|
"name" : "x",
|
|
|
|
"type" : "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"components" : [
|
|
|
|
{
|
|
|
|
"name" : "a",
|
|
|
|
"type" : "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"components" : [
|
|
|
|
{
|
|
|
|
"name" : "x",
|
|
|
|
"type" : "uint256[2]"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name" : "sub",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type" : "tuple[]"
|
2017-06-30 08:22:35 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"name" : "s",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type" : "tuple"
|
2017-06-30 08:22:35 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"payable" : false,
|
2017-08-24 13:08:31 +00:00
|
|
|
"stateMutability" : "nonpayable",
|
2017-01-24 11:44:49 +00:00
|
|
|
"type" : "function"
|
2017-06-30 08:22:35 +00:00
|
|
|
}]
|
2017-01-24 11:44:49 +00:00
|
|
|
)";
|
|
|
|
checkInterface(text, interface);
|
|
|
|
}
|
|
|
|
|
2017-06-13 08:51:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(return_structs_with_contracts)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
2017-12-11 02:39:39 +00:00
|
|
|
pragma experimental ABIEncoderV2;
|
2017-06-13 08:51:49 +00:00
|
|
|
contract C {
|
|
|
|
struct S { C[] x; C y; }
|
2018-07-12 04:18:50 +00:00
|
|
|
function f() public returns (S memory s, C c) {
|
2017-06-13 08:51:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
char const* interface = R"(
|
2017-06-30 08:22:35 +00:00
|
|
|
[{
|
|
|
|
"constant": false,
|
2017-06-13 08:51:49 +00:00
|
|
|
"inputs": [],
|
|
|
|
"name": "f",
|
2017-06-30 08:22:35 +00:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "x",
|
|
|
|
"type": "address[]"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "y",
|
|
|
|
"type": "address"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "s",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple"
|
2017-06-30 08:22:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "c",
|
|
|
|
"type": "address"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"payable": false,
|
2017-08-24 13:08:31 +00:00
|
|
|
"stateMutability" : "nonpayable",
|
2017-06-30 08:22:35 +00:00
|
|
|
"type": "function"
|
|
|
|
}]
|
2017-06-13 08:51:49 +00:00
|
|
|
)";
|
|
|
|
checkInterface(text, interface);
|
|
|
|
}
|
|
|
|
|
2017-01-24 11:44:49 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(event_structs)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
|
|
|
contract C {
|
|
|
|
struct S { uint a; T[] sub; bytes b; }
|
|
|
|
struct T { uint[2] x; }
|
|
|
|
event E(T t, S s);
|
|
|
|
}
|
|
|
|
)";
|
2017-06-30 08:22:35 +00:00
|
|
|
char const *interface = R"(
|
|
|
|
[{
|
|
|
|
"anonymous": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "x",
|
|
|
|
"type": "uint256[2]"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"indexed": false,
|
|
|
|
"name": "t",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple"
|
2017-06-30 08:22:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "x",
|
|
|
|
"type": "uint256[2]"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "sub",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple[]"
|
2017-06-30 08:22:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "bytes"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"indexed": false,
|
|
|
|
"name": "s",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple"
|
2017-06-30 08:22:35 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "E",
|
|
|
|
"type": "event"
|
2017-01-24 11:44:49 +00:00
|
|
|
}]
|
|
|
|
)";
|
|
|
|
checkInterface(text, interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(structs_in_libraries)
|
|
|
|
{
|
|
|
|
char const* text = R"(
|
2017-12-11 02:39:39 +00:00
|
|
|
pragma experimental ABIEncoderV2;
|
2017-01-24 11:44:49 +00:00
|
|
|
library L {
|
|
|
|
struct S { uint a; T[] sub; bytes b; }
|
|
|
|
struct T { uint[2] x; }
|
2018-07-11 13:57:07 +00:00
|
|
|
function f(L.S storage s) public {}
|
|
|
|
function g(L.S memory s) public {}
|
2017-01-24 11:44:49 +00:00
|
|
|
}
|
|
|
|
)";
|
|
|
|
char const* interface = R"(
|
|
|
|
[{
|
2017-06-30 08:22:35 +00:00
|
|
|
"constant": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "a",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"name": "x",
|
|
|
|
"type": "uint256[2]"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "sub",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple[]"
|
2017-06-30 08:22:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "b",
|
|
|
|
"type": "bytes"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "s",
|
2017-09-01 11:37:40 +00:00
|
|
|
"type": "tuple"
|
2017-06-30 08:22:35 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "g",
|
|
|
|
"outputs": [],
|
|
|
|
"payable": false,
|
2017-08-24 13:08:31 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2017-06-30 08:22:35 +00:00
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "s",
|
|
|
|
"type": "L.S storage"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "f",
|
|
|
|
"outputs": [],
|
|
|
|
"payable": false,
|
2017-08-24 13:08:31 +00:00
|
|
|
"stateMutability": "nonpayable",
|
2017-06-30 08:22:35 +00:00
|
|
|
"type": "function"
|
2017-01-24 11:44:49 +00:00
|
|
|
}]
|
|
|
|
)";
|
|
|
|
checkInterface(text, interface);
|
|
|
|
}
|
|
|
|
|
2014-11-12 10:39:42 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|