mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-06 06:06:49 +00:00

* [NOD-423] Rename BestBlock to SelectedTip * [NOD-423] Implement GetSelectedTip RPC command * [NOD-423] Add help to getSelectedTip command * [NOD-423] Fix getSelectedTip test * [NOD-423] Fix tests so they would compile. These tests will need to be rewriten at some point. * [NOD-423] Make integration test compile. Test need to be revisited * [NOD-423] Rename variables * [NOD-423] Change comment s about best block to selected tip. * [NOD-423] Update comment * [NOD-423] Change height to bluescore
283 lines
8.5 KiB
Go
283 lines
8.5 KiB
Go
// Copyright (c) 2014-2016 The btcsuite developers
|
|
// Copyright (c) 2015-2016 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package btcjson_test
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/daglabs/btcd/btcjson"
|
|
)
|
|
|
|
// TestBtcdExtCmds tests all of the btcd 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 TestBtcdExtCmds(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testID := 1
|
|
tests := []struct {
|
|
name string
|
|
newCmd func() (interface{}, error)
|
|
staticCmd func() interface{}
|
|
marshalled string
|
|
unmarshalled interface{}
|
|
}{
|
|
{
|
|
name: "debugLevel",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("debugLevel", "trace")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewDebugLevelCmd("trace")
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"debugLevel","params":["trace"],"id":1}`,
|
|
unmarshalled: &btcjson.DebugLevelCmd{
|
|
LevelSpec: "trace",
|
|
},
|
|
},
|
|
{
|
|
name: "node",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("node", btcjson.NRemove, "1.1.1.1")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewNodeCmd("remove", "1.1.1.1", nil)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"node","params":["remove","1.1.1.1"],"id":1}`,
|
|
unmarshalled: &btcjson.NodeCmd{
|
|
SubCmd: btcjson.NRemove,
|
|
Target: "1.1.1.1",
|
|
},
|
|
},
|
|
{
|
|
name: "node",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("node", btcjson.NDisconnect, "1.1.1.1")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewNodeCmd("disconnect", "1.1.1.1", nil)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"node","params":["disconnect","1.1.1.1"],"id":1}`,
|
|
unmarshalled: &btcjson.NodeCmd{
|
|
SubCmd: btcjson.NDisconnect,
|
|
Target: "1.1.1.1",
|
|
},
|
|
},
|
|
{
|
|
name: "node",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("node", btcjson.NConnect, "1.1.1.1", "perm")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewNodeCmd("connect", "1.1.1.1", btcjson.String("perm"))
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"node","params":["connect","1.1.1.1","perm"],"id":1}`,
|
|
unmarshalled: &btcjson.NodeCmd{
|
|
SubCmd: btcjson.NConnect,
|
|
Target: "1.1.1.1",
|
|
ConnectSubCmd: btcjson.String("perm"),
|
|
},
|
|
},
|
|
{
|
|
name: "node",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("node", btcjson.NConnect, "1.1.1.1", "temp")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewNodeCmd("connect", "1.1.1.1", btcjson.String("temp"))
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"node","params":["connect","1.1.1.1","temp"],"id":1}`,
|
|
unmarshalled: &btcjson.NodeCmd{
|
|
SubCmd: btcjson.NConnect,
|
|
Target: "1.1.1.1",
|
|
ConnectSubCmd: btcjson.String("temp"),
|
|
},
|
|
},
|
|
{
|
|
name: "generate",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("generate", 1)
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGenerateCmd(1)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"generate","params":[1],"id":1}`,
|
|
unmarshalled: &btcjson.GenerateCmd{
|
|
NumBlocks: 1,
|
|
},
|
|
},
|
|
{
|
|
name: "getSelectedTip",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getSelectedTip")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetSelectedTipCmd(nil, nil)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getSelectedTip","params":[],"id":1}`,
|
|
unmarshalled: &btcjson.GetSelectedTipCmd{
|
|
Verbose: btcjson.Bool(true),
|
|
VerboseTx: btcjson.Bool(false),
|
|
},
|
|
},
|
|
{
|
|
name: "getCurrentNet",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getCurrentNet")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetCurrentNetCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getCurrentNet","params":[],"id":1}`,
|
|
unmarshalled: &btcjson.GetCurrentNetCmd{},
|
|
},
|
|
{
|
|
name: "getHeaders",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getHeaders", "", "")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetHeadersCmd(
|
|
"",
|
|
"",
|
|
)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getHeaders","params":["",""],"id":1}`,
|
|
unmarshalled: &btcjson.GetHeadersCmd{
|
|
StartHash: "",
|
|
StopHash: "",
|
|
},
|
|
},
|
|
{
|
|
name: "getHeaders - with arguments",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getHeaders", "000000000000000001f1739002418e2f9a84c47a4fd2a0eb7a787a6b7dc12f16", "000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetHeadersCmd(
|
|
"000000000000000001f1739002418e2f9a84c47a4fd2a0eb7a787a6b7dc12f16",
|
|
"000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7",
|
|
)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getHeaders","params":["000000000000000001f1739002418e2f9a84c47a4fd2a0eb7a787a6b7dc12f16","000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7"],"id":1}`,
|
|
unmarshalled: &btcjson.GetHeadersCmd{
|
|
StartHash: "000000000000000001f1739002418e2f9a84c47a4fd2a0eb7a787a6b7dc12f16",
|
|
StopHash: "000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7",
|
|
},
|
|
},
|
|
{
|
|
name: "getTopHeaders",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getTopHeaders")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetTopHeadersCmd(
|
|
nil,
|
|
)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getTopHeaders","params":[],"id":1}`,
|
|
unmarshalled: &btcjson.GetTopHeadersCmd{},
|
|
},
|
|
{
|
|
name: "getTopHeaders - with start hash",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("getTopHeaders", "000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewGetTopHeadersCmd(
|
|
btcjson.String("000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7"),
|
|
)
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"getTopHeaders","params":["000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7"],"id":1}`,
|
|
unmarshalled: &btcjson.GetTopHeadersCmd{
|
|
StartHash: btcjson.String("000000000000000000ba33b33e1fad70b69e234fc24414dd47113bff38f523f7"),
|
|
},
|
|
},
|
|
{
|
|
name: "version",
|
|
newCmd: func() (interface{}, error) {
|
|
return btcjson.NewCmd("version")
|
|
},
|
|
staticCmd: func() interface{} {
|
|
return btcjson.NewVersionCmd()
|
|
},
|
|
marshalled: `{"jsonrpc":"1.0","method":"version","params":[],"id":1}`,
|
|
unmarshalled: &btcjson.VersionCmd{},
|
|
},
|
|
}
|
|
|
|
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 := btcjson.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 = btcjson.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 btcjson.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 = btcjson.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
|
|
}
|
|
}
|
|
}
|