2014-11-12 10:39:42 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum 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.
|
|
|
|
|
|
|
|
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Marek Kotewicz <marek@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Unit tests for the solidity compiler JSON Interface output.
|
|
|
|
*/
|
|
|
|
|
2015-04-20 20:48:53 +00:00
|
|
|
#include "../TestHelper.h"
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2015-02-10 11:15:44 +00:00
|
|
|
#include <json/json.h>
|
2014-12-02 09:41:18 +00:00
|
|
|
#include <libdevcore/Exceptions.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:
|
2015-01-31 23:46:38 +00:00
|
|
|
JSONInterfaceChecker(): m_compilerStack(false) {}
|
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
|
|
|
{
|
2015-03-06 11:58:08 +00:00
|
|
|
ETH_TEST_REQUIRE_NO_THROW(m_compilerStack.parse(_code), "Parsing contract failed");
|
2015-08-31 16:44:29 +00:00
|
|
|
std::string generatedInterfaceString = m_compilerStack.metadata("", DocumentationType::ABIInterface);
|
2014-11-12 10:39:42 +00:00
|
|
|
Json::Value generatedInterface;
|
|
|
|
m_reader.parse(generatedInterfaceString, generatedInterface);
|
|
|
|
Json::Value expectedInterface;
|
|
|
|
m_reader.parse(_expectedInterfaceString, expectedInterface);
|
2015-10-14 18:37:41 +00:00
|
|
|
BOOST_CHECK_MESSAGE(
|
|
|
|
expectedInterface == generatedInterface,
|
|
|
|
"Expected:\n" << expectedInterface.toStyledString() << "\n but got:\n" << generatedInterface.toStyledString()
|
|
|
|
);
|
2014-11-12 10:39:42 +00:00
|
|
|
}
|
2014-12-01 17:01:42 +00:00
|
|
|
|
2014-11-12 10:39:42 +00:00
|
|
|
private:
|
|
|
|
CompilerStack m_compilerStack;
|
|
|
|
Json::Reader m_reader;
|
|
|
|
};
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
"}\n";
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
|
|
" function g(uint b) returns(uint e) { return b * 8; }\n"
|
|
|
|
"}\n";
|
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,
|
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,
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function f(uint a, uint b) returns(uint d) { return a + b; }\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
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)
|
|
|
|
{
|
|
|
|
// methods are expected to be in alpabetical order
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
|
|
" function c(uint b) returns(uint e) { return b * 8; }\n"
|
|
|
|
"}\n";
|
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,
|
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,
|
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
|
|
|
}
|
|
|
|
|
2014-12-19 09:48:59 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(const_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function foo(uint a, uint b) returns(uint d) { return a + b; }\n"
|
2014-12-22 02:09:11 +00:00
|
|
|
" function boo(uint32 a) constant returns(uint b) { return a * 4; }\n"
|
2014-12-19 09:48:59 +00:00
|
|
|
"}\n";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "foo",
|
2014-12-21 15:28:46 +00:00
|
|
|
"constant": false,
|
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,
|
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
|
|
|
}
|
|
|
|
|
2015-01-29 21:50:20 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(exclude_fallback_function)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test { function() {} }";
|
|
|
|
|
|
|
|
char const* interface = "[]";
|
|
|
|
|
2015-01-31 23:46:38 +00:00
|
|
|
checkInterface(sourceCode, interface);
|
2015-01-31 13:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(events)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
|
|
" event e1(uint b, address indexed c); \n"
|
|
|
|
" event e2(); \n"
|
|
|
|
"}\n";
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
|
|
|
"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": []
|
|
|
|
}
|
|
|
|
|
|
|
|
])";
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode = "contract test {\n"
|
|
|
|
" event e() anonymous; \n"
|
|
|
|
"}\n";
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
char const* sourceCode =
|
|
|
|
" contract Base { \n"
|
|
|
|
" function baseFunction(uint p) returns (uint i) { return p; } \n"
|
2015-03-11 10:38:11 +00:00
|
|
|
" event baseEvent(bytes32 indexed evtArgBase); \n"
|
2015-01-31 13:41:11 +00:00
|
|
|
" } \n"
|
|
|
|
" contract Derived is Base { \n"
|
2015-03-11 10:38:11 +00:00
|
|
|
" function derivedFunction(bytes32 p) returns (bytes32 i) { return p; } \n"
|
2015-01-31 13:41:11 +00:00
|
|
|
" event derivedEvent(uint indexed evtArgDerived); \n"
|
|
|
|
" }";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "baseFunction",
|
|
|
|
"constant": false,
|
|
|
|
"type": "function",
|
|
|
|
"inputs":
|
|
|
|
[{
|
|
|
|
"name": "p",
|
|
|
|
"type": "uint256"
|
|
|
|
}],
|
|
|
|
"outputs":
|
|
|
|
[{
|
|
|
|
"name": "i",
|
|
|
|
"type": "uint256"
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "derivedFunction",
|
|
|
|
"constant": false,
|
|
|
|
"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"(
|
|
|
|
contract test {
|
|
|
|
function f(uint, uint k) returns(uint ret_k, uint ret_g){
|
|
|
|
uint g = 8;
|
|
|
|
ret_k = k;
|
|
|
|
ret_g = g;
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
|
|
|
"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 {
|
|
|
|
function f(uint k) returns(uint){
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
})";
|
|
|
|
|
|
|
|
char const* interface = R"([
|
|
|
|
{
|
|
|
|
"name": "f",
|
|
|
|
"constant": false,
|
|
|
|
"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 {
|
2015-05-11 14:24:04 +00:00
|
|
|
function test(uint param1, test param2, bool param3) {}
|
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
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "constructor"
|
|
|
|
}
|
|
|
|
])";
|
|
|
|
checkInterface(sourceCode, interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(return_param_in_abi)
|
|
|
|
{
|
|
|
|
// bug #1801
|
|
|
|
char const* sourceCode = R"(
|
|
|
|
contract test {
|
|
|
|
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
|
|
|
|
function test(ActionChoices param) {}
|
|
|
|
function ret() returns(ActionChoices){
|
|
|
|
ActionChoices action = ActionChoices.GoLeft;
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
2015-05-11 14:24:04 +00:00
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"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,
|
|
|
|
"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; }
|
|
|
|
function f(StructType storage b, uint[] storage c, test d) returns (uint[] e, StructType storage f){}
|
|
|
|
}
|
|
|
|
)";
|
|
|
|
|
|
|
|
char const* interface = R"(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"constant" : false,
|
|
|
|
"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);
|
|
|
|
}
|
|
|
|
|
2014-11-12 10:39:42 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|