mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-1130] Delete rpcadapters.go. * [NOD-1130] Delete p2p. Move rpc to top level. * [NOD-1130] Remove DAGParams from rpcserverConfig. * [NOD-1130] Remove rpcserverPeer, rpcserverConnManager, rpcserverSyncManager, and rpcserverConfig. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove connmgr and peer. * [NOD-1130] Move rpcmodel into rpc. * [NOD-1130] Implement ConnectionCount. * [NOD-1130] Remove ping and node RPC commands. * [NOD-1130] Dummify handleGetNetTotals. * [NOD-1130] Add NetConnection to Peer. * [NOD-1130] Fix merge errors. * [NOD-1130] Implement Peers. * [NOD-1130] Fix HandleGetConnectedPeerInfo. * [NOD-1130] Fix SendRawTransaction. * [NOD-1130] Rename addManualNode to connect and removeManualNode to disconnect. * [NOD-1130] Add a stub for AddBlock. * [NOD-1130] Fix tests. * [NOD-1130] Replace half-baked contents of RemoveConnection with a stub. * [NOD-1130] Fix merge errors. * [NOD-1130] Make golint happy. * [NOD-1130] Get rid of something weird. * [NOD-1130] Rename minerClient back to client. * [NOD-1130] Add a few fields to GetConnectedPeerInfoResult. * [NOD-1130] Rename oneTry to isPermanent. * [NOD-1130] Implement ConnectionCount in NetAdapter. * [NOD-1130] Move RawMempoolVerbose out of mempool. * [NOD-1130] Move isSynced into the mining package. * [NOD-1130] Fix a compilation error. * [NOD-1130] Make golint happy. * [NOD-1130] Fix merge errors.
242 lines
8.0 KiB
Go
242 lines
8.0 KiB
Go
// Copyright (c) 2014-2017 The btcsuite developers
|
|
// Copyright (c) 2015-2017 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package model_test
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/kaspanet/kaspad/util/pointers"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/kaspanet/kaspad/rpc/model"
|
|
)
|
|
|
|
// TestRPCServerWebsocketCommands tests all of the kaspa rpc 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 TestRPCServerWebsocketCommands(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 model.NewCommand("authenticate", "user", "pass")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewAuthenticateCmd("user", "pass")
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"authenticate","params":["user","pass"],"id":1}`,
|
|
unmarshalled: &model.AuthenticateCmd{Username: "user", Passphrase: "pass"},
|
|
},
|
|
{
|
|
name: "notifyBlocks",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("notifyBlocks")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewNotifyBlocksCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"notifyBlocks","params":[],"id":1}`,
|
|
unmarshalled: &model.NotifyBlocksCmd{},
|
|
},
|
|
{
|
|
name: "stopNotifyBlocks",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("stopNotifyBlocks")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewStopNotifyBlocksCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"stopNotifyBlocks","params":[],"id":1}`,
|
|
unmarshalled: &model.StopNotifyBlocksCmd{},
|
|
},
|
|
{
|
|
name: "notifyChainChanges",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("notifyChainChanges")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewNotifyChainChangesCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"notifyChainChanges","params":[],"id":1}`,
|
|
unmarshalled: &model.NotifyChainChangesCmd{},
|
|
},
|
|
{
|
|
name: "stopNotifyChainChanges",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("stopNotifyChainChanges")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewStopNotifyChainChangesCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"stopNotifyChainChanges","params":[],"id":1}`,
|
|
unmarshalled: &model.StopNotifyChainChangesCmd{},
|
|
},
|
|
{
|
|
name: "notifyNewTransactions",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("notifyNewTransactions")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewNotifyNewTransactionsCmd(nil, nil)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"notifyNewTransactions","params":[],"id":1}`,
|
|
unmarshalled: &model.NotifyNewTransactionsCmd{
|
|
Verbose: pointers.Bool(false),
|
|
},
|
|
},
|
|
{
|
|
name: "notifyNewTransactions optional",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("notifyNewTransactions", true)
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewNotifyNewTransactionsCmd(pointers.Bool(true), nil)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"notifyNewTransactions","params":[true],"id":1}`,
|
|
unmarshalled: &model.NotifyNewTransactionsCmd{
|
|
Verbose: pointers.Bool(true),
|
|
},
|
|
},
|
|
{
|
|
name: "notifyNewTransactions optional 2",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("notifyNewTransactions", true, "0000000000000000000000000000000000000123")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewNotifyNewTransactionsCmd(pointers.Bool(true), pointers.String("0000000000000000000000000000000000000123"))
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"notifyNewTransactions","params":[true,"0000000000000000000000000000000000000123"],"id":1}`,
|
|
unmarshalled: &model.NotifyNewTransactionsCmd{
|
|
Verbose: pointers.Bool(true),
|
|
Subnetwork: pointers.String("0000000000000000000000000000000000000123"),
|
|
},
|
|
},
|
|
{
|
|
name: "stopNotifyNewTransactions",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("stopNotifyNewTransactions")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return model.NewStopNotifyNewTransactionsCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"stopNotifyNewTransactions","params":[],"id":1}`,
|
|
unmarshalled: &model.StopNotifyNewTransactionsCmd{},
|
|
},
|
|
{
|
|
name: "loadTxFilter",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("loadTxFilter", false, `["1Address"]`, `[{"txid":"0000000000000000000000000000000000000000000000000000000000000123","index":0}]`)
|
|
},
|
|
staticCmd: func() interface{} {
|
|
addrs := []string{"1Address"}
|
|
ops := []model.Outpoint{{
|
|
TxID: "0000000000000000000000000000000000000000000000000000000000000123",
|
|
Index: 0,
|
|
}}
|
|
return model.NewLoadTxFilterCmd(false, addrs, ops)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"loadTxFilter","params":[false,["1Address"],[{"txid":"0000000000000000000000000000000000000000000000000000000000000123","index":0}]],"id":1}`,
|
|
unmarshalled: &model.LoadTxFilterCmd{
|
|
Reload: false,
|
|
Addresses: []string{"1Address"},
|
|
Outpoints: []model.Outpoint{{TxID: "0000000000000000000000000000000000000000000000000000000000000123", Index: 0}},
|
|
},
|
|
},
|
|
{
|
|
name: "rescanBlocks",
|
|
newCmd: func() (interface{}, error) {
|
|
return model.NewCommand("rescanBlocks", `["0000000000000000000000000000000000000000000000000000000000000123"]`)
|
|
},
|
|
staticCmd: func() interface{} {
|
|
blockhashes := []string{"0000000000000000000000000000000000000000000000000000000000000123"}
|
|
return model.NewRescanBlocksCmd(blockhashes)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"rescanBlocks","params":[["0000000000000000000000000000000000000000000000000000000000000123"]],"id":1}`,
|
|
unmarshalled: &model.RescanBlocksCmd{
|
|
BlockHashes: []string{"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 := model.MarshalCommand(testID, test.staticCmd())
|
|
if err != nil {
|
|
t.Errorf("MarshalCommand #%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 NewCommand error: %v ",
|
|
i, test.name, err)
|
|
}
|
|
|
|
// Marshal the command as created by the generic new command
|
|
// creation function.
|
|
marshalled, err = model.MarshalCommand(testID, cmd)
|
|
if err != nil {
|
|
t.Errorf("MarshalCommand #%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 model.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 = model.UnmarshalCommand(&request)
|
|
if err != nil {
|
|
t.Errorf("UnmarshalCommand #%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
|
|
}
|
|
}
|
|
}
|