tendermint/consensus/common_test.go

326 lines
9.9 KiB
Go
Raw Normal View History

2015-12-01 20:12:01 -08:00
package consensus
import (
"bytes"
"fmt"
"sort"
"sync"
2015-12-01 20:12:01 -08:00
"testing"
"time"
. "github.com/tendermint/go-common"
2016-05-08 15:00:58 -07:00
cfg "github.com/tendermint/go-config"
2015-12-01 20:12:01 -08:00
dbm "github.com/tendermint/go-db"
bc "github.com/tendermint/tendermint/blockchain"
mempl "github.com/tendermint/tendermint/mempool"
sm "github.com/tendermint/tendermint/state"
"github.com/tendermint/tendermint/types"
2016-03-24 10:42:05 -07:00
tmspcli "github.com/tendermint/tmsp/client"
tmsp "github.com/tendermint/tmsp/types"
2015-12-01 20:12:01 -08:00
2016-02-14 15:03:55 -08:00
"github.com/tendermint/tmsp/example/counter"
2016-10-11 09:51:48 -07:00
"github.com/tendermint/tmsp/example/dummy"
2015-12-01 20:12:01 -08:00
)
2016-05-08 15:00:58 -07:00
var config cfg.Config // NOTE: must be reset for each _test.go file
var ensureTimeout = time.Duration(2)
2015-12-01 20:12:01 -08:00
type validatorStub struct {
Index int // Validator index. NOTE: we don't assume validator set changes.
2015-12-01 20:12:01 -08:00
Height int
Round int
*types.PrivValidator
}
func NewValidatorStub(privValidator *types.PrivValidator, valIndex int) *validatorStub {
2015-12-01 20:12:01 -08:00
return &validatorStub{
Index: valIndex,
2015-12-01 20:12:01 -08:00
PrivValidator: privValidator,
}
}
func (vs *validatorStub) signVote(voteType byte, hash []byte, header types.PartSetHeader) (*types.Vote, error) {
vote := &types.Vote{
ValidatorIndex: vs.Index,
ValidatorAddress: vs.PrivValidator.Address,
2015-12-01 20:12:01 -08:00
Height: vs.Height,
Round: vs.Round,
Type: voteType,
2016-08-16 14:59:19 -07:00
BlockID: types.BlockID{hash, header},
2015-12-01 20:12:01 -08:00
}
2016-05-08 15:00:58 -07:00
err := vs.PrivValidator.SignVote(config.GetString("chain_id"), vote)
2015-12-01 20:12:01 -08:00
return vote, err
}
//-------------------------------------------------------------------------------
// Convenience functions
// Sign vote for type/hash/header
2015-12-01 20:12:01 -08:00
func signVote(vs *validatorStub, voteType byte, hash []byte, header types.PartSetHeader) *types.Vote {
v, err := vs.signVote(voteType, hash, header)
if err != nil {
panic(fmt.Errorf("failed to sign vote: %v", err))
}
return v
}
// Create proposal block from cs1 but sign it with vs
func decideProposal(cs1 *ConsensusState, vs *validatorStub, height, round int) (proposal *types.Proposal, block *types.Block) {
2015-12-01 20:12:01 -08:00
block, blockParts := cs1.createProposalBlock()
if block == nil { // on error
panic("error creating proposal block")
}
// Make proposal
polRound, polBlockID := cs1.Votes.POLInfo()
proposal = types.NewProposal(height, round, blockParts.Header(), polRound, polBlockID)
if err := vs.SignProposal(config.GetString("chain_id"), proposal); err != nil {
2015-12-01 20:12:01 -08:00
panic(err)
}
return
}
func addVotes(to *ConsensusState, votes ...*types.Vote) {
for _, vote := range votes {
to.peerMsgQueue <- msgInfo{Msg: &VoteMessage{vote}}
2015-12-01 20:12:01 -08:00
}
}
func signVotes(voteType byte, hash []byte, header types.PartSetHeader, vss ...*validatorStub) []*types.Vote {
2015-12-01 20:12:01 -08:00
votes := make([]*types.Vote, len(vss))
for i, vs := range vss {
votes[i] = signVote(vs, voteType, hash, header)
}
return votes
}
func signAddVotes(to *ConsensusState, voteType byte, hash []byte, header types.PartSetHeader, vss ...*validatorStub) {
votes := signVotes(voteType, hash, header, vss...)
addVotes(to, votes...)
2015-12-01 20:12:01 -08:00
}
func ensureNoNewStep(stepCh chan interface{}) {
timeout := time.NewTicker(ensureTimeout * time.Second)
select {
case <-timeout.C:
break
case <-stepCh:
panic("We should be stuck waiting for more votes, not moving to the next step")
}
}
2015-12-13 11:56:05 -08:00
func incrementHeight(vss ...*validatorStub) {
for _, vs := range vss {
vs.Height += 1
}
}
func incrementRound(vss ...*validatorStub) {
for _, vs := range vss {
vs.Round += 1
}
}
2015-12-01 20:12:01 -08:00
func validatePrevote(t *testing.T, cs *ConsensusState, round int, privVal *validatorStub, blockHash []byte) {
prevotes := cs.Votes.Prevotes(round)
var vote *types.Vote
if vote = prevotes.GetByAddress(privVal.Address); vote == nil {
panic("Failed to find prevote from validator")
}
if blockHash == nil {
2016-08-16 14:59:19 -07:00
if vote.BlockID.Hash != nil {
panic(fmt.Sprintf("Expected prevote to be for nil, got %X", vote.BlockID.Hash))
2015-12-01 20:12:01 -08:00
}
} else {
2016-08-16 14:59:19 -07:00
if !bytes.Equal(vote.BlockID.Hash, blockHash) {
panic(fmt.Sprintf("Expected prevote to be for %X, got %X", blockHash, vote.BlockID.Hash))
2015-12-01 20:12:01 -08:00
}
}
}
2015-12-13 11:56:05 -08:00
func validateLastPrecommit(t *testing.T, cs *ConsensusState, privVal *validatorStub, blockHash []byte) {
votes := cs.LastCommit
var vote *types.Vote
if vote = votes.GetByAddress(privVal.Address); vote == nil {
panic("Failed to find precommit from validator")
2015-12-01 20:12:01 -08:00
}
2016-08-16 14:59:19 -07:00
if !bytes.Equal(vote.BlockID.Hash, blockHash) {
panic(fmt.Sprintf("Expected precommit to be for %X, got %X", blockHash, vote.BlockID.Hash))
2015-12-01 20:12:01 -08:00
}
}
func validatePrecommit(t *testing.T, cs *ConsensusState, thisRound, lockRound int, privVal *validatorStub, votedBlockHash, lockedBlockHash []byte) {
precommits := cs.Votes.Precommits(thisRound)
var vote *types.Vote
if vote = precommits.GetByAddress(privVal.Address); vote == nil {
panic("Failed to find precommit from validator")
}
if votedBlockHash == nil {
2016-08-16 14:59:19 -07:00
if vote.BlockID.Hash != nil {
2015-12-01 20:12:01 -08:00
panic("Expected precommit to be for nil")
}
} else {
2016-08-16 14:59:19 -07:00
if !bytes.Equal(vote.BlockID.Hash, votedBlockHash) {
2015-12-01 20:12:01 -08:00
panic("Expected precommit to be for proposal block")
}
}
if lockedBlockHash == nil {
if cs.LockedRound != lockRound || cs.LockedBlock != nil {
panic(fmt.Sprintf("Expected to be locked on nil at round %d. Got locked at round %d with block %v", lockRound, cs.LockedRound, cs.LockedBlock))
}
} else {
if cs.LockedRound != lockRound || !bytes.Equal(cs.LockedBlock.Hash(), lockedBlockHash) {
panic(fmt.Sprintf("Expected block to be locked on round %d, got %d. Got locked block %X, expected %X", lockRound, cs.LockedRound, cs.LockedBlock.Hash(), lockedBlockHash))
}
}
}
func validatePrevoteAndPrecommit(t *testing.T, cs *ConsensusState, thisRound, lockRound int, privVal *validatorStub, votedBlockHash, lockedBlockHash []byte) {
// verify the prevote
validatePrevote(t, cs, thisRound, privVal, votedBlockHash)
// verify precommit
cs.mtx.Lock()
validatePrecommit(t, cs, thisRound, lockRound, privVal, votedBlockHash, lockedBlockHash)
cs.mtx.Unlock()
}
2016-01-18 12:57:57 -08:00
func fixedConsensusState() *ConsensusState {
stateDB := dbm.NewMemDB()
state := sm.MakeGenesisStateFromFile(stateDB, config.GetString("genesis_file"))
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
privValidator.Reset()
2016-08-17 20:08:43 -07:00
cs := newConsensusState(state, privValidator, counter.NewCounterApplication(true))
return cs
2016-01-18 12:57:57 -08:00
}
2015-12-01 20:12:01 -08:00
2016-10-11 09:51:48 -07:00
func fixedConsensusStateDummy() *ConsensusState {
stateDB := dbm.NewMemDB()
state := sm.MakeGenesisStateFromFile(stateDB, config.GetString("genesis_file"))
privValidatorFile := config.GetString("priv_validator_file")
privValidator := types.LoadOrGenPrivValidator(privValidatorFile)
privValidator.Reset()
cs := newConsensusState(state, privValidator, dummy.NewDummyApplication())
return cs
}
func newConsensusState(state *sm.State, pv *types.PrivValidator, app tmsp.Application) *ConsensusState {
2015-12-01 20:12:01 -08:00
// Get BlockStore
blockDB := dbm.NewMemDB()
blockStore := bc.NewBlockStore(blockDB)
// one for mempool, one for consensus
mtx := new(sync.Mutex)
2016-03-24 10:42:05 -07:00
proxyAppConnMem := tmspcli.NewLocalClient(mtx, app)
proxyAppConnCon := tmspcli.NewLocalClient(mtx, app)
2015-12-01 20:12:01 -08:00
// Make Mempool
2016-05-08 15:00:58 -07:00
mempool := mempl.NewMempool(config, proxyAppConnMem)
2015-12-01 20:12:01 -08:00
// Make ConsensusReactor
2016-05-08 15:00:58 -07:00
cs := NewConsensusState(config, state, proxyAppConnCon, blockStore, mempool)
2016-01-18 12:57:57 -08:00
cs.SetPrivValidator(pv)
2015-12-01 20:12:01 -08:00
2016-10-09 23:58:13 -07:00
evsw := types.NewEventSwitch()
cs.SetEventSwitch(evsw)
evsw.Start()
2016-01-18 12:57:57 -08:00
return cs
}
2015-12-01 20:12:01 -08:00
2016-01-18 12:57:57 -08:00
func randConsensusState(nValidators int) (*ConsensusState, []*validatorStub) {
// Get State
state, privVals := randGenesisState(nValidators, false, 10)
vss := make([]*validatorStub, nValidators)
2015-12-01 20:12:01 -08:00
cs := newConsensusState(state, privVals[0], counter.NewCounterApplication(true))
2015-12-08 13:00:59 -08:00
2015-12-01 20:12:01 -08:00
for i := 0; i < nValidators; i++ {
vss[i] = NewValidatorStub(privVals[i], i)
2015-12-01 20:12:01 -08:00
}
// since cs1 starts at 1
incrementHeight(vss[1:]...)
return cs, vss
}
2016-06-25 21:40:53 -07:00
func randConsensusNet(nValidators int) []*ConsensusState {
genDoc, privVals := randGenesisDoc(nValidators, false, 10)
css := make([]*ConsensusState, nValidators)
for i := 0; i < nValidators; i++ {
db := dbm.NewMemDB() // each state needs its own db
state := sm.MakeGenesisState(db, genDoc)
state.Save()
css[i] = newConsensusState(state, privVals[i], counter.NewCounterApplication(true))
}
// we use memdb, but need a dir for the cswal.
// in this case they all write to the same one but we dont care
// NOTE: they all share a pointer to the same config object!
EnsureDir(css[0].config.GetString("db_dir"), 0700)
2016-06-25 21:40:53 -07:00
return css
}
2015-12-13 11:56:05 -08:00
func subscribeToVoter(cs *ConsensusState, addr []byte) chan interface{} {
2016-01-18 12:18:09 -08:00
voteCh0 := subscribeToEvent(cs.evsw, "tester", types.EventStringVote(), 1)
2015-12-13 11:56:05 -08:00
voteCh := make(chan interface{})
go func() {
for {
v := <-voteCh0
2015-12-23 18:43:48 -08:00
vote := v.(types.EventDataVote)
2015-12-13 11:56:05 -08:00
// we only fire for our own votes
if bytes.Equal(addr, vote.Vote.ValidatorAddress) {
2015-12-13 11:56:05 -08:00
voteCh <- v
}
}
}()
return voteCh
}
2016-07-11 17:40:48 -07:00
func readVotes(ch chan interface{}, reads int) chan struct{} {
wg := make(chan struct{})
go func() {
for i := 0; i < reads; i++ {
<-ch // read the precommit event
}
close(wg)
}()
return wg
}
2015-12-01 20:12:01 -08:00
func randGenesisState(numValidators int, randPower bool, minPower int64) (*sm.State, []*types.PrivValidator) {
genDoc, privValidators := randGenesisDoc(numValidators, randPower, minPower)
2016-06-25 21:40:53 -07:00
db := dbm.NewMemDB()
2015-12-01 20:12:01 -08:00
s0 := sm.MakeGenesisState(db, genDoc)
s0.Save()
return s0, privValidators
}
func randGenesisDoc(numValidators int, randPower bool, minPower int64) (*types.GenesisDoc, []*types.PrivValidator) {
validators := make([]types.GenesisValidator, numValidators)
privValidators := make([]*types.PrivValidator, numValidators)
for i := 0; i < numValidators; i++ {
val, privVal := types.RandValidator(randPower, minPower)
validators[i] = types.GenesisValidator{
PubKey: val.PubKey,
Amount: val.VotingPower,
}
privValidators[i] = privVal
}
sort.Sort(types.PrivValidatorsByAddress(privValidators))
return &types.GenesisDoc{
GenesisTime: time.Now(),
ChainID: config.GetString("chain_id"),
Validators: validators,
}, privValidators
}
func startTestRound(cs *ConsensusState, height, round int) {
cs.enterNewRound(height, round)
cs.startRoutines(0)
}