// This example demonstrates how to create and marshal a command into a JSON-RPC // request. func ExampleMarshalCmd() { // Create a new getblock command. Notice the nil parameter indicates // to use the default parameter for that fields. This is a common // pattern used in all of the New<Foo>Cmd functions in this package for // optional fields. Also, notice the call to dcrjson.Bool which is a // convenience function for creating a pointer out of a primitive for // optional parameters. blockHash := "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f" gbCmd := dcrjson.NewGetBlockCmd(blockHash, dcrjson.Bool(false), nil) // Marshal the command to the format suitable for sending to the RPC // server. Typically the client would increment the id here which is // request so the response can be identified. id := 1 marshalledBytes, err := dcrjson.MarshalCmd(id, gbCmd) if err != nil { fmt.Println(err) return } // Display the marshalled command. Ordinarily this would be sent across // the wire to the RPC server, but for this example, just display it. fmt.Printf("%s\n", marshalledBytes) // Output: // {"jsonrpc":"1.0","method":"getblock","params":["000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f",false],"id":1} }
// GetBlockAsync returns an instance of a type that can be used to get the // result of the RPC at some future time by invoking the Receive function on the // returned instance. // // See GetBlock for the blocking version and more details. func (c *Client) GetBlockAsync(blockHash *chainhash.Hash) FutureGetBlockResult { hash := "" if blockHash != nil { hash = blockHash.String() } cmd := dcrjson.NewGetBlockCmd(hash, dcrjson.Bool(false), nil) return c.sendCmd(cmd) }
// GetBlockVerboseAsync returns an instance of a type that can be used to get // the result of the RPC at some future time by invoking the Receive function on // the returned instance. // // See GetBlockVerbose for the blocking version and more details. func (c *Client) GetBlockVerboseAsync(blockHash *chainhash.Hash, verboseTx bool) FutureGetBlockVerboseResult { hash := "" if blockHash != nil { hash = blockHash.String() } cmd := dcrjson.NewGetBlockCmd(hash, dcrjson.Bool(true), &verboseTx) return c.sendCmd(cmd) }
// TestHelpers tests the various helper functions which create pointers to // primitive types. func TestHelpers(t *testing.T) { t.Parallel() tests := []struct { name string f func() interface{} expected interface{} }{ { name: "bool", f: func() interface{} { return dcrjson.Bool(true) }, expected: func() interface{} { val := true return &val }(), }, { name: "int", f: func() interface{} { return dcrjson.Int(5) }, expected: func() interface{} { val := int(5) return &val }(), }, { name: "uint", f: func() interface{} { return dcrjson.Uint(5) }, expected: func() interface{} { val := uint(5) return &val }(), }, { name: "int32", f: func() interface{} { return dcrjson.Int32(5) }, expected: func() interface{} { val := int32(5) return &val }(), }, { name: "uint32", f: func() interface{} { return dcrjson.Uint32(5) }, expected: func() interface{} { val := uint32(5) return &val }(), }, { name: "int64", f: func() interface{} { return dcrjson.Int64(5) }, expected: func() interface{} { val := int64(5) return &val }(), }, { name: "uint64", f: func() interface{} { return dcrjson.Uint64(5) }, expected: func() interface{} { val := uint64(5) return &val }(), }, { name: "string", f: func() interface{} { return dcrjson.String("abc") }, expected: func() interface{} { val := "abc" return &val }(), }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { result := test.f() if !reflect.DeepEqual(result, test.expected) { t.Errorf("Test #%d (%s) unexpected value - got %v, "+ "want %v", i, test.name, result, test.expected) continue } } }
// TestBtcWalletExtCmds tests all of the btcwallet extended commands marshal and // unmarshal into valid results include handling of optional fields being // omitted in the marshalled command, while optional fields with defaults have // the default assigned on unmarshalled commands. func TestBtcWalletExtCmds(t *testing.T) { t.Parallel() testID := int(1) tests := []struct { name string newCmd func() (interface{}, error) staticCmd func() interface{} marshalled string unmarshalled interface{} }{ { name: "createnewaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("createnewaccount", "acct") }, staticCmd: func() interface{} { return dcrjson.NewCreateNewAccountCmd("acct") }, marshalled: `{"jsonrpc":"1.0","method":"createnewaccount","params":["acct"],"id":1}`, unmarshalled: &dcrjson.CreateNewAccountCmd{ Account: "acct", }, }, { name: "dumpwallet", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("dumpwallet", "filename") }, staticCmd: func() interface{} { return dcrjson.NewDumpWalletCmd("filename") }, marshalled: `{"jsonrpc":"1.0","method":"dumpwallet","params":["filename"],"id":1}`, unmarshalled: &dcrjson.DumpWalletCmd{ Filename: "filename", }, }, { name: "importaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importaddress", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewImportAddressCmd("1Address", nil) }, marshalled: `{"jsonrpc":"1.0","method":"importaddress","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.ImportAddressCmd{ Address: "1Address", Rescan: dcrjson.Bool(true), }, }, { name: "importaddress optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importaddress", "1Address", false) }, staticCmd: func() interface{} { return dcrjson.NewImportAddressCmd("1Address", dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"importaddress","params":["1Address",false],"id":1}`, unmarshalled: &dcrjson.ImportAddressCmd{ Address: "1Address", Rescan: dcrjson.Bool(false), }, }, { name: "importpubkey", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importpubkey", "031234") }, staticCmd: func() interface{} { return dcrjson.NewImportPubKeyCmd("031234", nil) }, marshalled: `{"jsonrpc":"1.0","method":"importpubkey","params":["031234"],"id":1}`, unmarshalled: &dcrjson.ImportPubKeyCmd{ PubKey: "031234", Rescan: dcrjson.Bool(true), }, }, { name: "importpubkey optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importpubkey", "031234", false) }, staticCmd: func() interface{} { return dcrjson.NewImportPubKeyCmd("031234", dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"importpubkey","params":["031234",false],"id":1}`, unmarshalled: &dcrjson.ImportPubKeyCmd{ PubKey: "031234", Rescan: dcrjson.Bool(false), }, }, { name: "importwallet", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importwallet", "filename") }, staticCmd: func() interface{} { return dcrjson.NewImportWalletCmd("filename") }, marshalled: `{"jsonrpc":"1.0","method":"importwallet","params":["filename"],"id":1}`, unmarshalled: &dcrjson.ImportWalletCmd{ Filename: "filename", }, }, { name: "renameaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("renameaccount", "oldacct", "newacct") }, staticCmd: func() interface{} { return dcrjson.NewRenameAccountCmd("oldacct", "newacct") }, marshalled: `{"jsonrpc":"1.0","method":"renameaccount","params":["oldacct","newacct"],"id":1}`, unmarshalled: &dcrjson.RenameAccountCmd{ OldAccount: "oldacct", NewAccount: "newacct", }, }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { // Marshal the command as created by the new static command // creation function. marshalled, err := dcrjson.MarshalCmd(testID, test.staticCmd()) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } // Ensure the command is created without error via the generic // new command creation function. cmd, err := test.newCmd() if err != nil { t.Errorf("Test #%d (%s) unexpected NewCmd error: %v ", i, test.name, err) } // Marshal the command as created by the generic new command // creation function. marshalled, err = dcrjson.MarshalCmd(testID, cmd) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } var request dcrjson.Request if err := json.Unmarshal(marshalled, &request); err != nil { t.Errorf("Test #%d (%s) unexpected error while "+ "unmarshalling JSON-RPC request: %v", i, test.name, err) continue } cmd, err = dcrjson.UnmarshalCmd(&request) if err != nil { t.Errorf("UnmarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !reflect.DeepEqual(cmd, test.unmarshalled) { t.Errorf("Test #%d (%s) unexpected unmarshalled command "+ "- got %s, want %s", i, test.name, fmt.Sprintf("(%T) %+[1]v", cmd), fmt.Sprintf("(%T) %+[1]v\n", test.unmarshalled)) continue } } }
// ExportWatchingWalletAsync returns an instance of a type that can be used to // get the result of the RPC at some future time by invoking the Receive // function on the returned instance. // // See ExportWatchingWallet for the blocking version and more details. // // NOTE: This is a dcrwallet extension. func (c *Client) ExportWatchingWalletAsync(account string) FutureExportWatchingWalletResult { cmd := dcrjson.NewExportWatchingWalletCmd(&account, dcrjson.Bool(true)) return c.sendCmd(cmd) }
// TestChainSvrCmds tests all of the chain server commands marshal and unmarshal // into valid results include handling of optional fields being omitted in the // marshalled command, while optional fields with defaults have the default // assigned on unmarshalled commands. func TestChainSvrCmds(t *testing.T) { t.Parallel() testID := int(1) tests := []struct { name string newCmd func() (interface{}, error) staticCmd func() interface{} marshalled string unmarshalled interface{} }{ { name: "addnode", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("addnode", "127.0.0.1", dcrjson.ANRemove) }, staticCmd: func() interface{} { return dcrjson.NewAddNodeCmd("127.0.0.1", dcrjson.ANRemove) }, marshalled: `{"jsonrpc":"1.0","method":"addnode","params":["127.0.0.1","remove"],"id":1}`, unmarshalled: &dcrjson.AddNodeCmd{Addr: "127.0.0.1", SubCmd: dcrjson.ANRemove}, }, { name: "createrawtransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("createrawtransaction", `[{"txid":"123","vout":1}]`, `{"456":0.0123}`) }, staticCmd: func() interface{} { txInputs := []dcrjson.TransactionInput{ {Txid: "123", Vout: 1}, } amounts := map[string]float64{"456": .0123} return dcrjson.NewCreateRawTransactionCmd(txInputs, amounts, nil) }, marshalled: `{"jsonrpc":"1.0","method":"createrawtransaction","params":[[{"txid":"123","vout":1,"tree":0}],{"456":0.0123}],"id":1}`, unmarshalled: &dcrjson.CreateRawTransactionCmd{ Inputs: []dcrjson.TransactionInput{{Txid: "123", Vout: 1}}, Amounts: map[string]float64{"456": .0123}, }, }, { name: "createrawtransaction optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("createrawtransaction", `[{"txid":"123","vout":1,"tree":0}]`, `{"456":0.0123}`, int64(12312333333)) }, staticCmd: func() interface{} { txInputs := []dcrjson.TransactionInput{ {Txid: "123", Vout: 1}, } amounts := map[string]float64{"456": .0123} return dcrjson.NewCreateRawTransactionCmd(txInputs, amounts, dcrjson.Int64(12312333333)) }, marshalled: `{"jsonrpc":"1.0","method":"createrawtransaction","params":[[{"txid":"123","vout":1,"tree":0}],{"456":0.0123},12312333333],"id":1}`, unmarshalled: &dcrjson.CreateRawTransactionCmd{ Inputs: []dcrjson.TransactionInput{{Txid: "123", Vout: 1}}, Amounts: map[string]float64{"456": .0123}, LockTime: dcrjson.Int64(12312333333), }, }, { name: "decoderawtransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("decoderawtransaction", "123") }, staticCmd: func() interface{} { return dcrjson.NewDecodeRawTransactionCmd("123") }, marshalled: `{"jsonrpc":"1.0","method":"decoderawtransaction","params":["123"],"id":1}`, unmarshalled: &dcrjson.DecodeRawTransactionCmd{HexTx: "123"}, }, { name: "decodescript", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("decodescript", "00") }, staticCmd: func() interface{} { return dcrjson.NewDecodeScriptCmd("00") }, marshalled: `{"jsonrpc":"1.0","method":"decodescript","params":["00"],"id":1}`, unmarshalled: &dcrjson.DecodeScriptCmd{HexScript: "00"}, }, { name: "getaddednodeinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getaddednodeinfo", true) }, staticCmd: func() interface{} { return dcrjson.NewGetAddedNodeInfoCmd(true, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getaddednodeinfo","params":[true],"id":1}`, unmarshalled: &dcrjson.GetAddedNodeInfoCmd{DNS: true, Node: nil}, }, { name: "getaddednodeinfo optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getaddednodeinfo", true, "127.0.0.1") }, staticCmd: func() interface{} { return dcrjson.NewGetAddedNodeInfoCmd(true, dcrjson.String("127.0.0.1")) }, marshalled: `{"jsonrpc":"1.0","method":"getaddednodeinfo","params":[true,"127.0.0.1"],"id":1}`, unmarshalled: &dcrjson.GetAddedNodeInfoCmd{ DNS: true, Node: dcrjson.String("127.0.0.1"), }, }, { name: "getbestblockhash", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getbestblockhash") }, staticCmd: func() interface{} { return dcrjson.NewGetBestBlockHashCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getbestblockhash","params":[],"id":1}`, unmarshalled: &dcrjson.GetBestBlockHashCmd{}, }, { name: "getblock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblock", "123") }, staticCmd: func() interface{} { return dcrjson.NewGetBlockCmd("123", nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getblock","params":["123"],"id":1}`, unmarshalled: &dcrjson.GetBlockCmd{ Hash: "123", Verbose: dcrjson.Bool(true), VerboseTx: dcrjson.Bool(false), }, }, { name: "getblock required optional1", newCmd: func() (interface{}, error) { // Intentionally use a source param that is // more pointers than the destination to // exercise that path. verbosePtr := dcrjson.Bool(true) return dcrjson.NewCmd("getblock", "123", &verbosePtr) }, staticCmd: func() interface{} { return dcrjson.NewGetBlockCmd("123", dcrjson.Bool(true), nil) }, marshalled: `{"jsonrpc":"1.0","method":"getblock","params":["123",true],"id":1}`, unmarshalled: &dcrjson.GetBlockCmd{ Hash: "123", Verbose: dcrjson.Bool(true), VerboseTx: dcrjson.Bool(false), }, }, { name: "getblock required optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblock", "123", true, true) }, staticCmd: func() interface{} { return dcrjson.NewGetBlockCmd("123", dcrjson.Bool(true), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"getblock","params":["123",true,true],"id":1}`, unmarshalled: &dcrjson.GetBlockCmd{ Hash: "123", Verbose: dcrjson.Bool(true), VerboseTx: dcrjson.Bool(true), }, }, { name: "getblockchaininfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblockchaininfo") }, staticCmd: func() interface{} { return dcrjson.NewGetBlockChainInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getblockchaininfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetBlockChainInfoCmd{}, }, { name: "getblockcount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblockcount") }, staticCmd: func() interface{} { return dcrjson.NewGetBlockCountCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getblockcount","params":[],"id":1}`, unmarshalled: &dcrjson.GetBlockCountCmd{}, }, { name: "getblockhash", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblockhash", 123) }, staticCmd: func() interface{} { return dcrjson.NewGetBlockHashCmd(123) }, marshalled: `{"jsonrpc":"1.0","method":"getblockhash","params":[123],"id":1}`, unmarshalled: &dcrjson.GetBlockHashCmd{Index: 123}, }, { name: "getblockheader", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblockheader", "123") }, staticCmd: func() interface{} { return dcrjson.NewGetBlockHeaderCmd("123", nil) }, marshalled: `{"jsonrpc":"1.0","method":"getblockheader","params":["123"],"id":1}`, unmarshalled: &dcrjson.GetBlockHeaderCmd{ Hash: "123", Verbose: dcrjson.Bool(true), }, }, { name: "getblocktemplate", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblocktemplate") }, staticCmd: func() interface{} { return dcrjson.NewGetBlockTemplateCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"getblocktemplate","params":[],"id":1}`, unmarshalled: &dcrjson.GetBlockTemplateCmd{Request: nil}, }, { name: "getblocktemplate optional - template request", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblocktemplate", `{"mode":"template","capabilities":["longpoll","coinbasetxn"]}`) }, staticCmd: func() interface{} { template := dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, } return dcrjson.NewGetBlockTemplateCmd(&template) }, marshalled: `{"jsonrpc":"1.0","method":"getblocktemplate","params":[{"mode":"template","capabilities":["longpoll","coinbasetxn"]}],"id":1}`, unmarshalled: &dcrjson.GetBlockTemplateCmd{ Request: &dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, }, }, }, { name: "getblocktemplate optional - template request with tweaks", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblocktemplate", `{"mode":"template","capabilities":["longpoll","coinbasetxn"],"sigoplimit":500,"sizelimit":100000000,"maxversion":2}`) }, staticCmd: func() interface{} { template := dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, SigOpLimit: 500, SizeLimit: 100000000, MaxVersion: 2, } return dcrjson.NewGetBlockTemplateCmd(&template) }, marshalled: `{"jsonrpc":"1.0","method":"getblocktemplate","params":[{"mode":"template","capabilities":["longpoll","coinbasetxn"],"sigoplimit":500,"sizelimit":100000000,"maxversion":2}],"id":1}`, unmarshalled: &dcrjson.GetBlockTemplateCmd{ Request: &dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, SigOpLimit: int64(500), SizeLimit: int64(100000000), MaxVersion: 2, }, }, }, { name: "getblocktemplate optional - template request with tweaks 2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getblocktemplate", `{"mode":"template","capabilities":["longpoll","coinbasetxn"],"sigoplimit":true,"sizelimit":100000000,"maxversion":2}`) }, staticCmd: func() interface{} { template := dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, SigOpLimit: true, SizeLimit: 100000000, MaxVersion: 2, } return dcrjson.NewGetBlockTemplateCmd(&template) }, marshalled: `{"jsonrpc":"1.0","method":"getblocktemplate","params":[{"mode":"template","capabilities":["longpoll","coinbasetxn"],"sigoplimit":true,"sizelimit":100000000,"maxversion":2}],"id":1}`, unmarshalled: &dcrjson.GetBlockTemplateCmd{ Request: &dcrjson.TemplateRequest{ Mode: "template", Capabilities: []string{"longpoll", "coinbasetxn"}, SigOpLimit: true, SizeLimit: int64(100000000), MaxVersion: 2, }, }, }, { name: "getchaintips", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getchaintips") }, staticCmd: func() interface{} { return dcrjson.NewGetChainTipsCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getchaintips","params":[],"id":1}`, unmarshalled: &dcrjson.GetChainTipsCmd{}, }, { name: "getconnectioncount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getconnectioncount") }, staticCmd: func() interface{} { return dcrjson.NewGetConnectionCountCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getconnectioncount","params":[],"id":1}`, unmarshalled: &dcrjson.GetConnectionCountCmd{}, }, { name: "getdifficulty", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getdifficulty") }, staticCmd: func() interface{} { return dcrjson.NewGetDifficultyCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getdifficulty","params":[],"id":1}`, unmarshalled: &dcrjson.GetDifficultyCmd{}, }, { name: "getgenerate", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getgenerate") }, staticCmd: func() interface{} { return dcrjson.NewGetGenerateCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getgenerate","params":[],"id":1}`, unmarshalled: &dcrjson.GetGenerateCmd{}, }, { name: "gethashespersec", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gethashespersec") }, staticCmd: func() interface{} { return dcrjson.NewGetHashesPerSecCmd() }, marshalled: `{"jsonrpc":"1.0","method":"gethashespersec","params":[],"id":1}`, unmarshalled: &dcrjson.GetHashesPerSecCmd{}, }, { name: "getinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getinfo") }, staticCmd: func() interface{} { return dcrjson.NewGetInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getinfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetInfoCmd{}, }, { name: "getmempoolinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getmempoolinfo") }, staticCmd: func() interface{} { return dcrjson.NewGetMempoolInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getmempoolinfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetMempoolInfoCmd{}, }, { name: "getmininginfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getmininginfo") }, staticCmd: func() interface{} { return dcrjson.NewGetMiningInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getmininginfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetMiningInfoCmd{}, }, { name: "getnetworkinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnetworkinfo") }, staticCmd: func() interface{} { return dcrjson.NewGetNetworkInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getnetworkinfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetNetworkInfoCmd{}, }, { name: "getnettotals", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnettotals") }, staticCmd: func() interface{} { return dcrjson.NewGetNetTotalsCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getnettotals","params":[],"id":1}`, unmarshalled: &dcrjson.GetNetTotalsCmd{}, }, { name: "getnetworkhashps", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnetworkhashps") }, staticCmd: func() interface{} { return dcrjson.NewGetNetworkHashPSCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getnetworkhashps","params":[],"id":1}`, unmarshalled: &dcrjson.GetNetworkHashPSCmd{ Blocks: dcrjson.Int(120), Height: dcrjson.Int(-1), }, }, { name: "getnetworkhashps optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnetworkhashps", 200) }, staticCmd: func() interface{} { return dcrjson.NewGetNetworkHashPSCmd(dcrjson.Int(200), nil) }, marshalled: `{"jsonrpc":"1.0","method":"getnetworkhashps","params":[200],"id":1}`, unmarshalled: &dcrjson.GetNetworkHashPSCmd{ Blocks: dcrjson.Int(200), Height: dcrjson.Int(-1), }, }, { name: "getnetworkhashps optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnetworkhashps", 200, 123) }, staticCmd: func() interface{} { return dcrjson.NewGetNetworkHashPSCmd(dcrjson.Int(200), dcrjson.Int(123)) }, marshalled: `{"jsonrpc":"1.0","method":"getnetworkhashps","params":[200,123],"id":1}`, unmarshalled: &dcrjson.GetNetworkHashPSCmd{ Blocks: dcrjson.Int(200), Height: dcrjson.Int(123), }, }, { name: "getpeerinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getpeerinfo") }, staticCmd: func() interface{} { return dcrjson.NewGetPeerInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"getpeerinfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetPeerInfoCmd{}, }, { name: "getrawmempool", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawmempool") }, staticCmd: func() interface{} { return dcrjson.NewGetRawMempoolCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getrawmempool","params":[],"id":1}`, unmarshalled: &dcrjson.GetRawMempoolCmd{ Verbose: dcrjson.Bool(false), }, }, { name: "getrawmempool optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawmempool", false) }, staticCmd: func() interface{} { return dcrjson.NewGetRawMempoolCmd(dcrjson.Bool(false), nil) }, marshalled: `{"jsonrpc":"1.0","method":"getrawmempool","params":[false],"id":1}`, unmarshalled: &dcrjson.GetRawMempoolCmd{ Verbose: dcrjson.Bool(false), }, }, { name: "getrawmempool optional 2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawmempool", false, "all") }, staticCmd: func() interface{} { return dcrjson.NewGetRawMempoolCmd(dcrjson.Bool(false), dcrjson.String("all")) }, marshalled: `{"jsonrpc":"1.0","method":"getrawmempool","params":[false,"all"],"id":1}`, unmarshalled: &dcrjson.GetRawMempoolCmd{ Verbose: dcrjson.Bool(false), TxType: dcrjson.String("all"), }, }, { name: "getrawtransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawtransaction", "123") }, staticCmd: func() interface{} { return dcrjson.NewGetRawTransactionCmd("123", nil) }, marshalled: `{"jsonrpc":"1.0","method":"getrawtransaction","params":["123"],"id":1}`, unmarshalled: &dcrjson.GetRawTransactionCmd{ Txid: "123", Verbose: dcrjson.Int(0), }, }, { name: "getrawtransaction optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawtransaction", "123", 1) }, staticCmd: func() interface{} { return dcrjson.NewGetRawTransactionCmd("123", dcrjson.Int(1)) }, marshalled: `{"jsonrpc":"1.0","method":"getrawtransaction","params":["123",1],"id":1}`, unmarshalled: &dcrjson.GetRawTransactionCmd{ Txid: "123", Verbose: dcrjson.Int(1), }, }, { name: "gettxout", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettxout", "123", 1) }, staticCmd: func() interface{} { return dcrjson.NewGetTxOutCmd("123", 1, nil) }, marshalled: `{"jsonrpc":"1.0","method":"gettxout","params":["123",1],"id":1}`, unmarshalled: &dcrjson.GetTxOutCmd{ Txid: "123", Vout: 1, IncludeMempool: dcrjson.Bool(true), }, }, { name: "gettxout optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettxout", "123", 1, true) }, staticCmd: func() interface{} { return dcrjson.NewGetTxOutCmd("123", 1, dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"gettxout","params":["123",1,true],"id":1}`, unmarshalled: &dcrjson.GetTxOutCmd{ Txid: "123", Vout: 1, IncludeMempool: dcrjson.Bool(true), }, }, { name: "gettxoutproof", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettxoutproof", []string{"123", "456"}) }, staticCmd: func() interface{} { return dcrjson.NewGetTxOutProofCmd([]string{"123", "456"}, nil) }, marshalled: `{"jsonrpc":"1.0","method":"gettxoutproof","params":[["123","456"]],"id":1}`, unmarshalled: &dcrjson.GetTxOutProofCmd{ TxIDs: []string{"123", "456"}, }, }, { name: "gettxoutproof optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettxoutproof", []string{"123", "456"}, dcrjson.String("000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf")) }, staticCmd: func() interface{} { return dcrjson.NewGetTxOutProofCmd([]string{"123", "456"}, dcrjson.String("000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf")) }, marshalled: `{"jsonrpc":"1.0","method":"gettxoutproof","params":[["123","456"],` + `"000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf"],"id":1}`, unmarshalled: &dcrjson.GetTxOutProofCmd{ TxIDs: []string{"123", "456"}, BlockHash: dcrjson.String("000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf"), }, }, { name: "gettxoutsetinfo", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettxoutsetinfo") }, staticCmd: func() interface{} { return dcrjson.NewGetTxOutSetInfoCmd() }, marshalled: `{"jsonrpc":"1.0","method":"gettxoutsetinfo","params":[],"id":1}`, unmarshalled: &dcrjson.GetTxOutSetInfoCmd{}, }, { name: "getwork", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getwork") }, staticCmd: func() interface{} { return dcrjson.NewGetWorkCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"getwork","params":[],"id":1}`, unmarshalled: &dcrjson.GetWorkCmd{ Data: nil, }, }, { name: "getwork optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getwork", "00112233") }, staticCmd: func() interface{} { return dcrjson.NewGetWorkCmd(dcrjson.String("00112233")) }, marshalled: `{"jsonrpc":"1.0","method":"getwork","params":["00112233"],"id":1}`, unmarshalled: &dcrjson.GetWorkCmd{ Data: dcrjson.String("00112233"), }, }, { name: "help", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("help") }, staticCmd: func() interface{} { return dcrjson.NewHelpCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"help","params":[],"id":1}`, unmarshalled: &dcrjson.HelpCmd{ Command: nil, }, }, { name: "help optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("help", "getblock") }, staticCmd: func() interface{} { return dcrjson.NewHelpCmd(dcrjson.String("getblock")) }, marshalled: `{"jsonrpc":"1.0","method":"help","params":["getblock"],"id":1}`, unmarshalled: &dcrjson.HelpCmd{ Command: dcrjson.String("getblock"), }, }, { name: "invalidateblock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("invalidateblock", "123") }, staticCmd: func() interface{} { return dcrjson.NewInvalidateBlockCmd("123") }, marshalled: `{"jsonrpc":"1.0","method":"invalidateblock","params":["123"],"id":1}`, unmarshalled: &dcrjson.InvalidateBlockCmd{ BlockHash: "123", }, }, { name: "ping", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("ping") }, staticCmd: func() interface{} { return dcrjson.NewPingCmd() }, marshalled: `{"jsonrpc":"1.0","method":"ping","params":[],"id":1}`, unmarshalled: &dcrjson.PingCmd{}, }, { name: "reconsiderblock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("reconsiderblock", "123") }, staticCmd: func() interface{} { return dcrjson.NewReconsiderBlockCmd("123") }, marshalled: `{"jsonrpc":"1.0","method":"reconsiderblock","params":["123"],"id":1}`, unmarshalled: &dcrjson.ReconsiderBlockCmd{ BlockHash: "123", }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", nil, nil, nil, nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(1), Skip: dcrjson.Int(0), Count: dcrjson.Int(100), VinExtra: dcrjson.Int(0), Reverse: dcrjson.Bool(false), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), nil, nil, nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(0), Count: dcrjson.Int(100), VinExtra: dcrjson.Int(0), Reverse: dcrjson.Bool(false), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0, 5) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), dcrjson.Int(5), nil, nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0,5],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(5), Count: dcrjson.Int(100), VinExtra: dcrjson.Int(0), Reverse: dcrjson.Bool(false), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0, 5, 10) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), dcrjson.Int(5), dcrjson.Int(10), nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0,5,10],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(5), Count: dcrjson.Int(10), VinExtra: dcrjson.Int(0), Reverse: dcrjson.Bool(false), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0, 5, 10, 1) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), dcrjson.Int(5), dcrjson.Int(10), dcrjson.Int(1), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0,5,10,1],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(5), Count: dcrjson.Int(10), VinExtra: dcrjson.Int(1), Reverse: dcrjson.Bool(false), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0, 5, 10, 1, true) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), dcrjson.Int(5), dcrjson.Int(10), dcrjson.Int(1), dcrjson.Bool(true), nil) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0,5,10,1,true],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(5), Count: dcrjson.Int(10), VinExtra: dcrjson.Int(1), Reverse: dcrjson.Bool(true), FilterAddrs: nil, }, }, { name: "searchrawtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("searchrawtransactions", "1Address", 0, 5, 10, 1, true, []string{"1Address"}) }, staticCmd: func() interface{} { return dcrjson.NewSearchRawTransactionsCmd("1Address", dcrjson.Int(0), dcrjson.Int(5), dcrjson.Int(10), dcrjson.Int(1), dcrjson.Bool(true), &[]string{"1Address"}) }, marshalled: `{"jsonrpc":"1.0","method":"searchrawtransactions","params":["1Address",0,5,10,1,true,["1Address"]],"id":1}`, unmarshalled: &dcrjson.SearchRawTransactionsCmd{ Address: "1Address", Verbose: dcrjson.Int(0), Skip: dcrjson.Int(5), Count: dcrjson.Int(10), VinExtra: dcrjson.Int(1), Reverse: dcrjson.Bool(true), FilterAddrs: &[]string{"1Address"}, }, }, { name: "sendrawtransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendrawtransaction", "1122") }, staticCmd: func() interface{} { return dcrjson.NewSendRawTransactionCmd("1122", nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendrawtransaction","params":["1122"],"id":1}`, unmarshalled: &dcrjson.SendRawTransactionCmd{ HexTx: "1122", AllowHighFees: dcrjson.Bool(false), }, }, { name: "sendrawtransaction optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendrawtransaction", "1122", false) }, staticCmd: func() interface{} { return dcrjson.NewSendRawTransactionCmd("1122", dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"sendrawtransaction","params":["1122",false],"id":1}`, unmarshalled: &dcrjson.SendRawTransactionCmd{ HexTx: "1122", AllowHighFees: dcrjson.Bool(false), }, }, { name: "setgenerate", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("setgenerate", true) }, staticCmd: func() interface{} { return dcrjson.NewSetGenerateCmd(true, nil) }, marshalled: `{"jsonrpc":"1.0","method":"setgenerate","params":[true],"id":1}`, unmarshalled: &dcrjson.SetGenerateCmd{ Generate: true, GenProcLimit: dcrjson.Int(-1), }, }, { name: "setgenerate optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("setgenerate", true, 6) }, staticCmd: func() interface{} { return dcrjson.NewSetGenerateCmd(true, dcrjson.Int(6)) }, marshalled: `{"jsonrpc":"1.0","method":"setgenerate","params":[true,6],"id":1}`, unmarshalled: &dcrjson.SetGenerateCmd{ Generate: true, GenProcLimit: dcrjson.Int(6), }, }, { name: "stop", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("stop") }, staticCmd: func() interface{} { return dcrjson.NewStopCmd() }, marshalled: `{"jsonrpc":"1.0","method":"stop","params":[],"id":1}`, unmarshalled: &dcrjson.StopCmd{}, }, { name: "submitblock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("submitblock", "112233") }, staticCmd: func() interface{} { return dcrjson.NewSubmitBlockCmd("112233", nil) }, marshalled: `{"jsonrpc":"1.0","method":"submitblock","params":["112233"],"id":1}`, unmarshalled: &dcrjson.SubmitBlockCmd{ HexBlock: "112233", Options: nil, }, }, { name: "submitblock optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("submitblock", "112233", `{"workid":"12345"}`) }, staticCmd: func() interface{} { options := dcrjson.SubmitBlockOptions{ WorkID: "12345", } return dcrjson.NewSubmitBlockCmd("112233", &options) }, marshalled: `{"jsonrpc":"1.0","method":"submitblock","params":["112233",{"workid":"12345"}],"id":1}`, unmarshalled: &dcrjson.SubmitBlockCmd{ HexBlock: "112233", Options: &dcrjson.SubmitBlockOptions{ WorkID: "12345", }, }, }, { name: "validateaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("validateaddress", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewValidateAddressCmd("1Address") }, marshalled: `{"jsonrpc":"1.0","method":"validateaddress","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.ValidateAddressCmd{ Address: "1Address", }, }, { name: "verifychain", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("verifychain") }, staticCmd: func() interface{} { return dcrjson.NewVerifyChainCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"verifychain","params":[],"id":1}`, unmarshalled: &dcrjson.VerifyChainCmd{ CheckLevel: dcrjson.Int64(3), CheckDepth: dcrjson.Int64(288), }, }, { name: "verifychain optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("verifychain", 2) }, staticCmd: func() interface{} { return dcrjson.NewVerifyChainCmd(dcrjson.Int64(2), nil) }, marshalled: `{"jsonrpc":"1.0","method":"verifychain","params":[2],"id":1}`, unmarshalled: &dcrjson.VerifyChainCmd{ CheckLevel: dcrjson.Int64(2), CheckDepth: dcrjson.Int64(288), }, }, { name: "verifychain optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("verifychain", 2, 500) }, staticCmd: func() interface{} { return dcrjson.NewVerifyChainCmd(dcrjson.Int64(2), dcrjson.Int64(500)) }, marshalled: `{"jsonrpc":"1.0","method":"verifychain","params":[2,500],"id":1}`, unmarshalled: &dcrjson.VerifyChainCmd{ CheckLevel: dcrjson.Int64(2), CheckDepth: dcrjson.Int64(500), }, }, { name: "verifymessage", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("verifymessage", "1Address", "301234", "test") }, staticCmd: func() interface{} { return dcrjson.NewVerifyMessageCmd("1Address", "301234", "test") }, marshalled: `{"jsonrpc":"1.0","method":"verifymessage","params":["1Address","301234","test"],"id":1}`, unmarshalled: &dcrjson.VerifyMessageCmd{ Address: "1Address", Signature: "301234", Message: "test", }, }, { name: "verifytxoutproof", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("verifytxoutproof", "test") }, staticCmd: func() interface{} { return dcrjson.NewVerifyTxOutProofCmd("test") }, marshalled: `{"jsonrpc":"1.0","method":"verifytxoutproof","params":["test"],"id":1}`, unmarshalled: &dcrjson.VerifyTxOutProofCmd{ Proof: "test", }, }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { // Marshal the command as created by the new static command // creation function. marshalled, err := dcrjson.MarshalCmd(testID, test.staticCmd()) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) t.Errorf("\n%s\n%s", marshalled, test.marshalled) continue } // Ensure the command is created without error via the generic // new command creation function. cmd, err := test.newCmd() if err != nil { t.Errorf("Test #%d (%s) unexpected NewCmd error: %v ", i, test.name, err) } // Marshal the command as created by the generic new command // creation function. marshalled, err = dcrjson.MarshalCmd(testID, cmd) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } var request dcrjson.Request if err := json.Unmarshal(marshalled, &request); err != nil { t.Errorf("Test #%d (%s) unexpected error while "+ "unmarshalling JSON-RPC request: %v", i, test.name, err) continue } cmd, err = dcrjson.UnmarshalCmd(&request) if err != nil { t.Errorf("UnmarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !reflect.DeepEqual(cmd, test.unmarshalled) { t.Errorf("Test #%d (%s) unexpected unmarshalled command "+ "- got %s, want %s", i, test.name, fmt.Sprintf("(%T) %+[1]v", cmd), fmt.Sprintf("(%T) %+[1]v\n", test.unmarshalled)) continue } } }
// TestChainSvrWsCmds tests all of the chain server websocket-specific commands // marshal and unmarshal into valid results include handling of optional fields // being omitted in the marshalled command, while optional fields with defaults // have the default assigned on unmarshalled commands. func TestChainSvrWsCmds(t *testing.T) { t.Parallel() testID := int(1) tests := []struct { name string newCmd func() (interface{}, error) staticCmd func() interface{} marshalled string unmarshalled interface{} }{ { name: "authenticate", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("authenticate", "user", "pass") }, staticCmd: func() interface{} { return dcrjson.NewAuthenticateCmd("user", "pass") }, marshalled: `{"jsonrpc":"1.0","method":"authenticate","params":["user","pass"],"id":1}`, unmarshalled: &dcrjson.AuthenticateCmd{Username: "******", Passphrase: "pass"}, }, { name: "notifyblocks", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("notifyblocks") }, staticCmd: func() interface{} { return dcrjson.NewNotifyBlocksCmd() }, marshalled: `{"jsonrpc":"1.0","method":"notifyblocks","params":[],"id":1}`, unmarshalled: &dcrjson.NotifyBlocksCmd{}, }, { name: "stopnotifyblocks", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("stopnotifyblocks") }, staticCmd: func() interface{} { return dcrjson.NewStopNotifyBlocksCmd() }, marshalled: `{"jsonrpc":"1.0","method":"stopnotifyblocks","params":[],"id":1}`, unmarshalled: &dcrjson.StopNotifyBlocksCmd{}, }, { name: "notifynewtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("notifynewtransactions") }, staticCmd: func() interface{} { return dcrjson.NewNotifyNewTransactionsCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"notifynewtransactions","params":[],"id":1}`, unmarshalled: &dcrjson.NotifyNewTransactionsCmd{ Verbose: dcrjson.Bool(false), }, }, { name: "notifynewtransactions optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("notifynewtransactions", true) }, staticCmd: func() interface{} { return dcrjson.NewNotifyNewTransactionsCmd(dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"notifynewtransactions","params":[true],"id":1}`, unmarshalled: &dcrjson.NotifyNewTransactionsCmd{ Verbose: dcrjson.Bool(true), }, }, { name: "stopnotifynewtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("stopnotifynewtransactions") }, staticCmd: func() interface{} { return dcrjson.NewStopNotifyNewTransactionsCmd() }, marshalled: `{"jsonrpc":"1.0","method":"stopnotifynewtransactions","params":[],"id":1}`, unmarshalled: &dcrjson.StopNotifyNewTransactionsCmd{}, }, { name: "rescan", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("rescan", "0000000000000000000000000000000000000000000000000000000000000123") }, staticCmd: func() interface{} { return dcrjson.NewRescanCmd("0000000000000000000000000000000000000000000000000000000000000123") }, marshalled: `{"jsonrpc":"1.0","method":"rescan","params":["0000000000000000000000000000000000000000000000000000000000000123"],"id":1}`, unmarshalled: &dcrjson.RescanCmd{ BlockHashes: "0000000000000000000000000000000000000000000000000000000000000123", }, }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { // Marshal the command as created by the new static command // creation function. marshalled, err := dcrjson.MarshalCmd(testID, test.staticCmd()) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } // Ensure the command is created without error via the generic // new command creation function. cmd, err := test.newCmd() if err != nil { t.Errorf("Test #%d (%s) unexpected NewCmd error: %v ", i, test.name, err) } // Marshal the command as created by the generic new command // creation function. marshalled, err = dcrjson.MarshalCmd(testID, cmd) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } var request dcrjson.Request if err := json.Unmarshal(marshalled, &request); err != nil { t.Errorf("Test #%d (%s) unexpected error while "+ "unmarshalling JSON-RPC request: %v", i, test.name, err) continue } cmd, err = dcrjson.UnmarshalCmd(&request) if err != nil { t.Errorf("UnmarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !reflect.DeepEqual(cmd, test.unmarshalled) { t.Errorf("Test #%d (%s) unexpected unmarshalled command "+ "- got %s, want %s", i, test.name, fmt.Sprintf("(%T) %+[1]v", cmd), fmt.Sprintf("(%T) %+[1]v\n", test.unmarshalled)) continue } } }
// TestWalletSvrCmds tests all of the wallet server commands marshal and // unmarshal into valid results include handling of optional fields being // omitted in the marshalled command, while optional fields with defaults have // the default assigned on unmarshalled commands. func TestWalletSvrCmds(t *testing.T) { t.Parallel() testID := int(1) tests := []struct { name string newCmd func() (interface{}, error) staticCmd func() interface{} marshalled string unmarshalled interface{} }{ { name: "addmultisigaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("addmultisigaddress", 2, []string{"031234", "035678"}) }, staticCmd: func() interface{} { keys := []string{"031234", "035678"} return dcrjson.NewAddMultisigAddressCmd(2, keys, nil) }, marshalled: `{"jsonrpc":"1.0","method":"addmultisigaddress","params":[2,["031234","035678"]],"id":1}`, unmarshalled: &dcrjson.AddMultisigAddressCmd{ NRequired: 2, Keys: []string{"031234", "035678"}, Account: nil, }, }, { name: "addmultisigaddress optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("addmultisigaddress", 2, []string{"031234", "035678"}, "test") }, staticCmd: func() interface{} { keys := []string{"031234", "035678"} return dcrjson.NewAddMultisigAddressCmd(2, keys, dcrjson.String("test")) }, marshalled: `{"jsonrpc":"1.0","method":"addmultisigaddress","params":[2,["031234","035678"],"test"],"id":1}`, unmarshalled: &dcrjson.AddMultisigAddressCmd{ NRequired: 2, Keys: []string{"031234", "035678"}, Account: dcrjson.String("test"), }, }, { name: "createmultisig", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("createmultisig", 2, []string{"031234", "035678"}) }, staticCmd: func() interface{} { keys := []string{"031234", "035678"} return dcrjson.NewCreateMultisigCmd(2, keys) }, marshalled: `{"jsonrpc":"1.0","method":"createmultisig","params":[2,["031234","035678"]],"id":1}`, unmarshalled: &dcrjson.CreateMultisigCmd{ NRequired: 2, Keys: []string{"031234", "035678"}, }, }, { name: "dumpprivkey", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("dumpprivkey", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewDumpPrivKeyCmd("1Address") }, marshalled: `{"jsonrpc":"1.0","method":"dumpprivkey","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.DumpPrivKeyCmd{ Address: "1Address", }, }, { name: "encryptwallet", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("encryptwallet", "pass") }, staticCmd: func() interface{} { return dcrjson.NewEncryptWalletCmd("pass") }, marshalled: `{"jsonrpc":"1.0","method":"encryptwallet","params":["pass"],"id":1}`, unmarshalled: &dcrjson.EncryptWalletCmd{ Passphrase: "pass", }, }, { name: "estimatefee", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("estimatefee", 6) }, staticCmd: func() interface{} { return dcrjson.NewEstimateFeeCmd(6) }, marshalled: `{"jsonrpc":"1.0","method":"estimatefee","params":[6],"id":1}`, unmarshalled: &dcrjson.EstimateFeeCmd{ NumBlocks: 6, }, }, { name: "estimatepriority", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("estimatepriority", 6) }, staticCmd: func() interface{} { return dcrjson.NewEstimatePriorityCmd(6) }, marshalled: `{"jsonrpc":"1.0","method":"estimatepriority","params":[6],"id":1}`, unmarshalled: &dcrjson.EstimatePriorityCmd{ NumBlocks: 6, }, }, { name: "getaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getaccount", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewGetAccountCmd("1Address") }, marshalled: `{"jsonrpc":"1.0","method":"getaccount","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.GetAccountCmd{ Address: "1Address", }, }, { name: "getaccountaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getaccountaddress", "acct") }, staticCmd: func() interface{} { return dcrjson.NewGetAccountAddressCmd("acct") }, marshalled: `{"jsonrpc":"1.0","method":"getaccountaddress","params":["acct"],"id":1}`, unmarshalled: &dcrjson.GetAccountAddressCmd{ Account: "acct", }, }, { name: "getaddressesbyaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getaddressesbyaccount", "acct") }, staticCmd: func() interface{} { return dcrjson.NewGetAddressesByAccountCmd("acct") }, marshalled: `{"jsonrpc":"1.0","method":"getaddressesbyaccount","params":["acct"],"id":1}`, unmarshalled: &dcrjson.GetAddressesByAccountCmd{ Account: "acct", }, }, { name: "getbalance", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getbalance") }, staticCmd: func() interface{} { return dcrjson.NewGetBalanceCmd(nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getbalance","params":[],"id":1}`, unmarshalled: &dcrjson.GetBalanceCmd{ Account: nil, MinConf: dcrjson.Int(1), }, }, { name: "getbalance optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getbalance", "acct") }, staticCmd: func() interface{} { return dcrjson.NewGetBalanceCmd(dcrjson.String("acct"), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getbalance","params":["acct"],"id":1}`, unmarshalled: &dcrjson.GetBalanceCmd{ Account: dcrjson.String("acct"), MinConf: dcrjson.Int(1), }, }, { name: "getbalance optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getbalance", "acct", 6) }, staticCmd: func() interface{} { return dcrjson.NewGetBalanceCmd(dcrjson.String("acct"), dcrjson.Int(6), nil) }, marshalled: `{"jsonrpc":"1.0","method":"getbalance","params":["acct",6],"id":1}`, unmarshalled: &dcrjson.GetBalanceCmd{ Account: dcrjson.String("acct"), MinConf: dcrjson.Int(6), }, }, { name: "getnewaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnewaddress") }, staticCmd: func() interface{} { return dcrjson.NewGetNewAddressCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getnewaddress","params":[],"id":1}`, unmarshalled: &dcrjson.GetNewAddressCmd{ Account: nil, Verbose: dcrjson.Bool(false), }, }, { name: "getnewaddress optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getnewaddress", "acct", "true") }, staticCmd: func() interface{} { return dcrjson.NewGetNewAddressCmd(dcrjson.String("acct"), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"getnewaddress","params":["acct",true],"id":1}`, unmarshalled: &dcrjson.GetNewAddressCmd{ Account: dcrjson.String("acct"), Verbose: dcrjson.Bool(true), }, }, { name: "getrawchangeaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawchangeaddress") }, staticCmd: func() interface{} { return dcrjson.NewGetRawChangeAddressCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"getrawchangeaddress","params":[],"id":1}`, unmarshalled: &dcrjson.GetRawChangeAddressCmd{ Account: nil, Verbose: dcrjson.Bool(false), }, }, { name: "getrawchangeaddress optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getrawchangeaddress", "acct", "true") }, staticCmd: func() interface{} { return dcrjson.NewGetRawChangeAddressCmd(dcrjson.String("acct"), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"getrawchangeaddress","params":["acct",true],"id":1}`, unmarshalled: &dcrjson.GetRawChangeAddressCmd{ Account: dcrjson.String("acct"), Verbose: dcrjson.Bool(true), }, }, { name: "getreceivedbyaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getreceivedbyaccount", "acct") }, staticCmd: func() interface{} { return dcrjson.NewGetReceivedByAccountCmd("acct", nil) }, marshalled: `{"jsonrpc":"1.0","method":"getreceivedbyaccount","params":["acct"],"id":1}`, unmarshalled: &dcrjson.GetReceivedByAccountCmd{ Account: "acct", MinConf: dcrjson.Int(1), }, }, { name: "getreceivedbyaccount optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getreceivedbyaccount", "acct", 6) }, staticCmd: func() interface{} { return dcrjson.NewGetReceivedByAccountCmd("acct", dcrjson.Int(6)) }, marshalled: `{"jsonrpc":"1.0","method":"getreceivedbyaccount","params":["acct",6],"id":1}`, unmarshalled: &dcrjson.GetReceivedByAccountCmd{ Account: "acct", MinConf: dcrjson.Int(6), }, }, { name: "getreceivedbyaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getreceivedbyaddress", "1Address") }, staticCmd: func() interface{} { return dcrjson.NewGetReceivedByAddressCmd("1Address", nil) }, marshalled: `{"jsonrpc":"1.0","method":"getreceivedbyaddress","params":["1Address"],"id":1}`, unmarshalled: &dcrjson.GetReceivedByAddressCmd{ Address: "1Address", MinConf: dcrjson.Int(1), }, }, { name: "getreceivedbyaddress optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getreceivedbyaddress", "1Address", 6) }, staticCmd: func() interface{} { return dcrjson.NewGetReceivedByAddressCmd("1Address", dcrjson.Int(6)) }, marshalled: `{"jsonrpc":"1.0","method":"getreceivedbyaddress","params":["1Address",6],"id":1}`, unmarshalled: &dcrjson.GetReceivedByAddressCmd{ Address: "1Address", MinConf: dcrjson.Int(6), }, }, { name: "gettransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettransaction", "123") }, staticCmd: func() interface{} { return dcrjson.NewGetTransactionCmd("123", nil) }, marshalled: `{"jsonrpc":"1.0","method":"gettransaction","params":["123"],"id":1}`, unmarshalled: &dcrjson.GetTransactionCmd{ Txid: "123", IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "gettransaction optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("gettransaction", "123", true) }, staticCmd: func() interface{} { return dcrjson.NewGetTransactionCmd("123", dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"gettransaction","params":["123",true],"id":1}`, unmarshalled: &dcrjson.GetTransactionCmd{ Txid: "123", IncludeWatchOnly: dcrjson.Bool(true), }, }, { name: "importprivkey", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importprivkey", "abc") }, staticCmd: func() interface{} { return dcrjson.NewImportPrivKeyCmd("abc", nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"importprivkey","params":["abc"],"id":1}`, unmarshalled: &dcrjson.ImportPrivKeyCmd{ PrivKey: "abc", Label: nil, Rescan: dcrjson.Bool(true), }, }, { name: "importprivkey optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importprivkey", "abc", "label") }, staticCmd: func() interface{} { return dcrjson.NewImportPrivKeyCmd("abc", dcrjson.String("label"), nil) }, marshalled: `{"jsonrpc":"1.0","method":"importprivkey","params":["abc","label"],"id":1}`, unmarshalled: &dcrjson.ImportPrivKeyCmd{ PrivKey: "abc", Label: dcrjson.String("label"), Rescan: dcrjson.Bool(true), }, }, { name: "importprivkey optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("importprivkey", "abc", "label", false) }, staticCmd: func() interface{} { return dcrjson.NewImportPrivKeyCmd("abc", dcrjson.String("label"), dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"importprivkey","params":["abc","label",false],"id":1}`, unmarshalled: &dcrjson.ImportPrivKeyCmd{ PrivKey: "abc", Label: dcrjson.String("label"), Rescan: dcrjson.Bool(false), }, }, { name: "keypoolrefill", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("keypoolrefill") }, staticCmd: func() interface{} { return dcrjson.NewKeyPoolRefillCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"keypoolrefill","params":[],"id":1}`, unmarshalled: &dcrjson.KeyPoolRefillCmd{ NewSize: dcrjson.Uint(100), }, }, { name: "keypoolrefill optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("keypoolrefill", 200) }, staticCmd: func() interface{} { return dcrjson.NewKeyPoolRefillCmd(dcrjson.Uint(200)) }, marshalled: `{"jsonrpc":"1.0","method":"keypoolrefill","params":[200],"id":1}`, unmarshalled: &dcrjson.KeyPoolRefillCmd{ NewSize: dcrjson.Uint(200), }, }, { name: "listaccounts", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listaccounts") }, staticCmd: func() interface{} { return dcrjson.NewListAccountsCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"listaccounts","params":[],"id":1}`, unmarshalled: &dcrjson.ListAccountsCmd{ MinConf: dcrjson.Int(1), }, }, { name: "listaccounts optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listaccounts", 6) }, staticCmd: func() interface{} { return dcrjson.NewListAccountsCmd(dcrjson.Int(6)) }, marshalled: `{"jsonrpc":"1.0","method":"listaccounts","params":[6],"id":1}`, unmarshalled: &dcrjson.ListAccountsCmd{ MinConf: dcrjson.Int(6), }, }, { name: "listaddressgroupings", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listaddressgroupings") }, staticCmd: func() interface{} { return dcrjson.NewListAddressGroupingsCmd() }, marshalled: `{"jsonrpc":"1.0","method":"listaddressgroupings","params":[],"id":1}`, unmarshalled: &dcrjson.ListAddressGroupingsCmd{}, }, { name: "listlockunspent", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listlockunspent") }, staticCmd: func() interface{} { return dcrjson.NewListLockUnspentCmd() }, marshalled: `{"jsonrpc":"1.0","method":"listlockunspent","params":[],"id":1}`, unmarshalled: &dcrjson.ListLockUnspentCmd{}, }, { name: "listreceivedbyaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaccount") }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAccountCmd(nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaccount","params":[],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAccountCmd{ MinConf: dcrjson.Int(1), IncludeEmpty: dcrjson.Bool(false), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaccount optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaccount", 6) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAccountCmd(dcrjson.Int(6), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaccount","params":[6],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAccountCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(false), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaccount optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaccount", 6, true) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAccountCmd(dcrjson.Int(6), dcrjson.Bool(true), nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaccount","params":[6,true],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAccountCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(true), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaccount optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaccount", 6, true, false) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAccountCmd(dcrjson.Int(6), dcrjson.Bool(true), dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaccount","params":[6,true,false],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAccountCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(true), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaddress") }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAddressCmd(nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaddress","params":[],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAddressCmd{ MinConf: dcrjson.Int(1), IncludeEmpty: dcrjson.Bool(false), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaddress optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaddress", 6) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAddressCmd(dcrjson.Int(6), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaddress","params":[6],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAddressCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(false), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaddress optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaddress", 6, true) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAddressCmd(dcrjson.Int(6), dcrjson.Bool(true), nil) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaddress","params":[6,true],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAddressCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(true), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listreceivedbyaddress optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listreceivedbyaddress", 6, true, false) }, staticCmd: func() interface{} { return dcrjson.NewListReceivedByAddressCmd(dcrjson.Int(6), dcrjson.Bool(true), dcrjson.Bool(false)) }, marshalled: `{"jsonrpc":"1.0","method":"listreceivedbyaddress","params":[6,true,false],"id":1}`, unmarshalled: &dcrjson.ListReceivedByAddressCmd{ MinConf: dcrjson.Int(6), IncludeEmpty: dcrjson.Bool(true), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listsinceblock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listsinceblock") }, staticCmd: func() interface{} { return dcrjson.NewListSinceBlockCmd(nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listsinceblock","params":[],"id":1}`, unmarshalled: &dcrjson.ListSinceBlockCmd{ BlockHash: nil, TargetConfirmations: dcrjson.Int(1), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listsinceblock optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listsinceblock", "123") }, staticCmd: func() interface{} { return dcrjson.NewListSinceBlockCmd(dcrjson.String("123"), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listsinceblock","params":["123"],"id":1}`, unmarshalled: &dcrjson.ListSinceBlockCmd{ BlockHash: dcrjson.String("123"), TargetConfirmations: dcrjson.Int(1), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listsinceblock optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listsinceblock", "123", 6) }, staticCmd: func() interface{} { return dcrjson.NewListSinceBlockCmd(dcrjson.String("123"), dcrjson.Int(6), nil) }, marshalled: `{"jsonrpc":"1.0","method":"listsinceblock","params":["123",6],"id":1}`, unmarshalled: &dcrjson.ListSinceBlockCmd{ BlockHash: dcrjson.String("123"), TargetConfirmations: dcrjson.Int(6), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listsinceblock optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listsinceblock", "123", 6, true) }, staticCmd: func() interface{} { return dcrjson.NewListSinceBlockCmd(dcrjson.String("123"), dcrjson.Int(6), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"listsinceblock","params":["123",6,true],"id":1}`, unmarshalled: &dcrjson.ListSinceBlockCmd{ BlockHash: dcrjson.String("123"), TargetConfirmations: dcrjson.Int(6), IncludeWatchOnly: dcrjson.Bool(true), }, }, { name: "listtransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listtransactions") }, staticCmd: func() interface{} { return dcrjson.NewListTransactionsCmd(nil, nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listtransactions","params":[],"id":1}`, unmarshalled: &dcrjson.ListTransactionsCmd{ Account: nil, Count: dcrjson.Int(10), From: dcrjson.Int(0), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listtransactions optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listtransactions", "acct") }, staticCmd: func() interface{} { return dcrjson.NewListTransactionsCmd(dcrjson.String("acct"), nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listtransactions","params":["acct"],"id":1}`, unmarshalled: &dcrjson.ListTransactionsCmd{ Account: dcrjson.String("acct"), Count: dcrjson.Int(10), From: dcrjson.Int(0), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listtransactions optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listtransactions", "acct", 20) }, staticCmd: func() interface{} { return dcrjson.NewListTransactionsCmd(dcrjson.String("acct"), dcrjson.Int(20), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listtransactions","params":["acct",20],"id":1}`, unmarshalled: &dcrjson.ListTransactionsCmd{ Account: dcrjson.String("acct"), Count: dcrjson.Int(20), From: dcrjson.Int(0), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listtransactions optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listtransactions", "acct", 20, 1) }, staticCmd: func() interface{} { return dcrjson.NewListTransactionsCmd(dcrjson.String("acct"), dcrjson.Int(20), dcrjson.Int(1), nil) }, marshalled: `{"jsonrpc":"1.0","method":"listtransactions","params":["acct",20,1],"id":1}`, unmarshalled: &dcrjson.ListTransactionsCmd{ Account: dcrjson.String("acct"), Count: dcrjson.Int(20), From: dcrjson.Int(1), IncludeWatchOnly: dcrjson.Bool(false), }, }, { name: "listtransactions optional4", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listtransactions", "acct", 20, 1, true) }, staticCmd: func() interface{} { return dcrjson.NewListTransactionsCmd(dcrjson.String("acct"), dcrjson.Int(20), dcrjson.Int(1), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"listtransactions","params":["acct",20,1,true],"id":1}`, unmarshalled: &dcrjson.ListTransactionsCmd{ Account: dcrjson.String("acct"), Count: dcrjson.Int(20), From: dcrjson.Int(1), IncludeWatchOnly: dcrjson.Bool(true), }, }, { name: "listunspent", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listunspent") }, staticCmd: func() interface{} { return dcrjson.NewListUnspentCmd(nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listunspent","params":[],"id":1}`, unmarshalled: &dcrjson.ListUnspentCmd{ MinConf: dcrjson.Int(1), MaxConf: dcrjson.Int(9999999), Addresses: nil, }, }, { name: "listunspent optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listunspent", 6) }, staticCmd: func() interface{} { return dcrjson.NewListUnspentCmd(dcrjson.Int(6), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listunspent","params":[6],"id":1}`, unmarshalled: &dcrjson.ListUnspentCmd{ MinConf: dcrjson.Int(6), MaxConf: dcrjson.Int(9999999), Addresses: nil, }, }, { name: "listunspent optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listunspent", 6, 100) }, staticCmd: func() interface{} { return dcrjson.NewListUnspentCmd(dcrjson.Int(6), dcrjson.Int(100), nil) }, marshalled: `{"jsonrpc":"1.0","method":"listunspent","params":[6,100],"id":1}`, unmarshalled: &dcrjson.ListUnspentCmd{ MinConf: dcrjson.Int(6), MaxConf: dcrjson.Int(100), Addresses: nil, }, }, { name: "listunspent optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listunspent", 6, 100, []string{"1Address", "1Address2"}) }, staticCmd: func() interface{} { return dcrjson.NewListUnspentCmd(dcrjson.Int(6), dcrjson.Int(100), &[]string{"1Address", "1Address2"}) }, marshalled: `{"jsonrpc":"1.0","method":"listunspent","params":[6,100,["1Address","1Address2"]],"id":1}`, unmarshalled: &dcrjson.ListUnspentCmd{ MinConf: dcrjson.Int(6), MaxConf: dcrjson.Int(100), Addresses: &[]string{"1Address", "1Address2"}, }, }, { name: "lockunspent", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("lockunspent", true, `[{"txid":"123","vout":1}]`) }, staticCmd: func() interface{} { txInputs := []dcrjson.TransactionInput{ {Txid: "123", Vout: 1}, } return dcrjson.NewLockUnspentCmd(true, txInputs) }, marshalled: `{"jsonrpc":"1.0","method":"lockunspent","params":[true,[{"txid":"123","vout":1,"tree":0}]],"id":1}`, unmarshalled: &dcrjson.LockUnspentCmd{ Unlock: true, Transactions: []dcrjson.TransactionInput{ {Txid: "123", Vout: 1}, }, }, }, { name: "move", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("move", "from", "to", 0.5) }, staticCmd: func() interface{} { return dcrjson.NewMoveCmd("from", "to", 0.5, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"move","params":["from","to",0.5],"id":1}`, unmarshalled: &dcrjson.MoveCmd{ FromAccount: "from", ToAccount: "to", Amount: 0.5, MinConf: dcrjson.Int(1), Comment: nil, }, }, { name: "move optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("move", "from", "to", 0.5, 6) }, staticCmd: func() interface{} { return dcrjson.NewMoveCmd("from", "to", 0.5, dcrjson.Int(6), nil) }, marshalled: `{"jsonrpc":"1.0","method":"move","params":["from","to",0.5,6],"id":1}`, unmarshalled: &dcrjson.MoveCmd{ FromAccount: "from", ToAccount: "to", Amount: 0.5, MinConf: dcrjson.Int(6), Comment: nil, }, }, { name: "move optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("move", "from", "to", 0.5, 6, "comment") }, staticCmd: func() interface{} { return dcrjson.NewMoveCmd("from", "to", 0.5, dcrjson.Int(6), dcrjson.String("comment")) }, marshalled: `{"jsonrpc":"1.0","method":"move","params":["from","to",0.5,6,"comment"],"id":1}`, unmarshalled: &dcrjson.MoveCmd{ FromAccount: "from", ToAccount: "to", Amount: 0.5, MinConf: dcrjson.Int(6), Comment: dcrjson.String("comment"), }, }, { name: "sendfrom", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendfrom", "from", "1Address", 0.5) }, staticCmd: func() interface{} { return dcrjson.NewSendFromCmd("from", "1Address", 0.5, nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendfrom","params":["from","1Address",0.5],"id":1}`, unmarshalled: &dcrjson.SendFromCmd{ FromAccount: "from", ToAddress: "1Address", Amount: 0.5, MinConf: dcrjson.Int(1), Comment: nil, CommentTo: nil, }, }, { name: "sendfrom optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendfrom", "from", "1Address", 0.5, 6) }, staticCmd: func() interface{} { return dcrjson.NewSendFromCmd("from", "1Address", 0.5, dcrjson.Int(6), nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendfrom","params":["from","1Address",0.5,6],"id":1}`, unmarshalled: &dcrjson.SendFromCmd{ FromAccount: "from", ToAddress: "1Address", Amount: 0.5, MinConf: dcrjson.Int(6), Comment: nil, CommentTo: nil, }, }, { name: "sendfrom optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendfrom", "from", "1Address", 0.5, 6, "comment") }, staticCmd: func() interface{} { return dcrjson.NewSendFromCmd("from", "1Address", 0.5, dcrjson.Int(6), dcrjson.String("comment"), nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendfrom","params":["from","1Address",0.5,6,"comment"],"id":1}`, unmarshalled: &dcrjson.SendFromCmd{ FromAccount: "from", ToAddress: "1Address", Amount: 0.5, MinConf: dcrjson.Int(6), Comment: dcrjson.String("comment"), CommentTo: nil, }, }, { name: "sendfrom optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendfrom", "from", "1Address", 0.5, 6, "comment", "commentto") }, staticCmd: func() interface{} { return dcrjson.NewSendFromCmd("from", "1Address", 0.5, dcrjson.Int(6), dcrjson.String("comment"), dcrjson.String("commentto")) }, marshalled: `{"jsonrpc":"1.0","method":"sendfrom","params":["from","1Address",0.5,6,"comment","commentto"],"id":1}`, unmarshalled: &dcrjson.SendFromCmd{ FromAccount: "from", ToAddress: "1Address", Amount: 0.5, MinConf: dcrjson.Int(6), Comment: dcrjson.String("comment"), CommentTo: dcrjson.String("commentto"), }, }, { name: "sendmany", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendmany", "from", `{"1Address":0.5}`) }, staticCmd: func() interface{} { amounts := map[string]float64{"1Address": 0.5} return dcrjson.NewSendManyCmd("from", amounts, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendmany","params":["from",{"1Address":0.5}],"id":1}`, unmarshalled: &dcrjson.SendManyCmd{ FromAccount: "from", Amounts: map[string]float64{"1Address": 0.5}, MinConf: dcrjson.Int(1), Comment: nil, }, }, { name: "sendmany optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendmany", "from", `{"1Address":0.5}`, 6) }, staticCmd: func() interface{} { amounts := map[string]float64{"1Address": 0.5} return dcrjson.NewSendManyCmd("from", amounts, dcrjson.Int(6), nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendmany","params":["from",{"1Address":0.5},6],"id":1}`, unmarshalled: &dcrjson.SendManyCmd{ FromAccount: "from", Amounts: map[string]float64{"1Address": 0.5}, MinConf: dcrjson.Int(6), Comment: nil, }, }, { name: "sendmany optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendmany", "from", `{"1Address":0.5}`, 6, "comment") }, staticCmd: func() interface{} { amounts := map[string]float64{"1Address": 0.5} return dcrjson.NewSendManyCmd("from", amounts, dcrjson.Int(6), dcrjson.String("comment")) }, marshalled: `{"jsonrpc":"1.0","method":"sendmany","params":["from",{"1Address":0.5},6,"comment"],"id":1}`, unmarshalled: &dcrjson.SendManyCmd{ FromAccount: "from", Amounts: map[string]float64{"1Address": 0.5}, MinConf: dcrjson.Int(6), Comment: dcrjson.String("comment"), }, }, { name: "sendtoaddress", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendtoaddress", "1Address", 0.5) }, staticCmd: func() interface{} { return dcrjson.NewSendToAddressCmd("1Address", 0.5, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"sendtoaddress","params":["1Address",0.5],"id":1}`, unmarshalled: &dcrjson.SendToAddressCmd{ Address: "1Address", Amount: 0.5, Comment: nil, CommentTo: nil, }, }, { name: "sendtoaddress optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("sendtoaddress", "1Address", 0.5, "comment", "commentto") }, staticCmd: func() interface{} { return dcrjson.NewSendToAddressCmd("1Address", 0.5, dcrjson.String("comment"), dcrjson.String("commentto")) }, marshalled: `{"jsonrpc":"1.0","method":"sendtoaddress","params":["1Address",0.5,"comment","commentto"],"id":1}`, unmarshalled: &dcrjson.SendToAddressCmd{ Address: "1Address", Amount: 0.5, Comment: dcrjson.String("comment"), CommentTo: dcrjson.String("commentto"), }, }, { name: "setaccount", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("setaccount", "1Address", "acct") }, staticCmd: func() interface{} { return dcrjson.NewSetAccountCmd("1Address", "acct") }, marshalled: `{"jsonrpc":"1.0","method":"setaccount","params":["1Address","acct"],"id":1}`, unmarshalled: &dcrjson.SetAccountCmd{ Address: "1Address", Account: "acct", }, }, { name: "settxfee", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("settxfee", 0.0001) }, staticCmd: func() interface{} { return dcrjson.NewSetTxFeeCmd(0.0001) }, marshalled: `{"jsonrpc":"1.0","method":"settxfee","params":[0.0001],"id":1}`, unmarshalled: &dcrjson.SetTxFeeCmd{ Amount: 0.0001, }, }, { name: "signmessage", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("signmessage", "1Address", "message") }, staticCmd: func() interface{} { return dcrjson.NewSignMessageCmd("1Address", "message") }, marshalled: `{"jsonrpc":"1.0","method":"signmessage","params":["1Address","message"],"id":1}`, unmarshalled: &dcrjson.SignMessageCmd{ Address: "1Address", Message: "message", }, }, { name: "signrawtransaction", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("signrawtransaction", "001122") }, staticCmd: func() interface{} { return dcrjson.NewSignRawTransactionCmd("001122", nil, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"signrawtransaction","params":["001122"],"id":1}`, unmarshalled: &dcrjson.SignRawTransactionCmd{ RawTx: "001122", Inputs: nil, PrivKeys: nil, Flags: dcrjson.String("ALL"), }, }, { name: "signrawtransaction optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("signrawtransaction", "001122", `[{"txid":"123","vout":1,"tree":0,"scriptPubKey":"00","redeemScript":"01"}]`) }, staticCmd: func() interface{} { txInputs := []dcrjson.RawTxInput{ { Txid: "123", Vout: 1, ScriptPubKey: "00", RedeemScript: "01", }, } return dcrjson.NewSignRawTransactionCmd("001122", &txInputs, nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"signrawtransaction","params":["001122",[{"txid":"123","vout":1,"tree":0,"scriptPubKey":"00","redeemScript":"01"}]],"id":1}`, unmarshalled: &dcrjson.SignRawTransactionCmd{ RawTx: "001122", Inputs: &[]dcrjson.RawTxInput{ { Txid: "123", Vout: 1, ScriptPubKey: "00", RedeemScript: "01", }, }, PrivKeys: nil, Flags: dcrjson.String("ALL"), }, }, { name: "signrawtransaction optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("signrawtransaction", "001122", `[]`, `["abc"]`) }, staticCmd: func() interface{} { txInputs := []dcrjson.RawTxInput{} privKeys := []string{"abc"} return dcrjson.NewSignRawTransactionCmd("001122", &txInputs, &privKeys, nil) }, marshalled: `{"jsonrpc":"1.0","method":"signrawtransaction","params":["001122",[],["abc"]],"id":1}`, unmarshalled: &dcrjson.SignRawTransactionCmd{ RawTx: "001122", Inputs: &[]dcrjson.RawTxInput{}, PrivKeys: &[]string{"abc"}, Flags: dcrjson.String("ALL"), }, }, { name: "signrawtransaction optional3", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("signrawtransaction", "001122", `[]`, `[]`, "ALL") }, staticCmd: func() interface{} { txInputs := []dcrjson.RawTxInput{} privKeys := []string{} return dcrjson.NewSignRawTransactionCmd("001122", &txInputs, &privKeys, dcrjson.String("ALL")) }, marshalled: `{"jsonrpc":"1.0","method":"signrawtransaction","params":["001122",[],[],"ALL"],"id":1}`, unmarshalled: &dcrjson.SignRawTransactionCmd{ RawTx: "001122", Inputs: &[]dcrjson.RawTxInput{}, PrivKeys: &[]string{}, Flags: dcrjson.String("ALL"), }, }, { name: "walletlock", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("walletlock") }, staticCmd: func() interface{} { return dcrjson.NewWalletLockCmd() }, marshalled: `{"jsonrpc":"1.0","method":"walletlock","params":[],"id":1}`, unmarshalled: &dcrjson.WalletLockCmd{}, }, { name: "walletpassphrase", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("walletpassphrase", "pass", 60) }, staticCmd: func() interface{} { return dcrjson.NewWalletPassphraseCmd("pass", 60) }, marshalled: `{"jsonrpc":"1.0","method":"walletpassphrase","params":["pass",60],"id":1}`, unmarshalled: &dcrjson.WalletPassphraseCmd{ Passphrase: "pass", Timeout: 60, }, }, { name: "walletpassphrasechange", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("walletpassphrasechange", "old", "new") }, staticCmd: func() interface{} { return dcrjson.NewWalletPassphraseChangeCmd("old", "new") }, marshalled: `{"jsonrpc":"1.0","method":"walletpassphrasechange","params":["old","new"],"id":1}`, unmarshalled: &dcrjson.WalletPassphraseChangeCmd{ OldPassphrase: "old", NewPassphrase: "new", }, }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { // Marshal the command as created by the new static command // creation function. marshalled, err := dcrjson.MarshalCmd(testID, test.staticCmd()) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } // Ensure the command is created without error via the generic // new command creation function. cmd, err := test.newCmd() if err != nil { t.Errorf("Test #%d (%s) unexpected NewCmd error: %v ", i, test.name, err) } // Marshal the command as created by the generic new command // creation function. marshalled, err = dcrjson.MarshalCmd(testID, cmd) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } var request dcrjson.Request if err := json.Unmarshal(marshalled, &request); err != nil { t.Errorf("Test #%d (%s) unexpected error while "+ "unmarshalling JSON-RPC request: %v", i, test.name, err) continue } cmd, err = dcrjson.UnmarshalCmd(&request) if err != nil { t.Errorf("UnmarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !reflect.DeepEqual(cmd, test.unmarshalled) { t.Errorf("Test #%d (%s) unexpected unmarshalled command "+ "- got %s, want %s", i, test.name, fmt.Sprintf("(%T) %+[1]v", cmd), fmt.Sprintf("(%T) %+[1]v\n", test.unmarshalled)) continue } } }
// GetRawMempoolVerboseAsync returns an instance of a type that can be used to // get the result of the RPC at some future time by invoking the Receive // function on the returned instance. // // See GetRawMempoolVerbose for the blocking version and more details. func (c *Client) GetRawMempoolVerboseAsync(txType dcrjson.GetRawMempoolTxTypeCmd) FutureGetRawMempoolVerboseResult { cmd := dcrjson.NewGetRawMempoolCmd(dcrjson.Bool(true), dcrjson.String(string(txType))) return c.sendCmd(cmd) }
// TestWalletSvrWsCmds tests all of the wallet server websocket-specific // commands marshal and unmarshal into valid results include handling of // optional fields being omitted in the marshalled command, while optional // fields with defaults have the default assigned on unmarshalled commands. func TestWalletSvrWsCmds(t *testing.T) { t.Parallel() testID := int(1) tests := []struct { name string newCmd func() (interface{}, error) staticCmd func() interface{} marshalled string unmarshalled interface{} }{ { name: "createencryptedwallet", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("createencryptedwallet", "pass") }, staticCmd: func() interface{} { return dcrjson.NewCreateEncryptedWalletCmd("pass") }, marshalled: `{"jsonrpc":"1.0","method":"createencryptedwallet","params":["pass"],"id":1}`, unmarshalled: &dcrjson.CreateEncryptedWalletCmd{Passphrase: "pass"}, }, { name: "exportwatchingwallet", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("exportwatchingwallet") }, staticCmd: func() interface{} { return dcrjson.NewExportWatchingWalletCmd(nil, nil) }, marshalled: `{"jsonrpc":"1.0","method":"exportwatchingwallet","params":[],"id":1}`, unmarshalled: &dcrjson.ExportWatchingWalletCmd{ Account: nil, Download: dcrjson.Bool(false), }, }, { name: "exportwatchingwallet optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("exportwatchingwallet", "acct") }, staticCmd: func() interface{} { return dcrjson.NewExportWatchingWalletCmd(dcrjson.String("acct"), nil) }, marshalled: `{"jsonrpc":"1.0","method":"exportwatchingwallet","params":["acct"],"id":1}`, unmarshalled: &dcrjson.ExportWatchingWalletCmd{ Account: dcrjson.String("acct"), Download: dcrjson.Bool(false), }, }, { name: "exportwatchingwallet optional2", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("exportwatchingwallet", "acct", true) }, staticCmd: func() interface{} { return dcrjson.NewExportWatchingWalletCmd(dcrjson.String("acct"), dcrjson.Bool(true)) }, marshalled: `{"jsonrpc":"1.0","method":"exportwatchingwallet","params":["acct",true],"id":1}`, unmarshalled: &dcrjson.ExportWatchingWalletCmd{ Account: dcrjson.String("acct"), Download: dcrjson.Bool(true), }, }, { name: "getunconfirmedbalance", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getunconfirmedbalance") }, staticCmd: func() interface{} { return dcrjson.NewGetUnconfirmedBalanceCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"getunconfirmedbalance","params":[],"id":1}`, unmarshalled: &dcrjson.GetUnconfirmedBalanceCmd{ Account: nil, }, }, { name: "getunconfirmedbalance optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("getunconfirmedbalance", "acct") }, staticCmd: func() interface{} { return dcrjson.NewGetUnconfirmedBalanceCmd(dcrjson.String("acct")) }, marshalled: `{"jsonrpc":"1.0","method":"getunconfirmedbalance","params":["acct"],"id":1}`, unmarshalled: &dcrjson.GetUnconfirmedBalanceCmd{ Account: dcrjson.String("acct"), }, }, { name: "listaddresstransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listaddresstransactions", `["1Address"]`) }, staticCmd: func() interface{} { return dcrjson.NewListAddressTransactionsCmd([]string{"1Address"}, nil) }, marshalled: `{"jsonrpc":"1.0","method":"listaddresstransactions","params":[["1Address"]],"id":1}`, unmarshalled: &dcrjson.ListAddressTransactionsCmd{ Addresses: []string{"1Address"}, Account: nil, }, }, { name: "listaddresstransactions optional1", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listaddresstransactions", `["1Address"]`, "acct") }, staticCmd: func() interface{} { return dcrjson.NewListAddressTransactionsCmd([]string{"1Address"}, dcrjson.String("acct")) }, marshalled: `{"jsonrpc":"1.0","method":"listaddresstransactions","params":[["1Address"],"acct"],"id":1}`, unmarshalled: &dcrjson.ListAddressTransactionsCmd{ Addresses: []string{"1Address"}, Account: dcrjson.String("acct"), }, }, { name: "listalltransactions", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listalltransactions") }, staticCmd: func() interface{} { return dcrjson.NewListAllTransactionsCmd(nil) }, marshalled: `{"jsonrpc":"1.0","method":"listalltransactions","params":[],"id":1}`, unmarshalled: &dcrjson.ListAllTransactionsCmd{ Account: nil, }, }, { name: "listalltransactions optional", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("listalltransactions", "acct") }, staticCmd: func() interface{} { return dcrjson.NewListAllTransactionsCmd(dcrjson.String("acct")) }, marshalled: `{"jsonrpc":"1.0","method":"listalltransactions","params":["acct"],"id":1}`, unmarshalled: &dcrjson.ListAllTransactionsCmd{ Account: dcrjson.String("acct"), }, }, { name: "recoveraddresses", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("recoveraddresses", "acct", 10) }, staticCmd: func() interface{} { return dcrjson.NewRecoverAddressesCmd("acct", 10) }, marshalled: `{"jsonrpc":"1.0","method":"recoveraddresses","params":["acct",10],"id":1}`, unmarshalled: &dcrjson.RecoverAddressesCmd{ Account: "acct", N: 10, }, }, { name: "walletislocked", newCmd: func() (interface{}, error) { return dcrjson.NewCmd("walletislocked") }, staticCmd: func() interface{} { return dcrjson.NewWalletIsLockedCmd() }, marshalled: `{"jsonrpc":"1.0","method":"walletislocked","params":[],"id":1}`, unmarshalled: &dcrjson.WalletIsLockedCmd{}, }, } t.Logf("Running %d tests", len(tests)) for i, test := range tests { // Marshal the command as created by the new static command // creation function. marshalled, err := dcrjson.MarshalCmd(testID, test.staticCmd()) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } // Ensure the command is created without error via the generic // new command creation function. cmd, err := test.newCmd() if err != nil { t.Errorf("Test #%d (%s) unexpected NewCmd error: %v ", i, test.name, err) } // Marshal the command as created by the generic new command // creation function. marshalled, err = dcrjson.MarshalCmd(testID, cmd) if err != nil { t.Errorf("MarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !bytes.Equal(marshalled, []byte(test.marshalled)) { t.Errorf("Test #%d (%s) unexpected marshalled data - "+ "got %s, want %s", i, test.name, marshalled, test.marshalled) continue } var request dcrjson.Request if err := json.Unmarshal(marshalled, &request); err != nil { t.Errorf("Test #%d (%s) unexpected error while "+ "unmarshalling JSON-RPC request: %v", i, test.name, err) continue } cmd, err = dcrjson.UnmarshalCmd(&request) if err != nil { t.Errorf("UnmarshalCmd #%d (%s) unexpected error: %v", i, test.name, err) continue } if !reflect.DeepEqual(cmd, test.unmarshalled) { t.Errorf("Test #%d (%s) unexpected unmarshalled command "+ "- got %s, want %s", i, test.name, fmt.Sprintf("(%T) %+[1]v", cmd), fmt.Sprintf("(%T) %+[1]v\n", test.unmarshalled)) continue } } }
// GetRawMempoolVerboseAsync returns an instance of a type that can be used to // get the result of the RPC at some future time by invoking the Receive // function on the returned instance. // // See GetRawMempoolVerbose for the blocking version and more details. func (c *Client) GetRawMempoolVerboseAsync() FutureGetRawMempoolVerboseResult { cmd := dcrjson.NewGetRawMempoolCmd(dcrjson.Bool(true)) return c.sendCmd(cmd) }
// GetRawMempoolAsync returns an instance of a type that can be used to get the // result of the RPC at some future time by invoking the Receive function on the // returned instance. // // See GetRawMempool for the blocking version and more details. func (c *Client) GetRawMempoolAsync() FutureGetRawMempoolResult { cmd := dcrjson.NewGetRawMempoolCmd(dcrjson.Bool(false)) return c.sendCmd(cmd) }