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.
36 lines
925 B
36 lines
925 B
package consensus
|
|
|
|
import (
|
|
"harmony-benchmark/common"
|
|
"harmony-benchmark/p2p"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewConsensus(test *testing.T) {
|
|
leader := p2p.Peer{Ip: "1", Port: "2"}
|
|
validator := p2p.Peer{Ip: "3", Port: "5"}
|
|
consensus := NewConsensus("1", "2", "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 != true {
|
|
test.Error("Consensus should belong to a leader")
|
|
}
|
|
|
|
if consensus.ReadySignal == nil {
|
|
test.Error("Consensus ReadySignal should be initialized")
|
|
}
|
|
|
|
if consensus.msgType != byte(CONSENSUS) {
|
|
test.Error("Consensus msgType should be CONSENSUS")
|
|
}
|
|
|
|
if consensus.msgCategory != byte(common.COMMITTEE) {
|
|
test.Error("Consensus msgCategory should be COMMITTEE")
|
|
}
|
|
|
|
if consensus.leader != leader {
|
|
test.Error("Consensus Leader is set to wrong Peer")
|
|
}
|
|
}
|
|
|