2020-02-17 12:17:02 +00:00
|
|
|
package server
|
2019-01-22 12:14:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-01-30 08:03:44 +00:00
|
|
|
"encoding/hex"
|
2019-09-18 15:21:16 +00:00
|
|
|
"encoding/json"
|
2019-01-22 12:14:52 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2019-11-21 16:41:28 +00:00
|
|
|
"reflect"
|
2019-02-09 15:53:58 +00:00
|
|
|
"strings"
|
2019-01-22 12:14:52 +00:00
|
|
|
"testing"
|
2020-04-23 13:32:53 +00:00
|
|
|
"time"
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2020-04-29 12:25:58 +00:00
|
|
|
"github.com/gorilla/websocket"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core"
|
2020-04-23 13:02:01 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2020-04-23 13:32:53 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/blockchainer"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
2020-03-05 12:16:03 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/address"
|
2020-04-22 10:15:31 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/internal/testchain"
|
2020-03-04 17:35:37 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/response/result"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-04-23 13:32:53 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/wallet"
|
2019-01-22 12:14:52 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-11-21 16:41:28 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-01-22 12:14:52 +00:00
|
|
|
)
|
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
type executor struct {
|
|
|
|
chain *core.Blockchain
|
2020-04-29 12:14:56 +00:00
|
|
|
httpSrv *httptest.Server
|
2019-11-21 16:41:28 +00:00
|
|
|
}
|
2019-02-20 17:39:32 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
const (
|
|
|
|
defaultJSONRPC = "2.0"
|
|
|
|
defaultID = 1
|
|
|
|
)
|
2019-02-20 17:39:32 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
type rpcTestCase struct {
|
|
|
|
name string
|
|
|
|
params string
|
|
|
|
fail bool
|
|
|
|
result func(e *executor) interface{}
|
|
|
|
check func(t *testing.T, e *executor, result interface{})
|
|
|
|
}
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
|
2020-05-13 10:28:36 +00:00
|
|
|
const testContractHash = "1b4357bff5a01bdf2a6581247cf9ed1e24629176"
|
2020-03-05 15:26:54 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
var rpcTestCases = map[string][]rpcTestCase{
|
2020-02-21 14:56:28 +00:00
|
|
|
"getapplicationlog": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-06-04 19:21:12 +00:00
|
|
|
params: `["70c9d7804dd19bb8d60740824d45055d117a4c51559de1b51aed0a6a127b353c"]`,
|
2020-02-21 14:56:28 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.ApplicationLog{} },
|
|
|
|
check: func(t *testing.T, e *executor, acc interface{}) {
|
|
|
|
res, ok := acc.(*result.ApplicationLog)
|
|
|
|
require.True(t, ok)
|
2020-06-04 19:21:12 +00:00
|
|
|
expectedTxHash, err := util.Uint256DecodeStringLE("70c9d7804dd19bb8d60740824d45055d117a4c51559de1b51aed0a6a127b353c")
|
2020-03-04 14:45:29 +00:00
|
|
|
require.NoError(t, err)
|
2020-02-21 14:56:28 +00:00
|
|
|
assert.Equal(t, expectedTxHash, res.TxHash)
|
|
|
|
assert.Equal(t, 1, len(res.Executions))
|
|
|
|
assert.Equal(t, "Application", res.Executions[0].Trigger)
|
|
|
|
assert.Equal(t, "HALT", res.Executions[0].VMState)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid address",
|
|
|
|
params: `["notahash"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid tx hash",
|
|
|
|
params: `["d24cc1d52b5c0216cbf3835bb5bac8ccf32639fa1ab6627ec4e2b9f33f7ec02f"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid tx type",
|
|
|
|
params: `["f9adfde059810f37b3d0686d67f6b29034e0c669537df7e59b40c14a0508b9ed"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-02-15 17:00:38 +00:00
|
|
|
"getcontractstate": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-03-05 15:26:54 +00:00
|
|
|
params: fmt.Sprintf(`["%s"]`, testContractHash),
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.ContractState{} },
|
|
|
|
check: func(t *testing.T, e *executor, cs interface{}) {
|
|
|
|
res, ok := cs.(*result.ContractState)
|
2020-02-15 17:00:38 +00:00
|
|
|
require.True(t, ok)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.Equal(t, byte(0), res.Version)
|
2020-03-23 09:46:42 +00:00
|
|
|
assert.Equal(t, testContractHash, res.ScriptHash.StringLE())
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.Equal(t, "0.99", res.CodeVersion)
|
2020-02-15 17:00:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "negative",
|
|
|
|
params: `["6d1eeca891ee93de2b7a77eb91c26f3b3c04d6c3"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid hash",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-03-05 11:50:06 +00:00
|
|
|
|
|
|
|
"getnep5balances": {
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid address",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-04-22 10:15:31 +00:00
|
|
|
params: `["` + testchain.PrivateKeyByID(0).GetScriptHash().StringLE() + `"]`,
|
2020-03-05 11:50:06 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.NEP5Balances{} },
|
|
|
|
check: func(t *testing.T, e *executor, acc interface{}) {
|
|
|
|
res, ok := acc.(*result.NEP5Balances)
|
|
|
|
require.True(t, ok)
|
2020-05-08 17:54:24 +00:00
|
|
|
rubles, err := util.Uint160DecodeStringLE(testContractHash)
|
|
|
|
require.NoError(t, err)
|
|
|
|
expected := result.NEP5Balances{
|
2020-06-04 19:21:12 +00:00
|
|
|
Balances: []result.NEP5Balance{
|
|
|
|
{
|
|
|
|
Asset: rubles,
|
|
|
|
Amount: "8.77",
|
|
|
|
LastUpdated: 6,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Asset: e.chain.GoverningTokenHash(),
|
|
|
|
Amount: "99998000",
|
|
|
|
LastUpdated: 4,
|
|
|
|
},
|
2020-05-08 17:54:24 +00:00
|
|
|
{
|
|
|
|
Asset: e.chain.UtilityTokenHash(),
|
2020-06-04 20:16:43 +00:00
|
|
|
Amount: "1023.99976000",
|
|
|
|
LastUpdated: 4,
|
2020-05-08 17:54:24 +00:00
|
|
|
}},
|
|
|
|
Address: testchain.PrivateKeyByID(0).GetScriptHash().StringLE(),
|
|
|
|
}
|
2020-04-22 10:15:31 +00:00
|
|
|
require.Equal(t, testchain.PrivateKeyByID(0).Address(), res.Address)
|
2020-05-08 17:54:24 +00:00
|
|
|
require.ElementsMatch(t, expected.Balances, res.Balances)
|
2020-03-05 11:50:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-03-05 12:16:03 +00:00
|
|
|
"getnep5transfers": {
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid address",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-04-22 10:15:31 +00:00
|
|
|
params: `["` + testchain.PrivateKeyByID(0).Address() + `"]`,
|
2020-03-05 12:16:03 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.NEP5Transfers{} },
|
|
|
|
check: func(t *testing.T, e *executor, acc interface{}) {
|
|
|
|
res, ok := acc.(*result.NEP5Transfers)
|
|
|
|
require.True(t, ok)
|
2020-05-08 17:54:24 +00:00
|
|
|
rublesHash, err := util.Uint160DecodeStringLE(testContractHash)
|
2020-03-05 12:16:03 +00:00
|
|
|
require.NoError(t, err)
|
2020-06-04 19:21:12 +00:00
|
|
|
blockSendRubles, err := e.chain.GetBlock(e.chain.GetHeaderHash(6))
|
2020-05-08 17:54:24 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, 1, len(blockSendRubles.Transactions))
|
|
|
|
txSendRublesHash := blockSendRubles.Transactions[0].Hash()
|
2020-06-04 19:21:12 +00:00
|
|
|
blockReceiveRubles, err := e.chain.GetBlock(e.chain.GetHeaderHash(5))
|
2020-05-08 17:54:24 +00:00
|
|
|
require.NoError(t, err)
|
2020-06-04 19:21:12 +00:00
|
|
|
require.Equal(t, 2, len(blockReceiveRubles.Transactions))
|
|
|
|
txReceiveRublesHash := blockReceiveRubles.Transactions[1].Hash()
|
|
|
|
blockReceiveGAS, err := e.chain.GetBlock(e.chain.GetHeaderHash(1))
|
2020-05-08 17:54:24 +00:00
|
|
|
require.NoError(t, err)
|
2020-06-04 19:21:12 +00:00
|
|
|
require.Equal(t, 2, len(blockReceiveGAS.Transactions))
|
|
|
|
txReceiveNEOHash := blockReceiveGAS.Transactions[0].Hash()
|
|
|
|
txReceiveGASHash := blockReceiveGAS.Transactions[1].Hash()
|
|
|
|
blockSendNEO, err := e.chain.GetBlock(e.chain.GetHeaderHash(4))
|
2020-05-08 17:54:24 +00:00
|
|
|
require.NoError(t, err)
|
2020-06-04 19:21:12 +00:00
|
|
|
require.Equal(t, 1, len(blockSendNEO.Transactions))
|
|
|
|
txSendNEOHash := blockSendNEO.Transactions[0].Hash()
|
2020-05-08 17:54:24 +00:00
|
|
|
expected := result.NEP5Transfers{
|
2020-06-04 19:21:12 +00:00
|
|
|
Sent: []result.NEP5Transfer{
|
|
|
|
{
|
|
|
|
Timestamp: blockSendRubles.Timestamp,
|
|
|
|
Asset: rublesHash,
|
|
|
|
Address: testchain.PrivateKeyByID(1).Address(),
|
|
|
|
Amount: "1.23",
|
|
|
|
Index: 6,
|
|
|
|
NotifyIndex: 0,
|
|
|
|
TxHash: txSendRublesHash,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Timestamp: blockSendNEO.Timestamp,
|
|
|
|
Asset: e.chain.GoverningTokenHash(),
|
|
|
|
Address: testchain.PrivateKeyByID(1).Address(),
|
|
|
|
Amount: "1000",
|
|
|
|
Index: 4,
|
|
|
|
NotifyIndex: 0,
|
|
|
|
TxHash: txSendNEOHash,
|
|
|
|
},
|
|
|
|
},
|
2020-05-08 17:54:24 +00:00
|
|
|
Received: []result.NEP5Transfer{
|
|
|
|
{
|
2020-06-04 19:21:12 +00:00
|
|
|
Timestamp: blockReceiveRubles.Timestamp,
|
2020-05-08 17:54:24 +00:00
|
|
|
Asset: rublesHash,
|
|
|
|
Address: address.Uint160ToString(rublesHash),
|
|
|
|
Amount: "10",
|
2020-06-04 19:21:12 +00:00
|
|
|
Index: 5,
|
2020-05-08 17:54:24 +00:00
|
|
|
NotifyIndex: 0,
|
2020-06-04 19:21:12 +00:00
|
|
|
TxHash: txReceiveRublesHash,
|
2020-05-08 17:54:24 +00:00
|
|
|
},
|
2020-06-04 20:16:43 +00:00
|
|
|
{
|
|
|
|
Timestamp: blockSendNEO.Timestamp,
|
|
|
|
Asset: e.chain.UtilityTokenHash(),
|
|
|
|
Address: "", // Minted GAS.
|
|
|
|
Amount: "23.99976000",
|
|
|
|
Index: 4,
|
|
|
|
NotifyIndex: 0,
|
|
|
|
TxHash: txSendNEOHash,
|
|
|
|
},
|
2020-05-08 17:54:24 +00:00
|
|
|
{
|
2020-06-04 19:21:12 +00:00
|
|
|
Timestamp: blockReceiveGAS.Timestamp,
|
2020-05-08 17:54:24 +00:00
|
|
|
Asset: e.chain.UtilityTokenHash(),
|
|
|
|
Address: testchain.MultisigAddress(),
|
2020-05-27 20:32:19 +00:00
|
|
|
Amount: "1000",
|
2020-05-08 17:54:24 +00:00
|
|
|
Index: 1,
|
|
|
|
NotifyIndex: 0,
|
2020-06-04 19:21:12 +00:00
|
|
|
TxHash: txReceiveGASHash,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Timestamp: blockReceiveGAS.Timestamp,
|
|
|
|
Asset: e.chain.GoverningTokenHash(),
|
|
|
|
Address: testchain.MultisigAddress(),
|
|
|
|
Amount: "99999000",
|
|
|
|
Index: 1,
|
|
|
|
NotifyIndex: 0,
|
|
|
|
TxHash: txReceiveNEOHash,
|
2020-05-08 17:54:24 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Address: testchain.PrivateKeyByID(0).Address(),
|
|
|
|
}
|
|
|
|
require.Equal(t, expected.Address, res.Address)
|
|
|
|
require.ElementsMatch(t, expected.Sent, res.Sent)
|
|
|
|
require.ElementsMatch(t, expected.Received, res.Received)
|
2020-03-05 12:16:03 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-01-30 08:03:44 +00:00
|
|
|
"getstorage": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-03-05 15:26:54 +00:00
|
|
|
params: fmt.Sprintf(`["%s", "746573746b6579"]`, testContractHash),
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
v := hex.EncodeToString([]byte("testvalue"))
|
|
|
|
return &v
|
2020-01-30 08:03:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing key",
|
2020-03-05 15:26:54 +00:00
|
|
|
params: fmt.Sprintf(`["%s", "7465"]`, testContractHash),
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
v := ""
|
|
|
|
return &v
|
2020-01-30 08:03:44 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no second parameter",
|
2020-03-05 15:26:54 +00:00
|
|
|
params: fmt.Sprintf(`["%s"]`, testContractHash),
|
2020-01-30 08:03:44 +00:00
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid hash",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid key",
|
2020-03-05 15:26:54 +00:00
|
|
|
params: fmt.Sprintf(`["%s", "notahex"]`, testContractHash),
|
2020-01-30 08:03:44 +00:00
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
"getbestblockhash": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
|
|
|
result: func(e *executor) interface{} {
|
2020-02-21 12:10:59 +00:00
|
|
|
v := "0x" + e.chain.CurrentBlockHash().StringLE()
|
|
|
|
return &v
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
params: "1",
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"getblock": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-05-08 17:54:24 +00:00
|
|
|
params: "[3, 1]",
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.Block{} },
|
|
|
|
check: func(t *testing.T, e *executor, blockRes interface{}) {
|
|
|
|
res, ok := blockRes.(*result.Block)
|
2019-11-21 16:41:28 +00:00
|
|
|
require.True(t, ok)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
|
2020-05-08 17:54:24 +00:00
|
|
|
block, err := e.chain.GetBlock(e.chain.GetHeaderHash(3))
|
2019-11-21 16:41:28 +00:00
|
|
|
require.NoErrorf(t, err, "could not get block")
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
|
2020-05-13 18:27:08 +00:00
|
|
|
assert.Equal(t, block.Hash(), res.Hash())
|
|
|
|
for i, tx := range res.Transactions {
|
2020-04-22 17:42:38 +00:00
|
|
|
actualTx := block.Transactions[i]
|
2020-02-12 14:25:44 +00:00
|
|
|
require.True(t, ok)
|
2020-06-04 19:21:12 +00:00
|
|
|
require.Equal(t, actualTx.Type, tx.Type)
|
2020-05-08 17:54:24 +00:00
|
|
|
require.Equal(t, actualTx.Nonce, tx.Nonce)
|
|
|
|
require.Equal(t, block.Transactions[i].Hash(), tx.Hash())
|
2020-02-12 14:25:44 +00:00
|
|
|
}
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
2019-11-26 10:31:11 +00:00
|
|
|
{
|
|
|
|
name: "bad params",
|
|
|
|
params: `[[]]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
{
|
|
|
|
name: "invalid height",
|
|
|
|
params: `[-1]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid hash",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing hash",
|
|
|
|
params: `["` + util.Uint256{}.String() + `"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"getblockcount": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
v := int(e.chain.BlockHeight() + 1)
|
|
|
|
return &v
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"getblockhash": {
|
|
|
|
{
|
|
|
|
params: "[1]",
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
// We don't have `t` here for proper handling, but
|
|
|
|
// error here would lead to panic down below.
|
|
|
|
block, _ := e.chain.GetBlock(e.chain.GetHeaderHash(1))
|
2019-11-27 09:23:18 +00:00
|
|
|
expectedHash := "0x" + block.Hash().StringLE()
|
2020-02-21 12:10:59 +00:00
|
|
|
return &expectedHash
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "string height",
|
|
|
|
params: `["first"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid number height",
|
|
|
|
params: `[-2]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-03-04 17:35:37 +00:00
|
|
|
"getblockheader": {
|
|
|
|
{
|
|
|
|
name: "invalid verbose type",
|
2020-04-20 17:38:47 +00:00
|
|
|
params: `["9673799c5b5a294427401cb07d6cc615ada3a0d5c5bf7ed6f0f54f24abb2e2ac", true]`,
|
2020-03-04 17:35:37 +00:00
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid block hash",
|
|
|
|
params: `["notahash"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "unknown block",
|
|
|
|
params: `["a6e526375a780335112299f2262501e5e9574c3ba61b16bbc1e282b344f6c141"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-02-19 09:44:31 +00:00
|
|
|
"getblocksysfee": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
|
|
|
params: "[1]",
|
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
block, _ := e.chain.GetBlock(e.chain.GetHeaderHash(1))
|
|
|
|
|
|
|
|
var expectedBlockSysFee util.Fixed8
|
|
|
|
for _, tx := range block.Transactions {
|
2020-05-08 17:54:24 +00:00
|
|
|
expectedBlockSysFee += tx.SystemFee
|
2020-02-19 09:44:31 +00:00
|
|
|
}
|
|
|
|
return &expectedBlockSysFee
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "string height",
|
|
|
|
params: `["first"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid number height",
|
|
|
|
params: `[-2]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
"getconnectioncount": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(*executor) interface{} {
|
|
|
|
v := 0
|
|
|
|
return &v
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"getpeers": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
|
|
|
result: func(*executor) interface{} {
|
2020-02-21 12:10:59 +00:00
|
|
|
return &result.GetPeers{
|
|
|
|
Unconnected: []result.Peer{},
|
|
|
|
Connected: []result.Peer{},
|
|
|
|
Bad: []result.Peer{},
|
2019-11-21 16:41:28 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"getrawtransaction": {
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid hash",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing hash",
|
|
|
|
params: `["` + util.Uint256{}.String() + `"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-03-05 14:20:50 +00:00
|
|
|
"gettransactionheight": {
|
|
|
|
{
|
2020-04-16 14:10:42 +00:00
|
|
|
name: "positive",
|
2020-06-04 19:21:12 +00:00
|
|
|
params: `["70c9d7804dd19bb8d60740824d45055d117a4c51559de1b51aed0a6a127b353c"]`,
|
2020-03-05 14:20:50 +00:00
|
|
|
result: func(e *executor) interface{} {
|
2020-06-04 19:21:12 +00:00
|
|
|
h := 0
|
2020-03-05 14:20:50 +00:00
|
|
|
return &h
|
|
|
|
},
|
2020-06-04 19:21:12 +00:00
|
|
|
check: func(t *testing.T, e *executor, resp interface{}) {
|
|
|
|
h, ok := resp.(*int)
|
|
|
|
require.True(t, ok)
|
|
|
|
assert.Equal(t, 2, *h)
|
|
|
|
},
|
2020-03-05 14:20:50 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid hash",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "missing hash",
|
|
|
|
params: `["` + util.Uint256{}.String() + `"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-06-01 20:27:03 +00:00
|
|
|
"getunclaimedgas": {
|
2020-03-06 17:38:17 +00:00
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: "[]",
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid address",
|
|
|
|
params: `["invalid"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-04-22 10:15:31 +00:00
|
|
|
params: `["` + testchain.MultisigAddress() + `"]`,
|
2020-03-06 17:38:17 +00:00
|
|
|
result: func(*executor) interface{} {
|
2020-06-01 20:27:03 +00:00
|
|
|
var s string
|
|
|
|
return &s
|
2020-03-06 17:38:17 +00:00
|
|
|
},
|
2020-06-01 20:27:03 +00:00
|
|
|
check: func(t *testing.T, e *executor, resp interface{}) {
|
|
|
|
s, ok := resp.(*string)
|
2020-03-06 17:38:17 +00:00
|
|
|
require.True(t, ok)
|
2020-06-04 19:21:12 +00:00
|
|
|
// Incorrect, to be fixed later.
|
2020-06-04 20:16:43 +00:00
|
|
|
assert.Equal(t, "48000", *s)
|
2020-03-06 17:38:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-03-05 14:48:30 +00:00
|
|
|
"getvalidators": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
|
|
|
result: func(*executor) interface{} {
|
|
|
|
return &[]result.Validator{}
|
|
|
|
},
|
|
|
|
check: func(t *testing.T, e *executor, validators interface{}) {
|
|
|
|
var expected []result.Validator
|
|
|
|
sBValidators, err := e.chain.GetStandByValidators()
|
|
|
|
require.NoError(t, err)
|
|
|
|
for _, sbValidator := range sBValidators {
|
|
|
|
expected = append(expected, result.Validator{
|
|
|
|
PublicKey: *sbValidator,
|
|
|
|
Votes: 0,
|
|
|
|
Active: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
actual, ok := validators.(*[]result.Validator)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
assert.ElementsMatch(t, expected, *actual)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
"getversion": {
|
|
|
|
{
|
|
|
|
params: "[]",
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(*executor) interface{} { return &result.Version{} },
|
|
|
|
check: func(t *testing.T, e *executor, ver interface{}) {
|
|
|
|
resp, ok := ver.(*result.Version)
|
2019-11-21 16:41:28 +00:00
|
|
|
require.True(t, ok)
|
2020-02-21 12:10:59 +00:00
|
|
|
require.Equal(t, "/NEO-GO:/", resp.UserAgent)
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-11-28 16:08:31 +00:00
|
|
|
"invoke": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
|
|
|
params: `["50befd26fdf6e4d957c11e078b24ebce6291456f", [{"type": "String", "value": "qwerty"}]]`,
|
2020-03-03 10:08:34 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.Invoke{} },
|
2020-02-21 12:10:59 +00:00
|
|
|
check: func(t *testing.T, e *executor, inv interface{}) {
|
2020-03-03 10:08:34 +00:00
|
|
|
res, ok := inv.(*result.Invoke)
|
2019-11-28 16:08:31 +00:00
|
|
|
require.True(t, ok)
|
2020-05-07 11:38:19 +00:00
|
|
|
assert.Equal(t, "0c067177657274790c146f459162ceeb248b071ec157d9e4f6fd26fdbe5041627d5b52", res.Script)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.NotEqual(t, "", res.State)
|
|
|
|
assert.NotEqual(t, 0, res.GasConsumed)
|
2019-11-28 16:08:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a string",
|
|
|
|
params: `[42, []]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a scripthash",
|
|
|
|
params: `["qwerty", []]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not an array",
|
|
|
|
params: `["50befd26fdf6e4d957c11e078b24ebce6291456f", 42]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "bad params",
|
|
|
|
params: `["50befd26fdf6e4d957c11e078b24ebce6291456f", [{"type": "Integer", "value": "qwerty"}]]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-26 10:13:17 +00:00
|
|
|
"invokefunction": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
|
|
|
params: `["50befd26fdf6e4d957c11e078b24ebce6291456f", "test", []]`,
|
2020-03-03 10:08:34 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.Invoke{} },
|
2020-02-21 12:10:59 +00:00
|
|
|
check: func(t *testing.T, e *executor, inv interface{}) {
|
2020-03-03 10:08:34 +00:00
|
|
|
res, ok := inv.(*result.Invoke)
|
2019-11-26 10:13:17 +00:00
|
|
|
require.True(t, ok)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.NotEqual(t, "", res.Script)
|
|
|
|
assert.NotEqual(t, "", res.State)
|
|
|
|
assert.NotEqual(t, 0, res.GasConsumed)
|
2019-11-26 10:13:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a string",
|
|
|
|
params: `[42, "test", []]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a scripthash",
|
|
|
|
params: `["qwerty", "test", []]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "bad params",
|
|
|
|
params: `["50befd26fdf6e4d957c11e078b24ebce6291456f", "test", [{"type": "Integer", "value": "qwerty"}]]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-26 10:24:49 +00:00
|
|
|
"invokescript": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
|
|
|
params: `["51c56b0d48656c6c6f2c20776f726c6421680f4e656f2e52756e74696d652e4c6f67616c7566"]`,
|
2020-03-03 10:08:34 +00:00
|
|
|
result: func(e *executor) interface{} { return &result.Invoke{} },
|
2020-02-21 12:10:59 +00:00
|
|
|
check: func(t *testing.T, e *executor, inv interface{}) {
|
2020-03-03 10:08:34 +00:00
|
|
|
res, ok := inv.(*result.Invoke)
|
2019-11-26 10:24:49 +00:00
|
|
|
require.True(t, ok)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.NotEqual(t, "", res.Script)
|
|
|
|
assert.NotEqual(t, "", res.State)
|
|
|
|
assert.NotEqual(t, 0, res.GasConsumed)
|
2019-11-26 10:24:49 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "not a string",
|
|
|
|
params: `[42]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "bas string",
|
|
|
|
params: `["qwerty"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
"sendrawtransaction": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
2020-06-04 19:21:12 +00:00
|
|
|
params: `["d1010a000000316e851039019d39dfc2c37d6c3fee19fd5809870000000000000000aab9050000000000b00400005d0300e87648170000000c1420728274afafc36f43a071d328cfa3e629d9cbb00c14316e851039019d39dfc2c37d6c3fee19fd58098713c00c087472616e736665720c14897720d8cd76f4f00abfa37c0edd889c208fde9b41627d5b52380001316e851039019d39dfc2c37d6c3fee19fd58098701000001420c40fadd2f9ddbe9484ef3577f131b0dec21b46a0d1c2fedd498ec258e378683d35d7159fd21120d832c1bff891c36bd765b50546ac762db4f4735f2df23ba2ec84a290c2102b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc20b410a906ad4"]`,
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(e *executor) interface{} {
|
|
|
|
v := true
|
|
|
|
return &v
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "negative",
|
2020-06-04 19:21:12 +00:00
|
|
|
params: `["d1010a000000316e851039019d39dfc2c37d6c3fee19fd5809870000000000000000aab9050000000000b00400005d0300e87648170000000c1420728274afafc36f43a071d328cfa3e629d9cbb00c14316e851039019d39dfc2c37d6c3fee19fd58098713c00c087472616e736665720c14897720d8cd76f4f00abfa37c0edd889c208fde9b41627d5b52380001316e851039019d39dfc2c37d6c3fee19fd58098701000001420c40fadd2f9ddbe9484ef3577f131b0dec21b46a0d1c2fedd498ec258e378683d35d7159fd21120d832c1bff891c36bd765b50546ac762db4f4735f2df23ba2ec84a290c2102b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc20b410a906ad5"]`,
|
2019-11-21 16:41:28 +00:00
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid string",
|
|
|
|
params: `["notahex"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid tx",
|
|
|
|
params: `["0274d792072617720636f6e747261637"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2020-03-02 17:01:32 +00:00
|
|
|
"submitblock": {
|
|
|
|
{
|
|
|
|
name: "invalid hex",
|
|
|
|
params: `["000000005gb86f62eafe8e9246bc0d1648e4e5c8389dee9fb7fe03fcc6772ec8c5e4ec2aedb908054ac1409be5f77d5369c6e03490b2f6676d68d0b3370f8159e0fdadf99bc05f5e030000005704000000000000be48d3a3f5d10013ab9ffee489706078714f1ea201fd0401406f299c82b513f59f5bd120317974852c9694c6e10db1ef2f1bb848b1a33e47a08f8dc03ee784166b2060a94cd4e7af88899b39787938f7f2763ea4d2182776ed40f3bafd85214fef38a4836ca97793001ea411f553c51e88781f7b916c59c145bff28314b6e7ea246789422a996fc4937e290a1b40f6b97c5222540f65b0d47aca40d2b3d19203d456428bfdb529e846285052105957385b65388b9a617f6e2d56a64ec41aa73439eafccb52987bb1975c9b67518b053d9e61b445e4a3377dbc206640bd688489bd62adf6bed9d61a73905b9591eb87053c6f0f4dd70f3bee7295541b490caef044b55b6f9f01dc4a05a756a3f2edd06f5adcbe4e984c1e552f9023f08b532102103a7f7dd016558597f7960d27c516a4394fd968b9e65155eb4b013e4040406e2102a7bc55fe8684e0119768d104ba30795bdcc86619e864add26156723ed185cd622102b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc22103d90c07df63e690ce77912e10ab51acc944b66860237b608c4f8f8309e71ee69954ae0100000000000000000000"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid block bytes",
|
|
|
|
params: `["0000000027"]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no params",
|
|
|
|
params: `[]`,
|
|
|
|
fail: true,
|
|
|
|
},
|
|
|
|
},
|
2019-11-21 16:41:28 +00:00
|
|
|
"validateaddress": {
|
|
|
|
{
|
|
|
|
name: "positive",
|
|
|
|
params: `["AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i"]`,
|
2020-02-21 12:10:59 +00:00
|
|
|
result: func(*executor) interface{} { return &result.ValidateAddress{} },
|
|
|
|
check: func(t *testing.T, e *executor, va interface{}) {
|
|
|
|
res, ok := va.(*result.ValidateAddress)
|
2019-11-21 16:41:28 +00:00
|
|
|
require.True(t, ok)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.Equal(t, "AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i", res.Address)
|
|
|
|
assert.True(t, res.IsValid)
|
2019-11-21 16:41:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "negative",
|
|
|
|
params: "[1]",
|
|
|
|
result: func(*executor) interface{} {
|
2020-02-21 12:10:59 +00:00
|
|
|
return &result.ValidateAddress{
|
|
|
|
Address: float64(1),
|
|
|
|
IsValid: false,
|
2019-11-21 16:41:28 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
func TestRPC(t *testing.T) {
|
2020-04-29 12:25:58 +00:00
|
|
|
t.Run("http", func(t *testing.T) {
|
|
|
|
testRPCProtocol(t, doRPCCallOverHTTP)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("websocket", func(t *testing.T) {
|
|
|
|
testRPCProtocol(t, doRPCCallOverWS)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// testRPCProtocol runs a full set of tests using given callback to make actual
|
|
|
|
// calls. Some tests change the chain state, thus we reinitialize the chain from
|
|
|
|
// scratch here.
|
|
|
|
func testRPCProtocol(t *testing.T, doRPCCall func(string, string, *testing.T) []byte) {
|
2020-05-09 20:59:21 +00:00
|
|
|
chain, rpcSrv, httpSrv := initServerWithInMemoryChain(t)
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2020-01-10 08:47:55 +00:00
|
|
|
defer chain.Close()
|
2020-05-09 20:59:21 +00:00
|
|
|
defer rpcSrv.Shutdown()
|
2020-01-10 08:47:55 +00:00
|
|
|
|
2020-04-29 12:14:56 +00:00
|
|
|
e := &executor{chain: chain, httpSrv: httpSrv}
|
2019-11-21 16:41:28 +00:00
|
|
|
for method, cases := range rpcTestCases {
|
|
|
|
t.Run(method, func(t *testing.T) {
|
|
|
|
rpc := `{"jsonrpc": "2.0", "id": 1, "method": "%s", "params": %s}`
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(fmt.Sprintf(rpc, method, tc.params), httpSrv.URL, t)
|
2020-02-21 12:10:59 +00:00
|
|
|
result := checkErrGetResult(t, body, tc.fail)
|
2019-11-21 16:41:28 +00:00
|
|
|
if tc.fail {
|
|
|
|
return
|
|
|
|
}
|
2019-11-15 19:04:10 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
expected, res := tc.getResultPair(e)
|
2020-02-21 12:10:59 +00:00
|
|
|
err := json.Unmarshal(result, res)
|
|
|
|
require.NoErrorf(t, err, "could not parse response: %s", result)
|
2019-02-20 17:39:32 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
if tc.check == nil {
|
|
|
|
assert.Equal(t, expected, res)
|
|
|
|
} else {
|
|
|
|
tc.check(t, e, res)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2019-11-15 19:04:10 +00:00
|
|
|
|
2020-04-23 13:32:53 +00:00
|
|
|
t.Run("submit", func(t *testing.T) {
|
|
|
|
rpc := `{"jsonrpc": "2.0", "id": 1, "method": "submitblock", "params": ["%s"]}`
|
2020-05-06 10:11:28 +00:00
|
|
|
t.Run("invalid signature", func(t *testing.T) {
|
2020-05-13 14:13:33 +00:00
|
|
|
s := newBlock(t, chain, 1, 0)
|
2020-05-06 10:11:28 +00:00
|
|
|
s.Script.VerificationScript[8] ^= 0xff
|
2020-05-04 13:53:36 +00:00
|
|
|
body := doRPCCall(fmt.Sprintf(rpc, encodeBlock(t, s)), httpSrv.URL, t)
|
2020-04-23 13:32:53 +00:00
|
|
|
checkErrGetResult(t, body, true)
|
|
|
|
})
|
|
|
|
|
2020-05-08 17:54:24 +00:00
|
|
|
priv0 := testchain.PrivateKeyByID(0)
|
|
|
|
acc0, err := wallet.NewAccountFromWIF(priv0.WIF())
|
2020-04-23 13:32:53 +00:00
|
|
|
require.NoError(t, err)
|
2020-05-08 17:54:24 +00:00
|
|
|
|
|
|
|
addNetworkFee := func(tx *transaction.Transaction) {
|
|
|
|
size := io.GetVarSize(tx)
|
|
|
|
netFee, sizeDelta := core.CalculateNetworkFee(acc0.Contract.Script)
|
|
|
|
tx.NetworkFee += netFee
|
|
|
|
size += sizeDelta
|
|
|
|
tx.NetworkFee = tx.NetworkFee.Add(util.Fixed8(int64(size) * int64(chain.FeePerByte())))
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:32:53 +00:00
|
|
|
newTx := func() *transaction.Transaction {
|
|
|
|
height := chain.BlockHeight()
|
2020-04-22 17:42:38 +00:00
|
|
|
tx := transaction.NewContractTX()
|
|
|
|
tx.Nonce = height + 1
|
2020-04-23 13:32:53 +00:00
|
|
|
tx.ValidUntilBlock = height + 10
|
2020-05-08 17:54:24 +00:00
|
|
|
tx.Sender = acc0.PrivateKey().GetScriptHash()
|
|
|
|
addNetworkFee(tx)
|
|
|
|
require.NoError(t, acc0.SignTx(tx))
|
2020-04-23 13:32:53 +00:00
|
|
|
return tx
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("invalid height", func(t *testing.T) {
|
2020-05-13 14:13:33 +00:00
|
|
|
b := newBlock(t, chain, 2, 0, newTx())
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(fmt.Sprintf(rpc, encodeBlock(t, b)), httpSrv.URL, t)
|
2020-04-23 13:32:53 +00:00
|
|
|
checkErrGetResult(t, body, true)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("positive", func(t *testing.T) {
|
2020-05-13 14:13:33 +00:00
|
|
|
b := newBlock(t, chain, 1, 0, newTx())
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(fmt.Sprintf(rpc, encodeBlock(t, b)), httpSrv.URL, t)
|
2020-04-23 13:32:53 +00:00
|
|
|
data := checkErrGetResult(t, body, false)
|
|
|
|
var res bool
|
|
|
|
require.NoError(t, json.Unmarshal(data, &res))
|
|
|
|
require.True(t, res)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-09-18 15:21:16 +00:00
|
|
|
t.Run("getrawtransaction", func(t *testing.T) {
|
|
|
|
block, _ := chain.GetBlock(chain.GetHeaderHash(0))
|
2020-04-22 17:42:38 +00:00
|
|
|
TXHash := block.Transactions[0].Hash()
|
2019-11-27 09:23:18 +00:00
|
|
|
rpc := fmt.Sprintf(`{"jsonrpc": "2.0", "id": 1, "method": "getrawtransaction", "params": ["%s"]}"`, TXHash.StringLE())
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(rpc, httpSrv.URL, t)
|
2020-02-21 12:10:59 +00:00
|
|
|
result := checkErrGetResult(t, body, false)
|
|
|
|
var res string
|
|
|
|
err := json.Unmarshal(result, &res)
|
|
|
|
require.NoErrorf(t, err, "could not parse response: %s", result)
|
2020-06-04 19:21:12 +00:00
|
|
|
assert.Equal(t, "d10100000000ca61e52e881d41374e640f819cd118cc153b21a700000000000000000000000000000000000000000541123e7fe80000000001000111", res)
|
2019-09-18 15:21:16 +00:00
|
|
|
})
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
t.Run("getrawtransaction 2 arguments", func(t *testing.T) {
|
|
|
|
block, _ := chain.GetBlock(chain.GetHeaderHash(0))
|
2020-04-22 17:42:38 +00:00
|
|
|
TXHash := block.Transactions[0].Hash()
|
2019-11-27 09:23:18 +00:00
|
|
|
rpc := fmt.Sprintf(`{"jsonrpc": "2.0", "id": 1, "method": "getrawtransaction", "params": ["%s", 0]}"`, TXHash.StringLE())
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(rpc, httpSrv.URL, t)
|
2020-02-21 12:10:59 +00:00
|
|
|
result := checkErrGetResult(t, body, false)
|
|
|
|
var res string
|
|
|
|
err := json.Unmarshal(result, &res)
|
|
|
|
require.NoErrorf(t, err, "could not parse response: %s", result)
|
2020-06-04 19:21:12 +00:00
|
|
|
assert.Equal(t, "d10100000000ca61e52e881d41374e640f819cd118cc153b21a700000000000000000000000000000000000000000541123e7fe80000000001000111", res)
|
2019-09-18 15:21:16 +00:00
|
|
|
})
|
2020-02-06 12:02:03 +00:00
|
|
|
|
2020-03-23 14:31:28 +00:00
|
|
|
t.Run("getrawtransaction 2 arguments, verbose", func(t *testing.T) {
|
|
|
|
block, _ := chain.GetBlock(chain.GetHeaderHash(0))
|
2020-04-22 17:42:38 +00:00
|
|
|
TXHash := block.Transactions[0].Hash()
|
2020-03-23 14:31:28 +00:00
|
|
|
rpc := fmt.Sprintf(`{"jsonrpc": "2.0", "id": 1, "method": "getrawtransaction", "params": ["%s", 1]}"`, TXHash.StringLE())
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(rpc, httpSrv.URL, t)
|
2020-03-23 14:31:28 +00:00
|
|
|
txOut := checkErrGetResult(t, body, false)
|
|
|
|
actual := result.TransactionOutputRaw{}
|
|
|
|
err := json.Unmarshal(txOut, &actual)
|
|
|
|
require.NoErrorf(t, err, "could not parse response: %s", txOut)
|
|
|
|
|
2020-06-04 19:21:12 +00:00
|
|
|
assert.Equal(t, block.Transactions[0], actual.Transaction)
|
|
|
|
assert.Equal(t, 8, actual.Confirmations)
|
2020-03-23 14:31:28 +00:00
|
|
|
assert.Equal(t, TXHash, actual.Transaction.Hash())
|
|
|
|
})
|
|
|
|
|
2020-04-23 13:02:01 +00:00
|
|
|
t.Run("getblockheader_positive", func(t *testing.T) {
|
|
|
|
rpc := `{"jsonrpc": "2.0", "id": 1, "method": "getblockheader", "params": %s}`
|
|
|
|
testHeaderHash := chain.GetHeaderHash(1).StringLE()
|
|
|
|
hdr := e.getHeader(testHeaderHash)
|
|
|
|
|
|
|
|
runCase := func(t *testing.T, rpc string, expected, actual interface{}) {
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(rpc, httpSrv.URL, t)
|
2020-04-23 13:02:01 +00:00
|
|
|
data := checkErrGetResult(t, body, false)
|
|
|
|
require.NoError(t, json.Unmarshal(data, actual))
|
|
|
|
require.Equal(t, expected, actual)
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("no verbose", func(t *testing.T) {
|
|
|
|
w := io.NewBufBinWriter()
|
|
|
|
hdr.EncodeBinary(w.BinWriter)
|
|
|
|
require.NoError(t, w.Err)
|
|
|
|
encoded := hex.EncodeToString(w.Bytes())
|
|
|
|
|
|
|
|
t.Run("missing", func(t *testing.T) {
|
|
|
|
runCase(t, fmt.Sprintf(rpc, `["`+testHeaderHash+`"]`), &encoded, new(string))
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("verbose=0", func(t *testing.T) {
|
|
|
|
runCase(t, fmt.Sprintf(rpc, `["`+testHeaderHash+`", 0]`), &encoded, new(string))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("verbose != 0", func(t *testing.T) {
|
|
|
|
nextHash := chain.GetHeaderHash(int(hdr.Index) + 1)
|
|
|
|
expected := &result.Header{
|
|
|
|
Hash: hdr.Hash(),
|
|
|
|
Size: io.GetVarSize(hdr),
|
|
|
|
Version: hdr.Version,
|
|
|
|
PrevBlockHash: hdr.PrevHash,
|
|
|
|
MerkleRoot: hdr.MerkleRoot,
|
|
|
|
Timestamp: hdr.Timestamp,
|
|
|
|
Index: hdr.Index,
|
|
|
|
NextConsensus: address.Uint160ToString(hdr.NextConsensus),
|
2020-05-25 13:41:39 +00:00
|
|
|
Witnesses: []transaction.Witness{hdr.Script},
|
2020-04-23 13:02:01 +00:00
|
|
|
Confirmations: e.chain.BlockHeight() - hdr.Index + 1,
|
|
|
|
NextBlockHash: &nextHash,
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc := fmt.Sprintf(rpc, `["`+testHeaderHash+`", 2]`)
|
|
|
|
runCase(t, rpc, expected, new(result.Header))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-03-02 16:13:44 +00:00
|
|
|
t.Run("getrawmempool", func(t *testing.T) {
|
|
|
|
mp := chain.GetMemPool()
|
|
|
|
// `expected` stores hashes of previously added txs
|
|
|
|
expected := make([]util.Uint256, 0)
|
|
|
|
for _, tx := range mp.GetVerifiedTransactions() {
|
|
|
|
expected = append(expected, tx.Tx.Hash())
|
|
|
|
}
|
|
|
|
for i := 0; i < 5; i++ {
|
2020-04-22 17:42:38 +00:00
|
|
|
tx := transaction.NewContractTX()
|
2020-03-02 16:13:44 +00:00
|
|
|
assert.NoError(t, mp.Add(tx, &FeerStub{}))
|
|
|
|
expected = append(expected, tx.Hash())
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc := `{"jsonrpc": "2.0", "id": 1, "method": "getrawmempool", "params": []}`
|
2020-04-29 12:14:56 +00:00
|
|
|
body := doRPCCall(rpc, httpSrv.URL, t)
|
2020-03-02 16:13:44 +00:00
|
|
|
res := checkErrGetResult(t, body, false)
|
|
|
|
|
|
|
|
var actual []util.Uint256
|
|
|
|
err := json.Unmarshal(res, &actual)
|
|
|
|
require.NoErrorf(t, err, "could not parse response: %s", res)
|
|
|
|
|
|
|
|
assert.ElementsMatch(t, expected, actual)
|
|
|
|
})
|
2019-11-21 16:41:28 +00:00
|
|
|
}
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2020-04-23 13:02:01 +00:00
|
|
|
func (e *executor) getHeader(s string) *block.Header {
|
|
|
|
hash, err := util.Uint256DecodeStringLE(s)
|
|
|
|
if err != nil {
|
|
|
|
panic("can not decode hash parameter")
|
|
|
|
}
|
|
|
|
block, err := e.chain.GetBlock(hash)
|
|
|
|
if err != nil {
|
|
|
|
panic("unknown block (update block hash)")
|
|
|
|
}
|
|
|
|
return block.Header()
|
|
|
|
}
|
|
|
|
|
2020-04-23 13:32:53 +00:00
|
|
|
func encodeBlock(t *testing.T, b *block.Block) string {
|
|
|
|
w := io.NewBufBinWriter()
|
|
|
|
b.EncodeBinary(w.BinWriter)
|
|
|
|
require.NoError(t, w.Err)
|
|
|
|
return hex.EncodeToString(w.Bytes())
|
|
|
|
}
|
|
|
|
|
2020-05-13 14:13:33 +00:00
|
|
|
func newBlock(t *testing.T, bc blockchainer.Blockchainer, index uint32, primary uint32, txs ...*transaction.Transaction) *block.Block {
|
2020-04-23 13:32:53 +00:00
|
|
|
witness := transaction.Witness{VerificationScript: testchain.MultisigVerificationScript()}
|
|
|
|
height := bc.BlockHeight()
|
|
|
|
h := bc.GetHeaderHash(int(height))
|
|
|
|
hdr, err := bc.GetHeader(h)
|
|
|
|
require.NoError(t, err)
|
|
|
|
b := &block.Block{
|
|
|
|
Base: block.Base{
|
|
|
|
PrevHash: hdr.Hash(),
|
2020-04-24 09:49:17 +00:00
|
|
|
Timestamp: (uint64(time.Now().UTC().Unix()) + uint64(hdr.Index)) * 1000,
|
2020-04-23 13:32:53 +00:00
|
|
|
Index: hdr.Index + index,
|
|
|
|
NextConsensus: witness.ScriptHash(),
|
|
|
|
Script: witness,
|
|
|
|
},
|
2020-04-22 05:57:55 +00:00
|
|
|
ConsensusData: block.ConsensusData{
|
2020-05-13 14:13:33 +00:00
|
|
|
PrimaryIndex: primary,
|
2020-04-22 05:57:55 +00:00
|
|
|
Nonce: 1111,
|
|
|
|
},
|
2020-04-23 13:32:53 +00:00
|
|
|
Transactions: txs,
|
|
|
|
}
|
|
|
|
_ = b.RebuildMerkleRoot()
|
|
|
|
|
|
|
|
b.Script.InvocationScript = testchain.Sign(b.GetSignedPart())
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2019-11-21 16:41:28 +00:00
|
|
|
func (tc rpcTestCase) getResultPair(e *executor) (expected interface{}, res interface{}) {
|
|
|
|
expected = tc.result(e)
|
2020-02-21 12:10:59 +00:00
|
|
|
resVal := reflect.New(reflect.TypeOf(expected).Elem())
|
|
|
|
return expected, resVal.Interface()
|
2019-09-18 15:21:16 +00:00
|
|
|
}
|
2019-01-22 12:14:52 +00:00
|
|
|
|
2020-02-21 12:10:59 +00:00
|
|
|
func checkErrGetResult(t *testing.T, body []byte, expectingFail bool) json.RawMessage {
|
|
|
|
var resp response.Raw
|
|
|
|
err := json.Unmarshal(body, &resp)
|
2019-11-21 16:41:28 +00:00
|
|
|
require.Nil(t, err)
|
2019-09-24 15:47:23 +00:00
|
|
|
if expectingFail {
|
2020-05-06 10:10:32 +00:00
|
|
|
require.NotNil(t, resp.Error)
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.NotEqual(t, 0, resp.Error.Code)
|
|
|
|
assert.NotEqual(t, "", resp.Error.Message)
|
2019-09-24 15:47:23 +00:00
|
|
|
} else {
|
2020-02-21 12:10:59 +00:00
|
|
|
assert.Nil(t, resp.Error)
|
2019-09-24 15:47:23 +00:00
|
|
|
}
|
2020-02-21 12:10:59 +00:00
|
|
|
return resp.Result
|
2019-09-24 15:47:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 12:25:58 +00:00
|
|
|
func doRPCCallOverWS(rpcCall string, url string, t *testing.T) []byte {
|
|
|
|
dialer := websocket.Dialer{HandshakeTimeout: time.Second}
|
|
|
|
url = "ws" + strings.TrimPrefix(url, "http")
|
|
|
|
c, _, err := dialer.Dial(url+"/ws", nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
c.SetWriteDeadline(time.Now().Add(time.Second))
|
|
|
|
require.NoError(t, c.WriteMessage(1, []byte(rpcCall)))
|
|
|
|
c.SetReadDeadline(time.Now().Add(time.Second))
|
|
|
|
_, body, err := c.ReadMessage()
|
|
|
|
require.NoError(t, err)
|
|
|
|
return bytes.TrimSpace(body)
|
|
|
|
}
|
|
|
|
|
|
|
|
func doRPCCallOverHTTP(rpcCall string, url string, t *testing.T) []byte {
|
2020-04-29 12:14:56 +00:00
|
|
|
cl := http.Client{Timeout: time.Second}
|
|
|
|
resp, err := cl.Post(url, "application/json", strings.NewReader(rpcCall))
|
|
|
|
require.NoErrorf(t, err, "could not make a POST request")
|
2019-09-18 15:21:16 +00:00
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
assert.NoErrorf(t, err, "could not read response from the request: %s", rpcCall)
|
2019-11-21 15:05:18 +00:00
|
|
|
return bytes.TrimSpace(body)
|
2019-01-22 12:14:52 +00:00
|
|
|
}
|