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.
142 lines
4.4 KiB
142 lines
4.4 KiB
package consensus
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
msg_pb "github.com/harmony-one/harmony/api/proto/message"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
"github.com/harmony-one/harmony/p2p/p2pimpl"
|
|
)
|
|
|
|
func TestNew(test *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9902"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9905"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
test.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
if consensus.consensusID != 0 {
|
|
test.Errorf("Consensus Id is initialized to the wrong value: %d", consensus.consensusID)
|
|
}
|
|
|
|
if !consensus.IsLeader {
|
|
test.Error("Consensus should belong to a leader")
|
|
}
|
|
|
|
if consensus.ReadySignal == nil {
|
|
test.Error("Consensus ReadySignal should be initialized")
|
|
}
|
|
}
|
|
|
|
func TestRemovePeers(t *testing.T) {
|
|
_, pk1 := utils.GenKey("1", "1")
|
|
_, pk2 := utils.GenKey("2", "2")
|
|
_, pk3 := utils.GenKey("3", "3")
|
|
_, pk4 := utils.GenKey("4", "4")
|
|
_, pk5 := utils.GenKey("5", "5")
|
|
|
|
p1 := p2p.Peer{IP: "127.0.0.1", Port: "19901", ConsensusPubKey: pk1}
|
|
p2 := p2p.Peer{IP: "127.0.0.1", Port: "19902", ConsensusPubKey: pk2}
|
|
p3 := p2p.Peer{IP: "127.0.0.1", Port: "19903", ConsensusPubKey: pk3}
|
|
p4 := p2p.Peer{IP: "127.0.0.1", Port: "19904", ConsensusPubKey: pk4}
|
|
|
|
peers := []p2p.Peer{p1, p2, p3, p4}
|
|
|
|
peerRemove := []p2p.Peer{p1, p2}
|
|
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9000", ConsensusPubKey: pk5}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
t.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", peers, leader)
|
|
|
|
// consensus.DebugPrintPublicKeys()
|
|
f := consensus.RemovePeers(peerRemove)
|
|
if f == 0 {
|
|
t.Errorf("consensus.RemovePeers return false")
|
|
consensus.DebugPrintPublicKeys()
|
|
}
|
|
}
|
|
|
|
func TestGetPeerFromID(t *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9902"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9905"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
t.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
leaderID := utils.GetUniqueIDFromIPPort(leader.IP, leader.Port)
|
|
validatorID := utils.GetUniqueIDFromIPPort(validator.IP, validator.Port)
|
|
l, _ := consensus.GetPeerFromID(leaderID)
|
|
v, _ := consensus.GetPeerFromID(validatorID)
|
|
if l.IP != leader.IP || l.Port != leader.Port {
|
|
t.Errorf("leader IP not equal")
|
|
}
|
|
if v.IP != validator.IP || v.Port != validator.Port {
|
|
t.Errorf("validator IP not equal")
|
|
}
|
|
}
|
|
|
|
func TestPopulateMessageFields(t *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9902"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9905"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
t.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.consensusID = 2
|
|
consensus.blockHash = blockHash
|
|
consensus.nodeID = 3
|
|
|
|
msg := &msg_pb.Message{
|
|
Request: &msg_pb.Message_Consensus{
|
|
Consensus: &msg_pb.ConsensusRequest{},
|
|
},
|
|
}
|
|
consensusMsg := msg.GetConsensus()
|
|
consensus.populateMessageFields(consensusMsg)
|
|
|
|
if consensusMsg.ConsensusId != 2 {
|
|
t.Errorf("Consensus ID is not populated correctly")
|
|
}
|
|
if !bytes.Equal(consensusMsg.BlockHash[:], blockHash[:]) {
|
|
t.Errorf("Block hash is not populated correctly")
|
|
}
|
|
if consensusMsg.SenderId != 3 {
|
|
t.Errorf("Sender ID is not populated correctly")
|
|
}
|
|
}
|
|
|
|
func TestSignAndMarshalConsensusMessage(t *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9902"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9905"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
t.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.consensusID = 2
|
|
consensus.blockHash = blockHash
|
|
consensus.nodeID = 3
|
|
|
|
msg := &msg_pb.Message{}
|
|
marshaledMessage, err := consensus.signAndMarshalConsensusMessage(msg)
|
|
|
|
if err != nil || len(marshaledMessage) == 0 {
|
|
t.Errorf("Failed to sign and marshal the message: %s", err)
|
|
}
|
|
if len(msg.Signature) == 0 {
|
|
t.Error("No signature is signed on the consensus message.")
|
|
}
|
|
}
|
|
|