1277 lines
25 KiB
Go
1277 lines
25 KiB
Go
// Copyright (c) 2013 Conformal Systems LLC.
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// this has to be in the real json subpackage so we can mock up structs
|
|
package btcjson
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/davecgh/go-spew/spew"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
var jsoncmdtests = []struct {
|
|
name string
|
|
f func() (Cmd, error)
|
|
result Cmd // after marshal and unmarshal
|
|
}{
|
|
{
|
|
name: "basic addmultisigaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewAddMultisigAddressCmd(float64(1), 1,
|
|
[]string{"foo", "bar"})
|
|
},
|
|
result: &AddMultisigAddressCmd{
|
|
id: float64(1),
|
|
NRequired: 1,
|
|
Keys: []string{"foo", "bar"},
|
|
Account: "",
|
|
},
|
|
},
|
|
{
|
|
name: "addmultisigaddress + optional",
|
|
f: func() (Cmd, error) {
|
|
return NewAddMultisigAddressCmd(float64(1), 1,
|
|
[]string{"foo", "bar"}, "address")
|
|
},
|
|
result: &AddMultisigAddressCmd{
|
|
id: float64(1),
|
|
NRequired: 1,
|
|
Keys: []string{"foo", "bar"},
|
|
Account: "address",
|
|
},
|
|
},
|
|
// TODO(oga) Too many arguments to newaddmultisigaddress
|
|
{
|
|
name: "basic addnode add",
|
|
f: func() (Cmd, error) {
|
|
return NewAddNodeCmd(float64(1), "address",
|
|
"add")
|
|
},
|
|
result: &AddNodeCmd{
|
|
id: float64(1),
|
|
Addr: "address",
|
|
SubCmd: "add",
|
|
},
|
|
},
|
|
{
|
|
name: "basic addnode remove",
|
|
f: func() (Cmd, error) {
|
|
return NewAddNodeCmd(float64(1), "address",
|
|
"remove")
|
|
},
|
|
result: &AddNodeCmd{
|
|
id: float64(1),
|
|
Addr: "address",
|
|
SubCmd: "remove",
|
|
},
|
|
},
|
|
{
|
|
name: "basic addnode onetry",
|
|
f: func() (Cmd, error) {
|
|
return NewAddNodeCmd(float64(1), "address",
|
|
"onetry")
|
|
},
|
|
result: &AddNodeCmd{
|
|
id: float64(1),
|
|
Addr: "address",
|
|
SubCmd: "onetry",
|
|
},
|
|
},
|
|
// TODO(oga) try invalid subcmds
|
|
{
|
|
name: "basic backupwallet",
|
|
f: func() (Cmd, error) {
|
|
return NewBackupWalletCmd(float64(1), "destination")
|
|
},
|
|
result: &BackupWalletCmd{
|
|
id: float64(1),
|
|
Destination: "destination",
|
|
},
|
|
},
|
|
{
|
|
name: "basic createmultisig",
|
|
f: func() (Cmd, error) {
|
|
return NewCreateMultisigCmd(float64(1), 1,
|
|
[]string{"key1", "key2", "key3"})
|
|
},
|
|
result: &CreateMultisigCmd{
|
|
id: float64(1),
|
|
NRequired: 1,
|
|
Keys: []string{"key1", "key2", "key3"},
|
|
},
|
|
},
|
|
{
|
|
name: "basic createrawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewCreateRawTransactionCmd(float64(1),
|
|
[]TransactionInput{
|
|
TransactionInput{Txid: "tx1", Vout: 1},
|
|
TransactionInput{Txid: "tx2", Vout: 3}},
|
|
map[string]int64{"bob": 1, "bill": 2})
|
|
},
|
|
result: &CreateRawTransactionCmd{
|
|
id: float64(1),
|
|
Inputs: []TransactionInput{
|
|
TransactionInput{Txid: "tx1", Vout: 1},
|
|
TransactionInput{Txid: "tx2", Vout: 3},
|
|
},
|
|
Amounts: map[string]int64{
|
|
"bob": 1,
|
|
"bill": 2,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "basic debuglevel",
|
|
f: func() (Cmd, error) {
|
|
return NewDebugLevelCmd(float64(1), "debug")
|
|
},
|
|
result: &DebugLevelCmd{
|
|
id: float64(1),
|
|
LevelSpec: "debug",
|
|
},
|
|
},
|
|
{
|
|
name: "basic decoderawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewDecodeRawTransactionCmd(float64(1),
|
|
"thisisahexidecimaltransaction")
|
|
},
|
|
result: &DecodeRawTransactionCmd{
|
|
id: float64(1),
|
|
HexTx: "thisisahexidecimaltransaction",
|
|
},
|
|
},
|
|
{
|
|
name: "basic decodescript",
|
|
f: func() (Cmd, error) {
|
|
return NewDecodeScriptCmd(float64(1),
|
|
"a bunch of hex")
|
|
},
|
|
result: &DecodeScriptCmd{
|
|
id: float64(1),
|
|
HexScript: "a bunch of hex",
|
|
},
|
|
},
|
|
{
|
|
name: "basic dumpprivkey",
|
|
f: func() (Cmd, error) {
|
|
return NewDumpPrivKeyCmd(float64(1),
|
|
"address")
|
|
},
|
|
result: &DumpPrivKeyCmd{
|
|
id: float64(1),
|
|
Address: "address",
|
|
},
|
|
},
|
|
{
|
|
name: "basic dumpwallet",
|
|
f: func() (Cmd, error) {
|
|
return NewDumpWalletCmd(float64(1),
|
|
"filename")
|
|
},
|
|
result: &DumpWalletCmd{
|
|
id: float64(1),
|
|
Filename: "filename",
|
|
},
|
|
},
|
|
{
|
|
name: "basic encryptwallet",
|
|
f: func() (Cmd, error) {
|
|
return NewEncryptWalletCmd(float64(1),
|
|
"passphrase")
|
|
},
|
|
result: &EncryptWalletCmd{
|
|
id: float64(1),
|
|
Passphrase: "passphrase",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaccount",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAccountCmd(float64(1),
|
|
"address")
|
|
},
|
|
result: &GetAccountCmd{
|
|
id: float64(1),
|
|
Address: "address",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaccountaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAccountAddressCmd(float64(1),
|
|
"account")
|
|
},
|
|
result: &GetAccountAddressCmd{
|
|
id: float64(1),
|
|
Account: "account",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaddednodeinfo true",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAddedNodeInfoCmd(float64(1), true)
|
|
},
|
|
result: &GetAddedNodeInfoCmd{
|
|
id: float64(1),
|
|
Dns: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaddednodeinfo false",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAddedNodeInfoCmd(float64(1), false)
|
|
},
|
|
result: &GetAddedNodeInfoCmd{
|
|
id: float64(1),
|
|
Dns: false,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaddednodeinfo withnode",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAddedNodeInfoCmd(float64(1), true,
|
|
"thisisanode")
|
|
},
|
|
result: &GetAddedNodeInfoCmd{
|
|
id: float64(1),
|
|
Dns: true,
|
|
Node: "thisisanode",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getaddressesbyaccount",
|
|
f: func() (Cmd, error) {
|
|
return NewGetAddressesByAccountCmd(float64(1),
|
|
"account")
|
|
},
|
|
result: &GetAddressesByAccountCmd{
|
|
id: float64(1),
|
|
Account: "account",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getbalance",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBalanceCmd(float64(1))
|
|
},
|
|
result: &GetBalanceCmd{
|
|
id: float64(1),
|
|
MinConf: 1, // the default
|
|
},
|
|
},
|
|
{
|
|
name: "basic getbalance + account",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBalanceCmd(float64(1), "account")
|
|
},
|
|
result: &GetBalanceCmd{
|
|
id: float64(1),
|
|
Account: "account",
|
|
MinConf: 1, // the default
|
|
},
|
|
},
|
|
{
|
|
name: "basic getbalance + minconf",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBalanceCmd(float64(1), "", 2)
|
|
},
|
|
result: &GetBalanceCmd{
|
|
id: float64(1),
|
|
MinConf: 2,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getbalance + account + minconf",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBalanceCmd(float64(1), "account", 2)
|
|
},
|
|
result: &GetBalanceCmd{
|
|
id: float64(1),
|
|
Account: "account",
|
|
MinConf: 2,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getbestblockhash",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBestBlockHashCmd(float64(1))
|
|
},
|
|
result: &GetBestBlockHashCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblock",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockCmd(float64(1),
|
|
"somehash")
|
|
},
|
|
result: &GetBlockCmd{
|
|
id: float64(1),
|
|
Hash: "somehash",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblockcount",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockCountCmd(float64(1))
|
|
},
|
|
result: &GetBlockCountCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblockhash",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockHashCmd(float64(1), 1234)
|
|
},
|
|
result: &GetBlockHashCmd{
|
|
id: float64(1),
|
|
Index: 1234,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblocktemplate",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockTemplateCmd(float64(1))
|
|
},
|
|
result: &GetBlockTemplateCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblocktemplate + request",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockTemplateCmd(float64(1),
|
|
&TemplateRequest{Mode: "mode",
|
|
Capabilities: []string{"one", "two", "three"}})
|
|
},
|
|
result: &GetBlockTemplateCmd{
|
|
id: float64(1),
|
|
Request: &TemplateRequest{
|
|
Mode: "mode",
|
|
Capabilities: []string{
|
|
"one",
|
|
"two",
|
|
"three",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "basic getblocktemplate + request no mode",
|
|
f: func() (Cmd, error) {
|
|
return NewGetBlockTemplateCmd(float64(1),
|
|
&TemplateRequest{
|
|
Capabilities: []string{"one", "two", "three"}})
|
|
},
|
|
result: &GetBlockTemplateCmd{
|
|
id: float64(1),
|
|
Request: &TemplateRequest{
|
|
Capabilities: []string{
|
|
"one",
|
|
"two",
|
|
"three",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "basic getconectioncount",
|
|
f: func() (Cmd, error) {
|
|
return NewGetConnectionCountCmd(float64(1))
|
|
},
|
|
result: &GetConnectionCountCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getdifficulty",
|
|
f: func() (Cmd, error) {
|
|
return NewGetDifficultyCmd(float64(1))
|
|
},
|
|
result: &GetDifficultyCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getgeneratecmd",
|
|
f: func() (Cmd, error) {
|
|
return NewGetGenerateCmd(float64(1))
|
|
},
|
|
result: &GetGenerateCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic gethashespersec",
|
|
f: func() (Cmd, error) {
|
|
return NewGetHashesPerSecCmd(float64(1))
|
|
},
|
|
result: &GetHashesPerSecCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getinfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetInfoCmd(float64(1))
|
|
},
|
|
result: &GetInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getinfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetInfoCmd(float64(1))
|
|
},
|
|
result: &GetInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getmininginfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetMiningInfoCmd(float64(1))
|
|
},
|
|
result: &GetMiningInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getnettotals",
|
|
f: func() (Cmd, error) {
|
|
return NewGetNetTotalsCmd(float64(1))
|
|
},
|
|
result: &GetNetTotalsCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getnetworkhashps",
|
|
f: func() (Cmd, error) {
|
|
return NewGetNetworkHashPSCmd(float64(1))
|
|
},
|
|
result: &GetNetworkHashPSCmd{
|
|
id: float64(1),
|
|
Blocks: 120,
|
|
Height: -1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getnetworkhashps + blocks",
|
|
f: func() (Cmd, error) {
|
|
return NewGetNetworkHashPSCmd(float64(1), 5000)
|
|
},
|
|
result: &GetNetworkHashPSCmd{
|
|
id: float64(1),
|
|
Blocks: 5000,
|
|
Height: -1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getnetworkhashps + blocks + height",
|
|
f: func() (Cmd, error) {
|
|
return NewGetNetworkHashPSCmd(float64(1), 5000, 1000)
|
|
},
|
|
result: &GetNetworkHashPSCmd{
|
|
id: float64(1),
|
|
Blocks: 5000,
|
|
Height: 1000,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getnewaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewGetNewAddressCmd(float64(1), "account")
|
|
},
|
|
result: &GetNewAddressCmd{
|
|
id: float64(1),
|
|
Account: "account",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getpeerinfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetPeerInfoCmd(float64(1))
|
|
},
|
|
result: &GetPeerInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getrawmchangeaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewGetRawChangeAddressCmd(float64(1))
|
|
},
|
|
result: &GetRawChangeAddressCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getrawmchangeaddress + account",
|
|
f: func() (Cmd, error) {
|
|
return NewGetRawChangeAddressCmd(float64(1),
|
|
"accountname")
|
|
},
|
|
result: &GetRawChangeAddressCmd{
|
|
id: float64(1),
|
|
Account: "accountname",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getrawmempool",
|
|
f: func() (Cmd, error) {
|
|
return NewGetRawMempoolCmd(float64(1))
|
|
},
|
|
result: &GetRawMempoolCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getrawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewGetRawTransactionCmd(float64(1),
|
|
"sometxid")
|
|
},
|
|
result: &GetRawTransactionCmd{
|
|
id: float64(1),
|
|
Txid: "sometxid",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getrawtransaction + verbose",
|
|
f: func() (Cmd, error) {
|
|
return NewGetRawTransactionCmd(float64(1),
|
|
"sometxid",
|
|
true)
|
|
},
|
|
result: &GetRawTransactionCmd{
|
|
id: float64(1),
|
|
Txid: "sometxid",
|
|
Verbose: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getreceivedbyaccount",
|
|
f: func() (Cmd, error) {
|
|
return NewGetReceivedByAccountCmd(float64(1),
|
|
"abtcaccount",
|
|
1)
|
|
},
|
|
result: &GetReceivedByAccountCmd{
|
|
id: float64(1),
|
|
Account: "abtcaccount",
|
|
MinConf: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic getreceivedbyaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewGetReceivedByAddressCmd(float64(1),
|
|
"abtcaddress",
|
|
1)
|
|
},
|
|
result: &GetReceivedByAddressCmd{
|
|
id: float64(1),
|
|
Address: "abtcaddress",
|
|
MinConf: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic gettransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewGetTransactionCmd(float64(1),
|
|
"atxid")
|
|
},
|
|
result: &GetTransactionCmd{
|
|
id: float64(1),
|
|
Txid: "atxid",
|
|
},
|
|
},
|
|
{
|
|
name: "basic gettxout",
|
|
f: func() (Cmd, error) {
|
|
return NewGetTxOutCmd(float64(1),
|
|
"sometx",
|
|
10)
|
|
},
|
|
result: &GetTxOutCmd{
|
|
id: float64(1),
|
|
Txid: "sometx",
|
|
Output: 10,
|
|
},
|
|
},
|
|
{
|
|
name: "basic gettxout + optional",
|
|
f: func() (Cmd, error) {
|
|
return NewGetTxOutCmd(float64(1),
|
|
"sometx",
|
|
10,
|
|
false)
|
|
},
|
|
result: &GetTxOutCmd{
|
|
id: float64(1),
|
|
Txid: "sometx",
|
|
Output: 10,
|
|
IncludeMempool: false,
|
|
},
|
|
},
|
|
{
|
|
name: "basic gettxsetoutinfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetTxOutSetInfoCmd(float64(1))
|
|
},
|
|
result: &GetTxOutSetInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic getwork",
|
|
f: func() (Cmd, error) {
|
|
return NewGetWorkCmd(float64(1),
|
|
WorkRequest{
|
|
Data: "some data",
|
|
Target: "our target",
|
|
Algorithm: "algo",
|
|
})
|
|
},
|
|
result: &GetWorkCmd{
|
|
id: float64(1),
|
|
Request: WorkRequest{
|
|
Data: "some data",
|
|
Target: "our target",
|
|
Algorithm: "algo",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "basic help",
|
|
f: func() (Cmd, error) {
|
|
return NewHelpCmd(float64(1))
|
|
},
|
|
result: &HelpCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic help + optional cmd",
|
|
f: func() (Cmd, error) {
|
|
return NewHelpCmd(float64(1),
|
|
"getinfo")
|
|
},
|
|
result: &HelpCmd{
|
|
id: float64(1),
|
|
Command: "getinfo",
|
|
},
|
|
},
|
|
{
|
|
name: "basic importprivkey",
|
|
f: func() (Cmd, error) {
|
|
return NewImportPrivKeyCmd(float64(1),
|
|
"somereallongprivatekey")
|
|
},
|
|
result: &ImportPrivKeyCmd{
|
|
id: float64(1),
|
|
PrivKey: "somereallongprivatekey",
|
|
Rescan: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic importprivkey + 1 opt",
|
|
f: func() (Cmd, error) {
|
|
return NewImportPrivKeyCmd(float64(1),
|
|
"somereallongprivatekey",
|
|
"some text")
|
|
},
|
|
result: &ImportPrivKeyCmd{
|
|
id: float64(1),
|
|
PrivKey: "somereallongprivatekey",
|
|
Label: "some text",
|
|
Rescan: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic importprivkey + 2 opts",
|
|
f: func() (Cmd, error) {
|
|
return NewImportPrivKeyCmd(float64(1),
|
|
"somereallongprivatekey",
|
|
"some text",
|
|
false)
|
|
},
|
|
result: &ImportPrivKeyCmd{
|
|
id: float64(1),
|
|
PrivKey: "somereallongprivatekey",
|
|
Label: "some text",
|
|
Rescan: false,
|
|
},
|
|
},
|
|
{
|
|
name: "basic importwallet",
|
|
f: func() (Cmd, error) {
|
|
return NewImportWalletCmd(float64(1),
|
|
"walletfilename.dat")
|
|
},
|
|
result: &ImportWalletCmd{
|
|
id: float64(1),
|
|
Filename: "walletfilename.dat",
|
|
},
|
|
},
|
|
{
|
|
name: "basic keypoolrefill",
|
|
f: func() (Cmd, error) {
|
|
return NewKeyPoolRefillCmd(float64(1))
|
|
},
|
|
result: &KeyPoolRefillCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic listaccounts",
|
|
f: func() (Cmd, error) {
|
|
return NewListAccountsCmd(float64(1), 1)
|
|
},
|
|
result: &ListAccountsCmd{
|
|
id: float64(1),
|
|
MinConf: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic listaddressgroupings",
|
|
f: func() (Cmd, error) {
|
|
return NewListAddressGroupingsCmd(float64(1))
|
|
},
|
|
result: &ListAddressGroupingsCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic listlockunspent",
|
|
f: func() (Cmd, error) {
|
|
return NewListLockUnspentCmd(float64(1))
|
|
},
|
|
result: &ListLockUnspentCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic listreceivedbyaccount",
|
|
f: func() (Cmd, error) {
|
|
return NewListReceivedByAccountCmd(float64(1))
|
|
},
|
|
result: &ListReceivedByAccountCmd{
|
|
id: float64(1),
|
|
MinConf: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic listtransactions",
|
|
f: func() (Cmd, error) {
|
|
return NewListTransactionsCmd(float64(1))
|
|
},
|
|
result: &ListTransactionsCmd{
|
|
id: float64(1),
|
|
Account: "",
|
|
Count: 10,
|
|
From: 0,
|
|
},
|
|
},
|
|
{
|
|
name: "listtransactions 1 optarg",
|
|
f: func() (Cmd, error) {
|
|
return NewListTransactionsCmd(float64(1), "abcde")
|
|
},
|
|
result: &ListTransactionsCmd{
|
|
id: float64(1),
|
|
Account: "abcde",
|
|
Count: 10,
|
|
From: 0,
|
|
},
|
|
},
|
|
{
|
|
name: "listtransactions 2 optargs",
|
|
f: func() (Cmd, error) {
|
|
return NewListTransactionsCmd(float64(1), "abcde", 123)
|
|
},
|
|
result: &ListTransactionsCmd{
|
|
id: float64(1),
|
|
Account: "abcde",
|
|
Count: 123,
|
|
From: 0,
|
|
},
|
|
},
|
|
{
|
|
name: "listtransactions 3 optargs",
|
|
f: func() (Cmd, error) {
|
|
return NewListTransactionsCmd(float64(1), "abcde", 123, 456)
|
|
},
|
|
result: &ListTransactionsCmd{
|
|
id: float64(1),
|
|
Account: "abcde",
|
|
Count: 123,
|
|
From: 456,
|
|
},
|
|
},
|
|
{
|
|
name: "basic listunspent",
|
|
f: func() (Cmd, error) {
|
|
return NewListUnspentCmd(float64(1))
|
|
},
|
|
result: &ListUnspentCmd{
|
|
id: float64(1),
|
|
MinConf: 1,
|
|
MaxConf: 999999,
|
|
},
|
|
},
|
|
{
|
|
name: "basic listunspent + opts",
|
|
f: func() (Cmd, error) {
|
|
return NewListUnspentCmd(float64(1), 0, 6)
|
|
},
|
|
result: &ListUnspentCmd{
|
|
id: float64(1),
|
|
MinConf: 0,
|
|
MaxConf: 6,
|
|
},
|
|
},
|
|
{
|
|
name: "basic lockunspent",
|
|
f: func() (Cmd, error) {
|
|
return NewLockUnspentCmd(float64(1), true)
|
|
},
|
|
result: &LockUnspentCmd{
|
|
id: float64(1),
|
|
Unlock: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic move",
|
|
f: func() (Cmd, error) {
|
|
return NewMoveCmd(float64(1),
|
|
"account1",
|
|
"account2",
|
|
12,
|
|
1)
|
|
},
|
|
result: &MoveCmd{
|
|
id: float64(1),
|
|
FromAccount: "account1",
|
|
ToAccount: "account2",
|
|
Amount: 12,
|
|
MinConf: 1, // the default
|
|
},
|
|
},
|
|
{
|
|
name: "basic move + optionals",
|
|
f: func() (Cmd, error) {
|
|
return NewMoveCmd(float64(1),
|
|
"account1",
|
|
"account2",
|
|
12,
|
|
1,
|
|
"some comment")
|
|
},
|
|
result: &MoveCmd{
|
|
id: float64(1),
|
|
FromAccount: "account1",
|
|
ToAccount: "account2",
|
|
Amount: 12,
|
|
MinConf: 1, // the default
|
|
Comment: "some comment",
|
|
},
|
|
},
|
|
{
|
|
name: "basic ping",
|
|
f: func() (Cmd, error) {
|
|
return NewPingCmd(float64(1))
|
|
},
|
|
result: &PingCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendfrom",
|
|
f: func() (Cmd, error) {
|
|
return NewSendFromCmd(float64(1),
|
|
"account",
|
|
"address",
|
|
12,
|
|
1)
|
|
},
|
|
result: &SendFromCmd{
|
|
id: float64(1),
|
|
FromAccount: "account",
|
|
ToAddress: "address",
|
|
Amount: 12,
|
|
MinConf: 1, // the default
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendfrom + options",
|
|
f: func() (Cmd, error) {
|
|
return NewSendFromCmd(float64(1),
|
|
"account",
|
|
"address",
|
|
12,
|
|
1,
|
|
"a comment",
|
|
"comment to")
|
|
},
|
|
result: &SendFromCmd{
|
|
id: float64(1),
|
|
FromAccount: "account",
|
|
ToAddress: "address",
|
|
Amount: 12,
|
|
MinConf: 1, // the default
|
|
Comment: "a comment",
|
|
CommentTo: "comment to",
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendmany",
|
|
f: func() (Cmd, error) {
|
|
pairs := map[string]int64{
|
|
"address A": 1000,
|
|
"address B": 2000,
|
|
"address C": 3000,
|
|
}
|
|
return NewSendManyCmd(float64(1),
|
|
"account",
|
|
pairs)
|
|
},
|
|
result: &SendManyCmd{
|
|
id: float64(1),
|
|
FromAccount: "account",
|
|
Amounts: map[string]int64{
|
|
"address A": 1000,
|
|
"address B": 2000,
|
|
"address C": 3000,
|
|
},
|
|
MinConf: 1, // the default
|
|
},
|
|
},
|
|
{
|
|
name: "sendmany + options",
|
|
f: func() (Cmd, error) {
|
|
pairs := map[string]int64{
|
|
"address A": 1000,
|
|
"address B": 2000,
|
|
"address C": 3000,
|
|
}
|
|
return NewSendManyCmd(float64(1),
|
|
"account",
|
|
pairs,
|
|
10,
|
|
"comment")
|
|
},
|
|
result: &SendManyCmd{
|
|
id: float64(1),
|
|
FromAccount: "account",
|
|
Amounts: map[string]int64{
|
|
"address A": 1000,
|
|
"address B": 2000,
|
|
"address C": 3000,
|
|
},
|
|
MinConf: 10,
|
|
Comment: "comment",
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendrawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewSendRawTransactionCmd(float64(1),
|
|
"hexstringofatx")
|
|
},
|
|
result: &SendRawTransactionCmd{
|
|
id: float64(1),
|
|
HexTx: "hexstringofatx",
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendtoaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewSendToAddressCmd(float64(1),
|
|
"somebtcaddress",
|
|
1)
|
|
},
|
|
result: &SendToAddressCmd{
|
|
id: float64(1),
|
|
Address: "somebtcaddress",
|
|
Amount: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic sendtoaddress plus optional",
|
|
f: func() (Cmd, error) {
|
|
return NewSendToAddressCmd(float64(1),
|
|
"somebtcaddress",
|
|
1,
|
|
"a comment",
|
|
"comment to")
|
|
},
|
|
result: &SendToAddressCmd{
|
|
id: float64(1),
|
|
Address: "somebtcaddress",
|
|
Amount: 1,
|
|
Comment: "a comment",
|
|
CommentTo: "comment to",
|
|
},
|
|
},
|
|
{
|
|
name: "basic setaccount",
|
|
f: func() (Cmd, error) {
|
|
return NewSetAccountCmd(float64(1),
|
|
"somebtcaddress",
|
|
"account name")
|
|
},
|
|
result: &SetAccountCmd{
|
|
id: float64(1),
|
|
Address: "somebtcaddress",
|
|
Account: "account name",
|
|
},
|
|
},
|
|
{
|
|
name: "basic setgenerate",
|
|
f: func() (Cmd, error) {
|
|
return NewSetGenerateCmd(float64(1), true)
|
|
},
|
|
result: &SetGenerateCmd{
|
|
id: float64(1),
|
|
Generate: true,
|
|
},
|
|
},
|
|
{
|
|
name: "basic setgenerate + optional",
|
|
f: func() (Cmd, error) {
|
|
return NewSetGenerateCmd(float64(1), true, 10)
|
|
},
|
|
result: &SetGenerateCmd{
|
|
id: float64(1),
|
|
Generate: true,
|
|
GenProcLimit: 10,
|
|
},
|
|
},
|
|
{
|
|
name: "basic settxfee",
|
|
f: func() (Cmd, error) {
|
|
return NewSetTxFeeCmd(float64(1), 10)
|
|
},
|
|
result: &SetTxFeeCmd{
|
|
id: float64(1),
|
|
Amount: 10,
|
|
},
|
|
},
|
|
{
|
|
name: "basic signmessage",
|
|
f: func() (Cmd, error) {
|
|
return NewSignMessageCmd(float64(1),
|
|
"btcaddress",
|
|
"a message")
|
|
},
|
|
result: &SignMessageCmd{
|
|
id: float64(1),
|
|
Address: "btcaddress",
|
|
Message: "a message",
|
|
},
|
|
},
|
|
{
|
|
name: "basic signrawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewSignRawTransactionCmd(float64(1),
|
|
"sometxstring")
|
|
},
|
|
result: &SignRawTransactionCmd{
|
|
id: float64(1),
|
|
RawTx: "sometxstring",
|
|
},
|
|
},
|
|
/* {
|
|
name: "basic signrawtransaction with optional",
|
|
f: func() (Cmd, error) {
|
|
return NewSignRawTransactionCmd(float64(1),
|
|
"sometxstring",
|
|
[]RawTxInput{
|
|
RawTxInput{
|
|
Txid: "test",
|
|
Vout: 1,
|
|
ScriptPubKey: "test",
|
|
RedeemScript: "test",
|
|
},
|
|
},
|
|
[]string{"aprivatekey", "privkey2"},
|
|
"flags")
|
|
},
|
|
result: &SignRawTransactionCmd{
|
|
id: float64(1),
|
|
RawTx: "sometxstring",
|
|
Inputs: []RawTxInput{
|
|
RawTxInput{
|
|
Txid: "test",
|
|
Vout: 1,
|
|
ScriptPubKey: "test",
|
|
RedeemScript: "test",
|
|
},
|
|
},
|
|
PrivKeys: []string{"aprivatekey", "privkey2"},
|
|
Flags: "flags",
|
|
},
|
|
},*/
|
|
{
|
|
name: "basic stop",
|
|
f: func() (Cmd, error) {
|
|
return NewStopCmd(float64(1))
|
|
},
|
|
result: &StopCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic submitblock",
|
|
f: func() (Cmd, error) {
|
|
return NewSubmitBlockCmd(float64(1),
|
|
"lotsofhex")
|
|
},
|
|
result: &SubmitBlockCmd{
|
|
id: float64(1),
|
|
HexBlock: "lotsofhex",
|
|
},
|
|
},
|
|
{
|
|
name: "submitblock with optional object",
|
|
f: func() (Cmd, error) {
|
|
return NewSubmitBlockCmd(float64(1),
|
|
"lotsofhex",
|
|
&SubmitBlockOptions{WorkId: "otherstuff"})
|
|
},
|
|
result: &SubmitBlockCmd{
|
|
id: float64(1),
|
|
HexBlock: "lotsofhex",
|
|
Options: &SubmitBlockOptions{WorkId: "otherstuff"},
|
|
},
|
|
},
|
|
{
|
|
name: "basic validateaddress",
|
|
f: func() (Cmd, error) {
|
|
return NewValidateAddressCmd(float64(1),
|
|
"somebtcaddress")
|
|
},
|
|
result: &ValidateAddressCmd{
|
|
id: float64(1),
|
|
Address: "somebtcaddress",
|
|
},
|
|
},
|
|
{
|
|
name: "basic verifychain",
|
|
f: func() (Cmd, error) {
|
|
return NewVerifyChainCmd(float64(1))
|
|
},
|
|
result: &VerifyChainCmd{
|
|
id: float64(1),
|
|
CheckLevel: 3,
|
|
CheckDepth: 288,
|
|
},
|
|
},
|
|
{
|
|
name: "basic verifychain + optional",
|
|
f: func() (Cmd, error) {
|
|
return NewVerifyChainCmd(float64(1), 4, 1)
|
|
},
|
|
result: &VerifyChainCmd{
|
|
id: float64(1),
|
|
CheckLevel: 4,
|
|
CheckDepth: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "basic verifymessage",
|
|
f: func() (Cmd, error) {
|
|
return NewVerifyMessageCmd(float64(1),
|
|
"someaddress",
|
|
"somesig",
|
|
"a message")
|
|
},
|
|
result: &VerifyMessageCmd{
|
|
id: float64(1),
|
|
Address: "someaddress",
|
|
Signature: "somesig",
|
|
Message: "a message",
|
|
},
|
|
},
|
|
{
|
|
name: "basic walletlock",
|
|
f: func() (Cmd, error) {
|
|
return NewWalletLockCmd(float64(1))
|
|
},
|
|
result: &WalletLockCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
name: "basic walletpassphrase",
|
|
f: func() (Cmd, error) {
|
|
return NewWalletPassphraseCmd(float64(1),
|
|
"phrase1",
|
|
10)
|
|
},
|
|
result: &WalletPassphraseCmd{
|
|
id: float64(1),
|
|
Passphrase: "phrase1",
|
|
Timeout: 10,
|
|
},
|
|
},
|
|
{
|
|
name: "basic walletpassphrasechange",
|
|
f: func() (Cmd, error) {
|
|
return NewWalletPassphraseChangeCmd(float64(1),
|
|
"phrase1", "phrase2")
|
|
},
|
|
result: &WalletPassphraseChangeCmd{
|
|
id: float64(1),
|
|
OldPassphrase: "phrase1",
|
|
NewPassphrase: "phrase2",
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestCmds(t *testing.T) {
|
|
for _, test := range jsoncmdtests {
|
|
c, err := test.f()
|
|
if err != nil {
|
|
t.Errorf("%s: failed to run func: %v",
|
|
test.name, err)
|
|
continue
|
|
}
|
|
|
|
msg, err := json.Marshal(c)
|
|
if err != nil {
|
|
t.Errorf("%s: failed to marshal cmd: %v",
|
|
test.name, err)
|
|
continue
|
|
}
|
|
|
|
c2, err := ParseMarshaledCmd(msg)
|
|
if err != nil {
|
|
t.Errorf("%s: failed to ummarshal cmd: %v",
|
|
test.name, err)
|
|
continue
|
|
}
|
|
|
|
if !reflect.DeepEqual(test.result, c2) {
|
|
t.Errorf("%s: unmarshal not as expected. "+
|
|
"got %v wanted %v", test.name, spew.Sdump(c2),
|
|
spew.Sdump(test.result))
|
|
}
|
|
if !reflect.DeepEqual(c, c2) {
|
|
t.Errorf("%s: unmarshal not as we started with. "+
|
|
"got %v wanted %v", test.name, spew.Sdump(c2),
|
|
spew.Sdump(c))
|
|
}
|
|
|
|
}
|
|
}
|