mirror of https://github.com/GOSTSec/gostcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
8.1 KiB
172 lines
8.1 KiB
8 years ago
|
#include <boost/algorithm/string.hpp>
|
||
|
#include <boost/foreach.hpp>
|
||
|
#include <boost/test/unit_test.hpp>
|
||
|
|
||
|
#include "base58.h"
|
||
|
#include "util.h"
|
||
|
#include "bitcoinrpc.h"
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace json_spirit;
|
||
|
|
||
|
BOOST_AUTO_TEST_SUITE(rpc_tests)
|
||
|
|
||
|
static Array
|
||
|
createArgs(int nRequired, const char* address1=NULL, const char* address2=NULL)
|
||
|
{
|
||
|
Array result;
|
||
|
result.push_back(nRequired);
|
||
|
Array addresses;
|
||
|
if (address1) addresses.push_back(address1);
|
||
|
if (address2) addresses.push_back(address2);
|
||
|
result.push_back(addresses);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE(rpc_addmultisig)
|
||
|
{
|
||
|
rpcfn_type addmultisig = tableRPC["addmultisigaddress"]->actor;
|
||
|
|
||
|
// old, 65-byte-long:
|
||
|
const char address1Hex[] = "0434e3e09f49ea168c5bbf53f877ff4206923858aab7c7e1df25bc263978107c95e35065a27ef6f1b27222db0ec97e0e895eaca603d3ee0d4c060ce3d8a00286c8";
|
||
|
// new, compressed:
|
||
|
const char address2Hex[] = "0388c2037017c62240b6b72ac1a2a5f94da790596ebd06177c8572752922165cb4";
|
||
|
|
||
|
Value v;
|
||
|
CBitcoinAddress address;
|
||
|
BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(1, address1Hex), false));
|
||
|
address.SetString(v.get_str());
|
||
|
BOOST_CHECK(address.IsValid() && address.IsScript());
|
||
|
|
||
|
BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(1, address1Hex, address2Hex), false));
|
||
|
address.SetString(v.get_str());
|
||
|
BOOST_CHECK(address.IsValid() && address.IsScript());
|
||
|
|
||
|
BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(2, address1Hex, address2Hex), false));
|
||
|
address.SetString(v.get_str());
|
||
|
BOOST_CHECK(address.IsValid() && address.IsScript());
|
||
|
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(0), false), runtime_error);
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(1), false), runtime_error);
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(2, address1Hex), false), runtime_error);
|
||
|
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(1, ""), false), runtime_error);
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(1, "NotAValidPubkey"), false), runtime_error);
|
||
|
|
||
|
string short1(address1Hex, address1Hex+sizeof(address1Hex)-2); // last byte missing
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(2, short1.c_str()), false), runtime_error);
|
||
|
|
||
|
string short2(address1Hex+1, address1Hex+sizeof(address1Hex)); // first byte missing
|
||
|
BOOST_CHECK_THROW(addmultisig(createArgs(2, short2.c_str()), false), runtime_error);
|
||
|
}
|
||
|
|
||
|
static Value CallRPC(string args)
|
||
|
{
|
||
|
vector<string> vArgs;
|
||
|
boost::split(vArgs, args, boost::is_any_of(" \t"));
|
||
|
string strMethod = vArgs[0];
|
||
|
vArgs.erase(vArgs.begin());
|
||
|
Array params = RPCConvertValues(strMethod, vArgs);
|
||
|
|
||
|
rpcfn_type method = tableRPC[strMethod]->actor;
|
||
|
try {
|
||
|
Value result = (*method)(params, false);
|
||
|
return result;
|
||
|
}
|
||
|
catch (Object& objError)
|
||
|
{
|
||
|
throw runtime_error(find_value(objError, "message").get_str());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE(rpc_wallet)
|
||
|
{
|
||
|
// Test RPC calls for various wallet statistics
|
||
|
Value r;
|
||
|
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listunspent"));
|
||
|
BOOST_CHECK_THROW(CallRPC("listunspent string"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("listunspent 0 string"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("listunspent 0 1 not_array"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("listunspent 0 1 [] extra"), runtime_error);
|
||
|
BOOST_CHECK_NO_THROW(r=CallRPC("listunspent 0 1 []"));
|
||
|
BOOST_CHECK(r.get_array().empty());
|
||
|
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress"));
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress 0"));
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress not_int"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress 0 not_bool"), runtime_error);
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress 0 true"));
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress 0 true extra"), runtime_error);
|
||
|
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount"));
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount 0"));
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount not_int"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount 0 not_bool"), runtime_error);
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount 0 true"));
|
||
|
BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount 0 true extra"), runtime_error);
|
||
|
}
|
||
|
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE(rpc_rawparams)
|
||
|
{
|
||
|
// Test raw transaction API argument handling
|
||
|
Value r;
|
||
|
|
||
|
BOOST_CHECK_THROW(CallRPC("getrawtransaction"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("getrawtransaction not_hex"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("getrawtransaction a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed not_int"), runtime_error);
|
||
|
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction null null"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction not_array"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction [] []"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction {} {}"), runtime_error);
|
||
|
BOOST_CHECK_NO_THROW(CallRPC("createrawtransaction [] {}"));
|
||
|
BOOST_CHECK_THROW(CallRPC("createrawtransaction [] {} extra"), runtime_error);
|
||
|
|
||
|
BOOST_CHECK_THROW(CallRPC("decoderawtransaction"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("decoderawtransaction null"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("decoderawtransaction DEADBEEF"), runtime_error);
|
||
|
string rawtx = "0100000001a15d57094aa7a21a28cb20b59aab8fc7d1149a3bdbcddba9c622e4f5f6a99ece010000006c493046022100f93bb0e7d8db7bd46e40132d1f8242026e045f03a0efe71bbb8e3f475e970d790221009337cd7f1f929f00cc6ff01f03729b069a7c21b59b1736ddfee5db5946c5da8c0121033b9b137ee87d5a812d6f506efdd37f0affa7ffc310711c06c7f3e097c9447c52ffffffff0100e1f505000000001976a9140389035a9225b3839e2bbf32d826a1e222031fd888ac00000000";
|
||
|
BOOST_CHECK_NO_THROW(r = CallRPC(string("decoderawtransaction ")+rawtx));
|
||
|
BOOST_CHECK_EQUAL(find_value(r.get_obj(), "version").get_int(), 1);
|
||
|
BOOST_CHECK_EQUAL(find_value(r.get_obj(), "locktime").get_int(), 0);
|
||
|
BOOST_CHECK_THROW(r = CallRPC(string("decoderawtransaction ")+rawtx+" extra"), runtime_error);
|
||
|
|
||
|
BOOST_CHECK_THROW(CallRPC("signrawtransaction"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("signrawtransaction null"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("signrawtransaction ff00"), runtime_error);
|
||
|
BOOST_CHECK_NO_THROW(CallRPC(string("signrawtransaction ")+rawtx));
|
||
|
BOOST_CHECK_NO_THROW(CallRPC(string("signrawtransaction ")+rawtx+" null null NONE|ANYONECANPAY"));
|
||
|
BOOST_CHECK_NO_THROW(CallRPC(string("signrawtransaction ")+rawtx+" [] [] NONE|ANYONECANPAY"));
|
||
|
BOOST_CHECK_THROW(CallRPC(string("signrawtransaction ")+rawtx+" null null badenum"), runtime_error);
|
||
|
|
||
|
// Only check failure cases for sendrawtransaction, there's no network to send to...
|
||
|
BOOST_CHECK_THROW(CallRPC("sendrawtransaction"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("sendrawtransaction null"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC("sendrawtransaction DEADBEEF"), runtime_error);
|
||
|
BOOST_CHECK_THROW(CallRPC(string("sendrawtransaction ")+rawtx+" extra"), runtime_error);
|
||
|
}
|
||
|
|
||
|
BOOST_AUTO_TEST_CASE(rpc_rawsign)
|
||
|
{
|
||
|
Value r;
|
||
|
// input is a 1-of-2 multisig (so is output):
|
||
|
string prevout =
|
||
|
"[{\"txid\":\"b4cc287e58f87cdae59417329f710f3ecd75a4ee1d2872b7248f50977c8493f3\","
|
||
|
"\"vout\":1,\"scriptPubKey\":\"a914b10c9df5f7edf436c697f02f1efdba4cf399615187\","
|
||
|
"\"redeemScript\":\"512103debedc17b3df2badbcdd86d5feb4562b86fe182e5998abd8bcd4f122c6155b1b21027e940bb73ab8732bfdf7f9216ecefca5b94d6df834e77e108f68e66f126044c052ae\"}]";
|
||
|
r = CallRPC(string("createrawtransaction ")+prevout+" "+
|
||
|
"{\"3HqAe9LtNBjnsfM4CyYaWTnvCaUYT7v4oZ\":11}");
|
||
|
string notsigned = r.get_str();
|
||
|
string privkey1 = "\"T6hoRM7L8u4f9vHd4eGMAmwV6AMCE11PvYi7YjrdegG223kw64r1\"";
|
||
|
string privkey2 = "\"T5Xu6pe5iqQYqXGxhcY2QEFr7NNoVQ5R6A4abpswunCTF9w85g8V\"";
|
||
|
r = CallRPC(string("signrawtransaction ")+notsigned+" "+prevout+" "+"[]");
|
||
|
BOOST_CHECK(find_value(r.get_obj(), "complete").get_bool() == false);
|
||
|
r = CallRPC(string("signrawtransaction ")+notsigned+" "+prevout+" "+"["+privkey1+","+privkey2+"]");
|
||
|
BOOST_CHECK(find_value(r.get_obj(), "complete").get_bool() == true);
|
||
|
}
|
||
|
|
||
|
BOOST_AUTO_TEST_SUITE_END()
|