e1dd773e7c
Fix move need to convert amount to btc from satoshi Fix settxfee need to convert amount to btc from satoshi Fix for optional arg off by one in move. Fix for gettxout in optional args along with typo in error message. And lots of new tests.
998 lines
20 KiB
Go
998 lines
20 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 decoderawtransaction",
|
|
f: func() (Cmd, error) {
|
|
return NewDecodeRawTransactionCmd(float64(1),
|
|
"thisisahexidecimaltransaction")
|
|
},
|
|
result: &DecodeRawTransactionCmd{
|
|
id: float64(1),
|
|
HexTx: "thisisahexidecimaltransaction",
|
|
},
|
|
},
|
|
{
|
|
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), "address")
|
|
},
|
|
result: &GetNewAddressCmd{
|
|
id: float64(1),
|
|
Address: "address",
|
|
},
|
|
},
|
|
{
|
|
name: "basic getpeerinfo",
|
|
f: func() (Cmd, error) {
|
|
return NewGetPeerInfoCmd(float64(1))
|
|
},
|
|
result: &GetPeerInfoCmd{
|
|
id: float64(1),
|
|
},
|
|
},
|
|
{
|
|
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",
|
|
},
|
|
},
|
|
{
|
|
name: "basic importprivkey + 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 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 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 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", "otherstuff")
|
|
// },
|
|
// result: &SubmitBlockCmd{
|
|
// id: float64(1),
|
|
// HexBlock: "lotsofhex",
|
|
// },
|
|
// },
|
|
{
|
|
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))
|
|
}
|
|
|
|
}
|
|
}
|