package consensus import ( "testing" "github.com/simple-rules/harmony-benchmark/p2p" ) 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.leader != leader { test.Error("Consensus Leader is set to wrong Peer") } }