// 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) }
// 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 } } }