|
@ -66,7 +66,7 @@ func TestAddVote(t *testing.T) { |
|
|
|
|
|
|
|
|
// t.Logf(">> %v", voteSet)
|
|
|
// t.Logf(">> %v", voteSet)
|
|
|
|
|
|
|
|
|
if voteSet.GetByAddress(val0.GetAddress()) != nil { |
|
|
|
|
|
|
|
|
if voteSet.GetByAddress(val0.Address()) != nil { |
|
|
t.Errorf("Expected GetByAddress(val0.Address) to be nil") |
|
|
t.Errorf("Expected GetByAddress(val0.Address) to be nil") |
|
|
} |
|
|
} |
|
|
if voteSet.BitArray().GetIndex(0) { |
|
|
if voteSet.BitArray().GetIndex(0) { |
|
@ -78,7 +78,7 @@ func TestAddVote(t *testing.T) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
vote := &Vote{ |
|
|
vote := &Vote{ |
|
|
ValidatorAddress: val0.GetAddress(), |
|
|
|
|
|
|
|
|
ValidatorAddress: val0.Address(), |
|
|
ValidatorIndex: 0, // since privValidators are in order
|
|
|
ValidatorIndex: 0, // since privValidators are in order
|
|
|
Height: height, |
|
|
Height: height, |
|
|
Round: round, |
|
|
Round: round, |
|
@ -91,7 +91,7 @@ func TestAddVote(t *testing.T) { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if voteSet.GetByAddress(val0.GetAddress()) == nil { |
|
|
|
|
|
|
|
|
if voteSet.GetByAddress(val0.Address()) == nil { |
|
|
t.Errorf("Expected GetByAddress(val0.Address) to be present") |
|
|
t.Errorf("Expected GetByAddress(val0.Address) to be present") |
|
|
} |
|
|
} |
|
|
if !voteSet.BitArray().GetIndex(0) { |
|
|
if !voteSet.BitArray().GetIndex(0) { |
|
@ -118,7 +118,7 @@ func Test2_3Majority(t *testing.T) { |
|
|
} |
|
|
} |
|
|
// 6 out of 10 voted for nil.
|
|
|
// 6 out of 10 voted for nil.
|
|
|
for i := 0; i < 6; i++ { |
|
|
for i := 0; i < 6; i++ { |
|
|
vote := withValidator(voteProto, privValidators[i].GetAddress(), i) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[i].Address(), i) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -131,7 +131,7 @@ func Test2_3Majority(t *testing.T) { |
|
|
|
|
|
|
|
|
// 7th validator voted for some blockhash
|
|
|
// 7th validator voted for some blockhash
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[6].GetAddress(), 6) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[6].Address(), 6) |
|
|
_, err := signAddVote(privValidators[6], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
_, err := signAddVote(privValidators[6], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -144,7 +144,7 @@ func Test2_3Majority(t *testing.T) { |
|
|
|
|
|
|
|
|
// 8th validator voted for nil.
|
|
|
// 8th validator voted for nil.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[7].GetAddress(), 7) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[7].Address(), 7) |
|
|
_, err := signAddVote(privValidators[7], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[7], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -176,7 +176,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 66 out of 100 voted for nil.
|
|
|
// 66 out of 100 voted for nil.
|
|
|
for i := 0; i < 66; i++ { |
|
|
for i := 0; i < 66; i++ { |
|
|
vote := withValidator(voteProto, privValidators[i].GetAddress(), i) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[i].Address(), i) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -189,7 +189,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 67th validator voted for nil
|
|
|
// 67th validator voted for nil
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[66].GetAddress(), 66) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[66].Address(), 66) |
|
|
_, err := signAddVote(privValidators[66], withBlockHash(vote, nil), voteSet) |
|
|
_, err := signAddVote(privValidators[66], withBlockHash(vote, nil), voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -202,7 +202,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 68th validator voted for a different BlockParts PartSetHeader
|
|
|
// 68th validator voted for a different BlockParts PartSetHeader
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[67].GetAddress(), 67) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[67].Address(), 67) |
|
|
blockPartsHeader := PartSetHeader{blockPartsTotal, crypto.CRandBytes(32)} |
|
|
blockPartsHeader := PartSetHeader{blockPartsTotal, crypto.CRandBytes(32)} |
|
|
_, err := signAddVote(privValidators[67], withBlockPartsHeader(vote, blockPartsHeader), voteSet) |
|
|
_, err := signAddVote(privValidators[67], withBlockPartsHeader(vote, blockPartsHeader), voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -216,7 +216,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 69th validator voted for different BlockParts Total
|
|
|
// 69th validator voted for different BlockParts Total
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[68].GetAddress(), 68) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[68].Address(), 68) |
|
|
blockPartsHeader := PartSetHeader{blockPartsTotal + 1, blockPartsHeader.Hash} |
|
|
blockPartsHeader := PartSetHeader{blockPartsTotal + 1, blockPartsHeader.Hash} |
|
|
_, err := signAddVote(privValidators[68], withBlockPartsHeader(vote, blockPartsHeader), voteSet) |
|
|
_, err := signAddVote(privValidators[68], withBlockPartsHeader(vote, blockPartsHeader), voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -230,7 +230,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 70th validator voted for different BlockHash
|
|
|
// 70th validator voted for different BlockHash
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[69].GetAddress(), 69) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[69].Address(), 69) |
|
|
_, err := signAddVote(privValidators[69], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
_, err := signAddVote(privValidators[69], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -243,7 +243,7 @@ func Test2_3MajorityRedux(t *testing.T) { |
|
|
|
|
|
|
|
|
// 71st validator voted for the right BlockHash & BlockPartsHeader
|
|
|
// 71st validator voted for the right BlockHash & BlockPartsHeader
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[70].GetAddress(), 70) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[70].Address(), 70) |
|
|
_, err := signAddVote(privValidators[70], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[70], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -271,7 +271,7 @@ func TestBadVotes(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes for nil.
|
|
|
// val0 votes for nil.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], vote, voteSet) |
|
|
added, err := signAddVote(privValidators[0], vote, voteSet) |
|
|
if !added || err != nil { |
|
|
if !added || err != nil { |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
@ -280,7 +280,7 @@ func TestBadVotes(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes again for some block.
|
|
|
// val0 votes again for some block.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, cmn.RandBytes(32)), voteSet) |
|
|
if added || err == nil { |
|
|
if added || err == nil { |
|
|
t.Errorf("Expected VoteSet.Add to fail, conflicting vote.") |
|
|
t.Errorf("Expected VoteSet.Add to fail, conflicting vote.") |
|
@ -289,7 +289,7 @@ func TestBadVotes(t *testing.T) { |
|
|
|
|
|
|
|
|
// val1 votes on another height
|
|
|
// val1 votes on another height
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[1].GetAddress(), 1) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[1].Address(), 1) |
|
|
added, err := signAddVote(privValidators[1], withHeight(vote, height+1), voteSet) |
|
|
added, err := signAddVote(privValidators[1], withHeight(vote, height+1), voteSet) |
|
|
if added || err == nil { |
|
|
if added || err == nil { |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong height") |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong height") |
|
@ -298,7 +298,7 @@ func TestBadVotes(t *testing.T) { |
|
|
|
|
|
|
|
|
// val2 votes on another round
|
|
|
// val2 votes on another round
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[2].GetAddress(), 2) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[2].Address(), 2) |
|
|
added, err := signAddVote(privValidators[2], withRound(vote, round+1), voteSet) |
|
|
added, err := signAddVote(privValidators[2], withRound(vote, round+1), voteSet) |
|
|
if added || err == nil { |
|
|
if added || err == nil { |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong round") |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong round") |
|
@ -307,7 +307,7 @@ func TestBadVotes(t *testing.T) { |
|
|
|
|
|
|
|
|
// val3 votes of another type.
|
|
|
// val3 votes of another type.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[3].GetAddress(), 3) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[3].Address(), 3) |
|
|
added, err := signAddVote(privValidators[3], withType(vote, VoteTypePrecommit), voteSet) |
|
|
added, err := signAddVote(privValidators[3], withType(vote, VoteTypePrecommit), voteSet) |
|
|
if added || err == nil { |
|
|
if added || err == nil { |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong type") |
|
|
t.Errorf("Expected VoteSet.Add to fail, wrong type") |
|
@ -333,7 +333,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes for nil.
|
|
|
// val0 votes for nil.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], vote, voteSet) |
|
|
added, err := signAddVote(privValidators[0], vote, voteSet) |
|
|
if !added || err != nil { |
|
|
if !added || err != nil { |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
@ -342,7 +342,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes again for blockHash1.
|
|
|
// val0 votes again for blockHash1.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash1), voteSet) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash1), voteSet) |
|
|
if added { |
|
|
if added { |
|
|
t.Errorf("Expected VoteSet.Add to fail, conflicting vote.") |
|
|
t.Errorf("Expected VoteSet.Add to fail, conflicting vote.") |
|
@ -357,7 +357,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes again for blockHash1.
|
|
|
// val0 votes again for blockHash1.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash1), voteSet) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash1), voteSet) |
|
|
if !added { |
|
|
if !added { |
|
|
t.Errorf("Expected VoteSet.Add to succeed, called SetPeerMaj23().") |
|
|
t.Errorf("Expected VoteSet.Add to succeed, called SetPeerMaj23().") |
|
@ -372,7 +372,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val0 votes again for blockHash1.
|
|
|
// val0 votes again for blockHash1.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[0].GetAddress(), 0) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[0].Address(), 0) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash2), voteSet) |
|
|
added, err := signAddVote(privValidators[0], withBlockHash(vote, blockHash2), voteSet) |
|
|
if added { |
|
|
if added { |
|
|
t.Errorf("Expected VoteSet.Add to fail, duplicate SetPeerMaj23() from peerA") |
|
|
t.Errorf("Expected VoteSet.Add to fail, duplicate SetPeerMaj23() from peerA") |
|
@ -384,7 +384,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val1 votes for blockHash1.
|
|
|
// val1 votes for blockHash1.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[1].GetAddress(), 1) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[1].Address(), 1) |
|
|
added, err := signAddVote(privValidators[1], withBlockHash(vote, blockHash1), voteSet) |
|
|
added, err := signAddVote(privValidators[1], withBlockHash(vote, blockHash1), voteSet) |
|
|
if !added || err != nil { |
|
|
if !added || err != nil { |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
@ -401,7 +401,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val2 votes for blockHash2.
|
|
|
// val2 votes for blockHash2.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[2].GetAddress(), 2) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[2].Address(), 2) |
|
|
added, err := signAddVote(privValidators[2], withBlockHash(vote, blockHash2), voteSet) |
|
|
added, err := signAddVote(privValidators[2], withBlockHash(vote, blockHash2), voteSet) |
|
|
if !added || err != nil { |
|
|
if !added || err != nil { |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
@ -421,7 +421,7 @@ func TestConflicts(t *testing.T) { |
|
|
|
|
|
|
|
|
// val2 votes for blockHash1.
|
|
|
// val2 votes for blockHash1.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[2].GetAddress(), 2) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[2].Address(), 2) |
|
|
added, err := signAddVote(privValidators[2], withBlockHash(vote, blockHash1), voteSet) |
|
|
added, err := signAddVote(privValidators[2], withBlockHash(vote, blockHash1), voteSet) |
|
|
if !added { |
|
|
if !added { |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
|
t.Errorf("Expected VoteSet.Add to succeed") |
|
@ -462,7 +462,7 @@ func TestMakeCommit(t *testing.T) { |
|
|
|
|
|
|
|
|
// 6 out of 10 voted for some block.
|
|
|
// 6 out of 10 voted for some block.
|
|
|
for i := 0; i < 6; i++ { |
|
|
for i := 0; i < 6; i++ { |
|
|
vote := withValidator(voteProto, privValidators[i].GetAddress(), i) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[i].Address(), i) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[i], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
@ -474,7 +474,7 @@ func TestMakeCommit(t *testing.T) { |
|
|
|
|
|
|
|
|
// 7th voted for some other block.
|
|
|
// 7th voted for some other block.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[6].GetAddress(), 6) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[6].Address(), 6) |
|
|
vote = withBlockHash(vote, cmn.RandBytes(32)) |
|
|
vote = withBlockHash(vote, cmn.RandBytes(32)) |
|
|
vote = withBlockPartsHeader(vote, PartSetHeader{123, cmn.RandBytes(32)}) |
|
|
vote = withBlockPartsHeader(vote, PartSetHeader{123, cmn.RandBytes(32)}) |
|
|
|
|
|
|
|
@ -486,7 +486,7 @@ func TestMakeCommit(t *testing.T) { |
|
|
|
|
|
|
|
|
// The 8th voted like everyone else.
|
|
|
// The 8th voted like everyone else.
|
|
|
{ |
|
|
{ |
|
|
vote := withValidator(voteProto, privValidators[7].GetAddress(), 7) |
|
|
|
|
|
|
|
|
vote := withValidator(voteProto, privValidators[7].Address(), 7) |
|
|
_, err := signAddVote(privValidators[7], vote, voteSet) |
|
|
_, err := signAddVote(privValidators[7], vote, voteSet) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error(err) |
|
|
t.Error(err) |
|
|