mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge branch 'develop' into mk_jsonrpc_upgrade
Conflicts: libweb3jsonrpc/abstractwebthreestubserver.h libweb3jsonrpc/spec.json test/webthreestubclient.h
This commit is contained in:
commit
0eb527859f
66
jsonrpc.cpp
66
jsonrpc.cpp
@ -238,7 +238,73 @@ BOOST_AUTO_TEST_CASE(jsonrpc_transact)
|
|||||||
BOOST_CHECK_EQUAL(jsToDecimal(balanceString2), "750000000000000000");
|
BOOST_CHECK_EQUAL(jsToDecimal(balanceString2), "750000000000000000");
|
||||||
BOOST_CHECK_EQUAL(txAmount, balance2);
|
BOOST_CHECK_EQUAL(txAmount, balance2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(simple_contract)
|
||||||
|
{
|
||||||
|
cnote << "Testing jsonrpc contract...";
|
||||||
|
KeyPair kp = KeyPair::create();
|
||||||
|
web3->ethereum()->setAddress(kp.address());
|
||||||
|
jsonrpcServer->setAccounts({kp});
|
||||||
|
|
||||||
|
dev::eth::mine(*(web3->ethereum()), 1);
|
||||||
|
|
||||||
|
char const* sourceCode = "contract test {\n"
|
||||||
|
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
||||||
|
"}\n";
|
||||||
|
|
||||||
|
string compiled = jsonrpcClient->eth_solidity(sourceCode);
|
||||||
|
|
||||||
|
Json::Value create;
|
||||||
|
create["code"] = compiled;
|
||||||
|
string contractAddress = jsonrpcClient->eth_transact(create);
|
||||||
|
dev::eth::mine(*(web3->ethereum()), 1);
|
||||||
|
|
||||||
|
Json::Value call;
|
||||||
|
call["to"] = contractAddress;
|
||||||
|
call["data"] = "0x00000000000000000000000000000000000000000000000000000000000000001";
|
||||||
|
string result = jsonrpcClient->eth_call(call);
|
||||||
|
BOOST_CHECK_EQUAL(result, "0x0000000000000000000000000000000000000000000000000000000000000007");
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(contract_storage)
|
||||||
|
{
|
||||||
|
cnote << "Testing jsonrpc contract storage...";
|
||||||
|
KeyPair kp = KeyPair::create();
|
||||||
|
web3->ethereum()->setAddress(kp.address());
|
||||||
|
jsonrpcServer->setAccounts({kp});
|
||||||
|
|
||||||
|
dev::eth::mine(*(web3->ethereum()), 1);
|
||||||
|
|
||||||
|
char const* sourceCode = R"(
|
||||||
|
contract test {
|
||||||
|
uint hello;
|
||||||
|
function writeHello(uint value) returns(bool d){
|
||||||
|
hello = value;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)";
|
||||||
|
|
||||||
|
string compiled = jsonrpcClient->eth_solidity(sourceCode);
|
||||||
|
|
||||||
|
Json::Value create;
|
||||||
|
create["code"] = compiled;
|
||||||
|
string contractAddress = jsonrpcClient->eth_transact(create);
|
||||||
|
dev::eth::mine(*(web3->ethereum()), 1);
|
||||||
|
|
||||||
|
Json::Value transact;
|
||||||
|
transact["to"] = contractAddress;
|
||||||
|
transact["data"] = "0x00000000000000000000000000000000000000000000000000000000000000003";
|
||||||
|
jsonrpcClient->eth_transact(transact);
|
||||||
|
dev::eth::mine(*(web3->ethereum()), 1);
|
||||||
|
|
||||||
|
Json::Value storage = jsonrpcClient->eth_storageAt(contractAddress);
|
||||||
|
BOOST_CHECK_EQUAL(storage.getMemberNames().size(), 1);
|
||||||
|
for (auto name: storage.getMemberNames())
|
||||||
|
BOOST_CHECK_EQUAL(storage[name].asString(), "0x03");
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|
||||||
|
@ -153,6 +153,16 @@ class WebThreeStubClient : public jsonrpc::Client
|
|||||||
else
|
else
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
Json::Value eth_storageAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("eth_storageAt",p);
|
||||||
|
if (result.isObject())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
double eth_countAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
double eth_countAt(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
@ -257,6 +267,16 @@ class WebThreeStubClient : public jsonrpc::Client
|
|||||||
else
|
else
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
|
Json::Value eth_compilers() throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p = Json::nullValue;
|
||||||
|
Json::Value result = this->CallMethod("eth_compilers",p);
|
||||||
|
if (result.isArray())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
std::string eth_lll(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
std::string eth_lll(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
@ -267,11 +287,21 @@ class WebThreeStubClient : public jsonrpc::Client
|
|||||||
else
|
else
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
std::string eth_compile(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
std::string eth_solidity(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
Json::Value result = this->CallMethod("eth_compile",p);
|
Json::Value result = this->CallMethod("eth_solidity",p);
|
||||||
|
if (result.isString())
|
||||||
|
return result.asString();
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
std::string eth_serpent(const std::string& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("eth_serpent",p);
|
||||||
if (result.isString())
|
if (result.isString())
|
||||||
return result.asString();
|
return result.asString();
|
||||||
else
|
else
|
||||||
@ -317,11 +347,21 @@ class WebThreeStubClient : public jsonrpc::Client
|
|||||||
else
|
else
|
||||||
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
}
|
}
|
||||||
Json::Value eth_getMessages(const int& param1) throw (jsonrpc::JsonRpcException)
|
Json::Value eth_filterLogs(const int& param1) throw (jsonrpc::JsonRpcException)
|
||||||
{
|
{
|
||||||
Json::Value p;
|
Json::Value p;
|
||||||
p.append(param1);
|
p.append(param1);
|
||||||
Json::Value result = this->CallMethod("eth_getMessages",p);
|
Json::Value result = this->CallMethod("eth_filterLogs",p);
|
||||||
|
if (result.isArray())
|
||||||
|
return result;
|
||||||
|
else
|
||||||
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
|
||||||
|
}
|
||||||
|
Json::Value eth_logs(const Json::Value& param1) throw (jsonrpc::JsonRpcException)
|
||||||
|
{
|
||||||
|
Json::Value p;
|
||||||
|
p.append(param1);
|
||||||
|
Json::Value result = this->CallMethod("eth_logs",p);
|
||||||
if (result.isArray())
|
if (result.isArray())
|
||||||
return result;
|
return result;
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user