The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/consensus/consensus_validator_test.go

292 lines
14 KiB

package consensus
import (
"encoding/hex"
6 years ago
"testing"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/params"
"github.com/golang/mock/gomock"
6 years ago
protobuf "github.com/golang/protobuf/proto"
6 years ago
"github.com/harmony-one/harmony/api/proto"
6 years ago
msg_pb "github.com/harmony-one/harmony/api/proto/message"
"github.com/harmony-one/harmony/core/types"
bls_cosi "github.com/harmony-one/harmony/crypto/bls"
"github.com/harmony-one/harmony/internal/utils"
6 years ago
"github.com/harmony-one/harmony/p2p"
mock_host "github.com/harmony-one/harmony/p2p/host/mock"
"github.com/harmony-one/harmony/p2p/p2pimpl"
6 years ago
"github.com/stretchr/testify/assert"
)
type MockChainReader struct{}
func (MockChainReader) Config() *params.ChainConfig {
return nil
}
func (MockChainReader) CurrentHeader() *types.Header {
return &types.Header{}
}
func (MockChainReader) GetHeader(hash common.Hash, number uint64) *types.Header {
return &types.Header{}
}
func (MockChainReader) GetHeaderByNumber(number uint64) *types.Header {
return &types.Header{}
}
func (MockChainReader) GetHeaderByHash(hash common.Hash) *types.Header {
return &types.Header{}
}
// GetBlock retrieves a block from the database by hash and number.
func (MockChainReader) GetBlock(hash common.Hash, number uint64) *types.Block {
return &types.Block{}
}
func TestProcessMessageValidatorAnnounce(test *testing.T) {
ctrl := gomock.NewController(test)
defer ctrl.Finish()
leader := p2p.Peer{IP: "127.0.0.1", Port: "9982"}
leaderPriKey := bls_cosi.RandPrivateKey()
leader.ConsensusPubKey = leaderPriKey.GetPublicKey()
validator1 := p2p.Peer{IP: "127.0.0.1", Port: "9984"}
validator1.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator2 := p2p.Peer{IP: "127.0.0.1", Port: "9986"}
validator2.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator3 := p2p.Peer{IP: "127.0.0.1", Port: "9988"}
validator3.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
m := mock_host.NewMockHost(ctrl)
// Asserts that the first and only call to Bar() is passed 99.
// Anything else will fail.
m.EXPECT().GetSelfPeer().Return(leader)
m.EXPECT().SendMessageToGroups([]p2p.GroupID{p2p.GroupIDBeacon}, gomock.Any())
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
host, err := p2pimpl.NewHost(&leader, priKey)
if err != nil {
test.Fatalf("newhost failure: %v", err)
}
consensusLeader, err := New(host, 0, leader, leaderPriKey)
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
blockBytes, err := hex.DecodeString("f902a5f902a0a00000000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000a02b418211410ee3e75b32abd925bbeba215172afa509d65c1953d4b4e505a4a2aa056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000808502540be400808080a000000000000000000000000000000000000000000000000000000000000000008800000000000000008400000001b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000c0c0")
if err != nil {
test.Fatalf("Cannot decode blockByte: %v", err)
}
consensusLeader.block = blockBytes
hashBytes, err := hex.DecodeString("bdd66a8211ffcbf0ad431b506c854b49264951fd9f690928e9cf44910c381053")
if err != nil {
test.Fatalf("Cannot decode hashByte: %v", err)
}
copy(consensusLeader.blockHash[:], hashBytes[:])
6 years ago
msgBytes := consensusLeader.constructAnnounceMessage()
6 years ago
msgBytes, err = proto.GetConsensusMessagePayload(msgBytes)
if err != nil {
test.Errorf("Failed to get consensus message")
}
6 years ago
message := &msg_pb.Message{}
if err = protobuf.Unmarshal(msgBytes, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
consensusValidator1, err := New(m, 0, leader, bls_cosi.RandPrivateKey())
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
consensusValidator1.ChainReader = MockChainReader{}
copy(consensusValidator1.blockHash[:], hashBytes[:])
consensusValidator1.processAnnounceMessage(message)
6 years ago
assert.Equal(test, PrepareDone, consensusValidator1.state)
time.Sleep(1 * time.Second)
}
6 years ago
func TestProcessMessageValidatorPrepared(test *testing.T) {
ctrl := gomock.NewController(test)
defer ctrl.Finish()
leader := p2p.Peer{IP: "127.0.0.1", Port: "7782"}
leaderPriKey := bls_cosi.RandPrivateKey()
leader.ConsensusPubKey = leaderPriKey.GetPublicKey()
validator1 := p2p.Peer{IP: "127.0.0.1", Port: "7784"}
validator1.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator2 := p2p.Peer{IP: "127.0.0.1", Port: "7786"}
validator2.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator3 := p2p.Peer{IP: "127.0.0.1", Port: "7788"}
validator3.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
m := mock_host.NewMockHost(ctrl)
// Asserts that the first and only call to Bar() is passed 99.
// Anything else will fail.
m.EXPECT().GetSelfPeer().Return(leader)
m.EXPECT().SendMessageToGroups([]p2p.GroupID{p2p.GroupIDBeacon}, gomock.Any()).Times(2)
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
host, err := p2pimpl.NewHost(&leader, priKey)
if err != nil {
test.Fatalf("newhost failure: %v", err)
}
consensusLeader, err := New(host, 0, leader, leaderPriKey)
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
blockBytes, err := hex.DecodeString("f902a5f902a0a00000000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000a02b418211410ee3e75b32abd925bbeba215172afa509d65c1953d4b4e505a4a2aa056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000808502540be400808080a000000000000000000000000000000000000000000000000000000000000000008800000000000000008400000001b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000c0c0")
if err != nil {
test.Fatalf("Cannot decode blockByte: %v", err)
}
consensusLeader.block = blockBytes
hashBytes, err := hex.DecodeString("bdd66a8211ffcbf0ad431b506c854b49264951fd9f690928e9cf44910c381053")
if err != nil {
test.Fatalf("Cannot decode hashByte: %v", err)
}
copy(consensusLeader.blockHash[:], hashBytes[:])
6 years ago
announceMsg := consensusLeader.constructAnnounceMessage()
consensusLeader.prepareSigs[consensusLeader.SelfAddress] = consensusLeader.priKey.SignHash(consensusLeader.blockHash[:])
6 years ago
preparedMsg, _ := consensusLeader.constructPreparedMessage()
consensusValidator1, err := New(m, 0, leader, bls_cosi.RandPrivateKey())
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
consensusValidator1.ChainReader = MockChainReader{}
6 years ago
// Get actual consensus messages.
announceMsg, err = proto.GetConsensusMessagePayload(announceMsg)
if err != nil {
test.Errorf("Failed to get consensus message")
}
preparedMsg, err = proto.GetConsensusMessagePayload(preparedMsg)
if err != nil {
test.Errorf("Failed to get consensus message")
}
6 years ago
message := &msg_pb.Message{}
if err = protobuf.Unmarshal(announceMsg, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
copy(consensusValidator1.blockHash[:], hashBytes[:])
consensusValidator1.processAnnounceMessage(message)
6 years ago
if err = protobuf.Unmarshal(preparedMsg, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
6 years ago
consensusValidator1.processPreparedMessage(message)
6 years ago
assert.Equal(test, CommitDone, consensusValidator1.state)
6 years ago
time.Sleep(time.Second)
}
func TestProcessMessageValidatorCommitted(test *testing.T) {
ctrl := gomock.NewController(test)
defer ctrl.Finish()
leader := p2p.Peer{IP: "127.0.0.1", Port: "7782"}
leaderPriKey := bls_cosi.RandPrivateKey()
leader.ConsensusPubKey = leaderPriKey.GetPublicKey()
validator1 := p2p.Peer{IP: "127.0.0.1", Port: "7784"}
validator1.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator2 := p2p.Peer{IP: "127.0.0.1", Port: "7786"}
validator2.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
validator3 := p2p.Peer{IP: "127.0.0.1", Port: "7788"}
validator3.ConsensusPubKey = bls_cosi.RandPrivateKey().GetPublicKey()
m := mock_host.NewMockHost(ctrl)
// Asserts that the first and only call to Bar() is passed 99.
// Anything else will fail.
m.EXPECT().GetSelfPeer().Return(leader)
m.EXPECT().SendMessageToGroups([]p2p.GroupID{p2p.GroupIDBeacon}, gomock.Any()).Times(2)
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
host, err := p2pimpl.NewHost(&leader, priKey)
if err != nil {
test.Fatalf("newhost failure: %v", err)
}
6 years ago
message := &msg_pb.Message{}
consensusLeader, err := New(host, 0, leader, leaderPriKey)
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
blockBytes, err := hex.DecodeString("f902a5f902a0a00000000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000a02b418211410ee3e75b32abd925bbeba215172afa509d65c1953d4b4e505a4a2aa056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083020000808502540be400808080a000000000000000000000000000000000000000000000000000000000000000008800000000000000008400000001b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000c0c0")
if err != nil {
test.Fatalf("Cannot decode blockByte: %v", err)
}
consensusLeader.block = blockBytes
hashBytes, err := hex.DecodeString("bdd66a8211ffcbf0ad431b506c854b49264951fd9f690928e9cf44910c381053")
if err != nil {
test.Fatalf("Cannot decode hashByte: %v", err)
}
copy(consensusLeader.blockHash[:], hashBytes[:])
announceMsg := consensusLeader.constructAnnounceMessage()
consensusLeader.prepareSigs[consensusLeader.SelfAddress] = consensusLeader.priKey.SignHash(consensusLeader.blockHash[:])
preparedMsg, _ := consensusLeader.constructPreparedMessage()
aggSig := bls_cosi.AggregateSig(consensusLeader.GetPrepareSigsArray())
multiSigAndBitmap := append(aggSig.Serialize(), consensusLeader.prepareBitmap.Bitmap...)
consensusLeader.commitSigs[consensusLeader.SelfAddress] = consensusLeader.priKey.SignHash(multiSigAndBitmap)
committedMsg, _ := consensusLeader.constructCommittedMessage()
6 years ago
// Get actual consensus messages.
announceMsg, err = proto.GetConsensusMessagePayload(announceMsg)
if err != nil {
test.Errorf("Failed to get consensus message")
}
preparedMsg, err = proto.GetConsensusMessagePayload(preparedMsg)
if err != nil {
test.Errorf("Failed to get consensus message")
}
committedMsg, err = proto.GetConsensusMessagePayload(committedMsg)
if err != nil {
test.Errorf("Failed to get consensus message")
}
consensusValidator1, err := New(m, 0, leader, bls_cosi.RandPrivateKey())
if err != nil {
test.Fatalf("Cannot craeate consensus: %v", err)
}
consensusValidator1.ChainReader = MockChainReader{}
consensusValidator1.OnConsensusDone = func(newBlock *types.Block) {}
6 years ago
if err = protobuf.Unmarshal(announceMsg, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
copy(consensusValidator1.blockHash[:], hashBytes[:])
consensusValidator1.processAnnounceMessage(message)
6 years ago
if err = protobuf.Unmarshal(preparedMsg, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
consensusValidator1.processPreparedMessage(message)
6 years ago
if err = protobuf.Unmarshal(committedMsg, message); err != nil {
test.Errorf("Failed to unmarshal message payload")
}
consensusValidator1.processCommittedMessage(message)
assert.Equal(test, Finished, consensusValidator1.state)
time.Sleep(1 * time.Second)
}