2019-11-08 15:40:21 +00:00
|
|
|
package consensus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
"github.com/nspcc-dev/dbft/payload"
|
2020-11-23 11:09:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/internal/random"
|
|
|
|
"github.com/nspcc-dev/neo-go/internal/testserdes"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2021-01-14 11:17:00 +00:00
|
|
|
npayload "github.com/nspcc-dev/neo-go/pkg/network/payload"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/opcode"
|
2019-11-15 10:32:40 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-11-08 15:40:21 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
var messageTypes = []messageType{
|
|
|
|
changeViewType,
|
|
|
|
prepareRequestType,
|
|
|
|
prepareResponseType,
|
|
|
|
commitType,
|
|
|
|
recoveryRequestType,
|
|
|
|
recoveryMessageType,
|
|
|
|
}
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
func TestConsensusPayload_Setters(t *testing.T) {
|
|
|
|
var p Payload
|
|
|
|
|
2021-01-14 11:17:00 +00:00
|
|
|
//p.SetVersion(1)
|
|
|
|
//assert.EqualValues(t, 1, p.Version())
|
2019-11-15 10:32:40 +00:00
|
|
|
|
2021-01-14 11:17:00 +00:00
|
|
|
//p.SetPrevHash(util.Uint256{1, 2, 3})
|
|
|
|
//assert.Equal(t, util.Uint256{1, 2, 3}, p.PrevHash())
|
2019-11-15 10:32:40 +00:00
|
|
|
|
|
|
|
p.SetValidatorIndex(4)
|
|
|
|
assert.EqualValues(t, 4, p.ValidatorIndex())
|
|
|
|
|
|
|
|
p.SetHeight(11)
|
|
|
|
assert.EqualValues(t, 11, p.Height())
|
|
|
|
|
|
|
|
p.SetViewNumber(2)
|
|
|
|
assert.EqualValues(t, 2, p.ViewNumber())
|
|
|
|
|
|
|
|
p.SetType(payload.PrepareRequestType)
|
|
|
|
assert.Equal(t, payload.PrepareRequestType, p.Type())
|
|
|
|
|
|
|
|
pl := randomMessage(t, prepareRequestType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.Payload())
|
|
|
|
require.Equal(t, pl, p.GetPrepareRequest())
|
|
|
|
|
|
|
|
pl = randomMessage(t, prepareResponseType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.GetPrepareResponse())
|
|
|
|
|
|
|
|
pl = randomMessage(t, commitType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.GetCommit())
|
|
|
|
|
|
|
|
pl = randomMessage(t, changeViewType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.GetChangeView())
|
|
|
|
|
|
|
|
pl = randomMessage(t, recoveryRequestType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.GetRecoveryRequest())
|
|
|
|
|
|
|
|
pl = randomMessage(t, recoveryMessageType)
|
|
|
|
p.SetPayload(pl)
|
|
|
|
require.Equal(t, pl, p.GetRecoveryMessage())
|
|
|
|
}
|
|
|
|
|
2021-01-14 11:17:00 +00:00
|
|
|
//func TestConsensusPayload_Verify(t *testing.T) {
|
|
|
|
// // signed payload from mixed privnet (Go + 3C# nodes)
|
|
|
|
// dataHex := "000000004c02d52305a6a8981bd1598f0c3076d6de15a44a60ca692e189cd8a7249f175c0800000003222100f24b9147a21e09562c68abdec56d3c5fc09936592933aea5692800b75edbab2301420c40b2b8080ab02b703bc4e64407a6f31bb7ae4c9b1b1c8477668afa752eba6148e03b3ffc7e06285c09bdce4582188466209f876c38f9921a88b545393543ab201a290c2103d90c07df63e690ce77912e10ab51acc944b66860237b608c4f8f8309e71ee6990b4195440d78"
|
|
|
|
// data, err := hex.DecodeString(dataHex)
|
|
|
|
// require.NoError(t, err)
|
|
|
|
//
|
|
|
|
// h, err := util.Uint160DecodeStringLE("a8826043c40abacfac1d9acc6b92a4458308ca18")
|
|
|
|
// require.NoError(t, err)
|
|
|
|
//
|
|
|
|
// p := NewPayload(netmode.PrivNet, false)
|
|
|
|
// require.NoError(t, testserdes.DecodeBinary(data, p))
|
|
|
|
// require.NoError(t, p.decodeData())
|
|
|
|
// bc := newTestChain(t, false)
|
|
|
|
// defer bc.Close()
|
|
|
|
// require.NoError(t, bc.VerifyWitness(h, p, &p.Witness, payloadGasLimit))
|
|
|
|
//}
|
2020-08-10 19:03:33 +00:00
|
|
|
|
2019-11-08 15:40:21 +00:00
|
|
|
func TestConsensusPayload_Serializable(t *testing.T) {
|
|
|
|
for _, mt := range messageTypes {
|
|
|
|
p := randomPayload(t, mt)
|
2020-04-15 15:56:45 +00:00
|
|
|
actual := new(Payload)
|
|
|
|
data, err := testserdes.EncodeBinary(p)
|
|
|
|
require.NoError(t, err)
|
2021-01-14 11:17:00 +00:00
|
|
|
require.NoError(t, testserdes.DecodeBinary(data, &actual.Extensible))
|
2020-04-15 15:56:45 +00:00
|
|
|
assert.NoError(t, actual.decodeData())
|
|
|
|
require.Equal(t, p, actual)
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 11:17:00 +00:00
|
|
|
//func TestConsensusPayload_DecodeBinaryInvalid(t *testing.T) {
|
|
|
|
// // PrepareResponse ConsensusPayload consists of:
|
|
|
|
// // 41-byte common prefix
|
|
|
|
// // 1-byte varint length of the payload (34),
|
|
|
|
// // - 1-byte view number
|
|
|
|
// // - 1-byte message type (PrepareResponse)
|
|
|
|
// // - 32-byte preparation hash
|
|
|
|
// // 1-byte delimiter (1)
|
|
|
|
// // 2-byte for empty invocation and verification scripts
|
|
|
|
// const (
|
|
|
|
// lenIndex = 41
|
|
|
|
// typeIndex = lenIndex + 1
|
|
|
|
// delimeterIndex = typeIndex + 34
|
|
|
|
// )
|
|
|
|
//
|
|
|
|
// buf := make([]byte, delimeterIndex+1+2)
|
|
|
|
//
|
|
|
|
// expected := &Payload{
|
|
|
|
// message: &message{
|
|
|
|
// Type: prepareResponseType,
|
|
|
|
// payload: &prepareResponse{},
|
|
|
|
// },
|
|
|
|
// Extensible: transaction.Witness{
|
|
|
|
// InvocationScript: []byte{},
|
|
|
|
// VerificationScript: []byte{},
|
|
|
|
// },
|
|
|
|
// }
|
|
|
|
// // fill `data` for next check
|
|
|
|
// _ = expected.Hash()
|
|
|
|
//
|
|
|
|
// // valid payload
|
|
|
|
// buf[delimeterIndex] = 1
|
|
|
|
// buf[lenIndex] = 34
|
|
|
|
// buf[typeIndex] = byte(prepareResponseType)
|
|
|
|
// p := &Payload{message: new(message)}
|
|
|
|
// require.NoError(t, testserdes.DecodeBinary(buf, p))
|
|
|
|
// // decode `data` into `message`
|
|
|
|
// _ = p.Hash()
|
|
|
|
// assert.NoError(t, p.decodeData())
|
|
|
|
// require.Equal(t, expected, p)
|
|
|
|
//
|
|
|
|
// // invalid type
|
|
|
|
// buf[typeIndex] = 0xFF
|
|
|
|
// actual := &Payload{message: new(message)}
|
|
|
|
// require.NoError(t, testserdes.DecodeBinary(buf, actual))
|
|
|
|
// require.Error(t, actual.decodeData())
|
|
|
|
//
|
|
|
|
// // invalid format
|
|
|
|
// buf[delimeterIndex] = 0
|
|
|
|
// buf[typeIndex] = byte(prepareResponseType)
|
|
|
|
// require.Error(t, testserdes.DecodeBinary(buf, new(Payload)))
|
|
|
|
//
|
|
|
|
// // invalid message length
|
|
|
|
// buf[delimeterIndex] = 1
|
|
|
|
// buf[lenIndex] = 0xFF
|
|
|
|
// buf[typeIndex] = byte(prepareResponseType)
|
|
|
|
// require.Error(t, testserdes.DecodeBinary(buf, new(Payload)))
|
|
|
|
//}
|
2019-11-15 10:32:40 +00:00
|
|
|
|
2019-11-08 15:40:21 +00:00
|
|
|
func TestCommit_Serializable(t *testing.T) {
|
|
|
|
c := randomMessage(t, commitType)
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, c, new(commit))
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrepareResponse_Serializable(t *testing.T) {
|
|
|
|
resp := randomMessage(t, prepareResponseType)
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, resp, new(prepareResponse))
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrepareRequest_Serializable(t *testing.T) {
|
|
|
|
req := randomMessage(t, prepareRequestType)
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, req, new(prepareRequest))
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRecoveryRequest_Serializable(t *testing.T) {
|
|
|
|
req := randomMessage(t, recoveryRequestType)
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, req, new(recoveryRequest))
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRecoveryMessage_Serializable(t *testing.T) {
|
|
|
|
msg := randomMessage(t, recoveryMessageType)
|
2020-03-26 14:43:24 +00:00
|
|
|
testserdes.EncodeDecodeBinary(t, msg, new(recoveryMessage))
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func randomPayload(t *testing.T, mt messageType) *Payload {
|
|
|
|
p := &Payload{
|
2021-01-14 11:17:00 +00:00
|
|
|
message: message{
|
|
|
|
Type: mt,
|
|
|
|
ValidatorIndex: byte(rand.Uint32()),
|
|
|
|
BlockIndex: rand.Uint32(),
|
|
|
|
ViewNumber: byte(rand.Uint32()),
|
|
|
|
payload: randomMessage(t, mt),
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
2021-01-14 11:17:00 +00:00
|
|
|
Extensible: npayload.Extensible{
|
|
|
|
Witness: transaction.Witness{
|
|
|
|
InvocationScript: random.Bytes(3),
|
|
|
|
VerificationScript: []byte{byte(opcode.PUSH0)},
|
|
|
|
},
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if mt == changeViewType {
|
2019-11-15 10:32:40 +00:00
|
|
|
p.payload.(*changeView).newViewNumber = p.ViewNumber() + 1
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func randomMessage(t *testing.T, mt messageType) io.Serializable {
|
|
|
|
switch mt {
|
|
|
|
case changeViewType:
|
|
|
|
return &changeView{
|
2020-07-11 07:48:25 +00:00
|
|
|
timestamp: rand.Uint64(),
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
case prepareRequestType:
|
|
|
|
return randomPrepareRequest(t)
|
|
|
|
case prepareResponseType:
|
2020-03-27 07:14:40 +00:00
|
|
|
return &prepareResponse{preparationHash: random.Uint256()}
|
2019-11-08 15:40:21 +00:00
|
|
|
case commitType:
|
|
|
|
var c commit
|
2020-03-27 07:14:40 +00:00
|
|
|
random.Fill(c.signature[:])
|
2019-11-08 15:40:21 +00:00
|
|
|
return &c
|
|
|
|
case recoveryRequestType:
|
2020-07-11 07:48:25 +00:00
|
|
|
return &recoveryRequest{timestamp: rand.Uint64()}
|
2019-11-08 15:40:21 +00:00
|
|
|
case recoveryMessageType:
|
|
|
|
return randomRecoveryMessage(t)
|
|
|
|
default:
|
|
|
|
require.Fail(t, "invalid type")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func randomPrepareRequest(t *testing.T) *prepareRequest {
|
|
|
|
const txCount = 3
|
|
|
|
|
|
|
|
req := &prepareRequest{
|
2020-04-21 11:26:57 +00:00
|
|
|
timestamp: rand.Uint64(),
|
2019-11-15 10:32:40 +00:00
|
|
|
nonce: rand.Uint64(),
|
|
|
|
transactionHashes: make([]util.Uint256, txCount),
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 17:42:38 +00:00
|
|
|
for i := 0; i < txCount; i++ {
|
2020-03-27 07:14:40 +00:00
|
|
|
req.transactionHashes[i] = random.Uint256()
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return req
|
|
|
|
}
|
|
|
|
|
|
|
|
func randomRecoveryMessage(t *testing.T) *recoveryMessage {
|
|
|
|
result := randomMessage(t, prepareRequestType)
|
|
|
|
require.IsType(t, (*prepareRequest)(nil), result)
|
|
|
|
prepReq := result.(*prepareRequest)
|
|
|
|
|
|
|
|
return &recoveryMessage{
|
2019-11-15 10:32:40 +00:00
|
|
|
preparationPayloads: []*preparationCompact{
|
2019-11-08 15:40:21 +00:00
|
|
|
{
|
|
|
|
ValidatorIndex: 1,
|
2020-03-27 07:14:40 +00:00
|
|
|
InvocationScript: random.Bytes(10),
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
|
|
|
},
|
2019-11-15 10:32:40 +00:00
|
|
|
commitPayloads: []*commitCompact{
|
2019-11-08 15:40:21 +00:00
|
|
|
{
|
|
|
|
ViewNumber: 0,
|
|
|
|
ValidatorIndex: 1,
|
2019-11-15 10:32:40 +00:00
|
|
|
Signature: [64]byte{1, 2, 3},
|
2020-03-27 07:14:40 +00:00
|
|
|
InvocationScript: random.Bytes(20),
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ViewNumber: 0,
|
|
|
|
ValidatorIndex: 2,
|
2019-11-15 10:32:40 +00:00
|
|
|
Signature: [64]byte{11, 3, 4, 98},
|
2020-03-27 07:14:40 +00:00
|
|
|
InvocationScript: random.Bytes(10),
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
|
|
|
},
|
2019-11-15 10:32:40 +00:00
|
|
|
changeViewPayloads: []*changeViewCompact{
|
2019-11-08 15:40:21 +00:00
|
|
|
{
|
2020-07-11 07:48:25 +00:00
|
|
|
Timestamp: rand.Uint64(),
|
2019-11-08 15:40:21 +00:00
|
|
|
ValidatorIndex: 3,
|
|
|
|
OriginalViewNumber: 3,
|
2020-03-27 07:14:40 +00:00
|
|
|
InvocationScript: random.Bytes(4),
|
2019-11-08 15:40:21 +00:00
|
|
|
},
|
|
|
|
},
|
2020-02-18 12:12:20 +00:00
|
|
|
prepareRequest: &message{
|
|
|
|
Type: prepareRequestType,
|
|
|
|
payload: prepReq,
|
|
|
|
},
|
2019-11-08 15:40:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
func TestPayload_Sign(t *testing.T) {
|
|
|
|
key, err := keys.NewPrivateKey()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
priv := &privateKey{key}
|
2020-08-20 08:02:11 +00:00
|
|
|
|
2019-11-15 10:32:40 +00:00
|
|
|
p := randomPayload(t, prepareRequestType)
|
2020-08-20 08:02:11 +00:00
|
|
|
h := priv.PublicKey().GetScriptHash()
|
2020-11-17 12:57:50 +00:00
|
|
|
bc := newTestChain(t, false)
|
2020-08-20 08:02:11 +00:00
|
|
|
defer bc.Close()
|
|
|
|
require.Error(t, bc.VerifyWitness(h, p, &p.Witness, payloadGasLimit))
|
2019-11-15 10:32:40 +00:00
|
|
|
require.NoError(t, p.Sign(priv))
|
2020-08-20 08:02:11 +00:00
|
|
|
require.NoError(t, bc.VerifyWitness(h, p, &p.Witness, payloadGasLimit))
|
2019-11-15 10:32:40 +00:00
|
|
|
}
|
|
|
|
|
2019-11-08 15:40:21 +00:00
|
|
|
func TestMessageType_String(t *testing.T) {
|
|
|
|
require.Equal(t, "ChangeView", changeViewType.String())
|
|
|
|
require.Equal(t, "PrepareRequest", prepareRequestType.String())
|
|
|
|
require.Equal(t, "PrepareResponse", prepareResponseType.String())
|
|
|
|
require.Equal(t, "Commit", commitType.String())
|
|
|
|
require.Equal(t, "RecoveryMessage", recoveryMessageType.String())
|
|
|
|
require.Equal(t, "RecoveryRequest", recoveryRequestType.String())
|
|
|
|
require.Equal(t, "UNKNOWN(0xff)", messageType(0xff).String())
|
|
|
|
}
|
2020-08-18 12:19:24 +00:00
|
|
|
|
2021-01-14 11:17:00 +00:00
|
|
|
//func TestPayload_DecodeFromPrivnet(t *testing.T) {
|
|
|
|
// hexDump := "000000004c02d52305a6a8981bd1598f0c3076d6de15a44a60ca692e189cd8a7249f175c08000000004230000368c5c5401d40eef6b8a9899d2041d29fd2e6300980fdcaa6660c10b85965f57852193cdb6f0d1e9f91dc510dff6df3a004b569fe2ad456d07007f6ccd55b1d01420c40e760250b821a4dcfc4b8727ecc409a758ab4bd3b288557fd3c3d76e083fe7c625b4ed25e763ad96c4eb0abc322600d82651fd32f8866fca1403fa04d3acc4675290c2102103a7f7dd016558597f7960d27c516a4394fd968b9e65155eb4b013e4040406e0b4195440d78"
|
|
|
|
// data, err := hex.DecodeString(hexDump)
|
|
|
|
// require.NoError(t, err)
|
|
|
|
//
|
|
|
|
// buf := io.NewBinReaderFromBuf(data)
|
|
|
|
// p := NewPayload(netmode.PrivNet, false)
|
|
|
|
// p.DecodeBinary(buf)
|
|
|
|
// require.NoError(t, buf.Err)
|
|
|
|
// require.NoError(t, p.decodeData())
|
|
|
|
// require.Equal(t, payload.CommitType, p.Type())
|
|
|
|
// require.Equal(t, uint32(8), p.Height())
|
|
|
|
//
|
|
|
|
// buf.ReadB()
|
|
|
|
// require.Equal(t, gio.EOF, buf.Err)
|
|
|
|
//}
|