// Copyright 2018 The dexon-consensus Authors
// This file is part of the dexon-consensus library.
//
// The dexon-consensus library is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// The dexon-consensus library is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the dexon-consensus library. If not, see
// <http://www.gnu.org/licenses/>.
package core
import (
"testing"
"github.com/stretchr/testify/suite"
"github.com/dexon-foundation/dexon-consensus/common"
"github.com/dexon-foundation/dexon-consensus/core/crypto/ecdsa"
"github.com/dexon-foundation/dexon-consensus/core/types"
)
type AgreementStateTestSuite struct {
suite.Suite
ID types.NodeID
auths map[types.NodeID]*Authenticator
voteChan chan *types.Vote
blockChan chan common.Hash
confirmChan chan common.Hash
block map[common.Hash]*types.Block
}
type agreementStateTestReceiver struct {
s *AgreementStateTestSuite
leader *leaderSelector
}
func (r *agreementStateTestReceiver) ProposeVote(vote *types.Vote) {
r.s.voteChan <- vote
}
func (r *agreementStateTestReceiver) ProposeBlock() common.Hash {
block := r.s.proposeBlock(r.leader)
r.s.blockChan <- block.Hash
return block.Hash
}
func (r *agreementStateTestReceiver) ConfirmBlock(block common.Hash,
_ map[types.NodeID]*types.Vote) {
r.s.confirmChan <- block
}
func (r *agreementStateTestReceiver) PullBlocks(common.Hashes) {}
func (s *AgreementStateTestSuite) proposeBlock(
leader *leaderSelector) *types.Block {
block := &types.Block{
ProposerID: s.ID,
Hash: common.NewRandomHash(),
}
s.Require().NoError(s.auths[s.ID].SignCRS(block, leader.hashCRS))
s.block[block.Hash] = block
return block
}
func (s *AgreementStateTestSuite) prepareVote(
nID types.NodeID, voteType types.VoteType, blockHash common.Hash,
period uint64) (
vote *types.Vote) {
vote = &types.Vote{
Type: voteType,
BlockHash: blockHash,
Period: period,
}
s.Require().NoError(s.auths[nID].SignVote(vote))
return
}
func (s *AgreementStateTestSuite) SetupTest() {
prvKey, err := ecdsa.NewPrivateKey()
s.Require().NoError(err)
s.ID = types.NewNodeID(prvKey.PublicKey())
s.auths = map[types.NodeID]*Authenticator{
s.ID: NewAuthenticator(prvKey),
}
s.voteChan = make(chan *types.Vote, 100)
s.blockChan = make(chan common.Hash, 100)
s.confirmChan = make(chan common.Hash, 100)
s.block = make(map[common.Hash]*types.Block)
}
func (s *AgreementStateTestSuite) newAgreement(numNode int) *agreement {
leader := newLeaderSelector(func(*types.Block) (bool, error) {
return true, nil
}, &common.NullLogger{})
notarySet := make(map[types.NodeID]struct{})
for i := 0; i < numNode-1; i++ {
prvKey, err := ecdsa.NewPrivateKey()
s.Require().NoError(err)
nID := types.NewNodeID(prvKey.PublicKey())
notarySet[nID] = struct{}{}
s.auths[nID] = NewAuthenticator(prvKey)
}
notarySet[s.ID] = struct{}{}
agreement := newAgreement(
s.ID,
&agreementStateTestReceiver{
s: s,
leader: leader,
},
leader,
s.auths[s.ID],
)
agreement.restart(notarySet, types.Position{}, common.NewRandomHash())
return agreement
}
func (s *AgreementStateTestSuite) TestInitialState() {
a := s.newAgreement(4)
state := newInitialState(a.data)
s.Equal(stateInitial, state.state())
s.Equal(0, state.clocks())
// Proposing a new block.
a.data.period = 1
newState, err := state.nextState()
s.Require().NoError(err)
s.Require().Len(s.blockChan, 1)
proposedBlock := <-s.blockChan
s.NotEqual(common.Hash{}, proposedBlock)
s.Require().NoError(a.processBlock(s.block[proposedBlock]))
s.Equal(statePreCommit, newState.state())
}
func (s *AgreementStateTestSuite) TestPreCommitState() {
a := s.newAgreement(4)
state := newPreCommitState(a.data)
s.Equal(statePreCommit, state.state())
s.Equal(2, state.clocks())
blocks := make([]*types.Block, 3)
for i := range blocks {
blocks[i] = s.proposeBlock(a.data.leader)
prv, err := ecdsa.NewPrivateKey()
s.Require().NoError(err)
blocks[i].ProposerID = types.NewNodeID(prv.PublicKey())
s.Require().NoError(NewAuthenticator(prv).SignCRS(
blocks[i], a.data.leader.hashCRS))
s.Require().NoError(a.processBlock(blocks[i]))
}
// If lockvalue == null, propose preCom-vote for the leader block.
a.data.lockValue = nullBlockHash
a.data.period = 1
newState, err := state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 1)
vote := <-s.voteChan
s.Equal(types.VotePreCom, vote.Type)
s.NotEqual(common.Hash{}, vote.BlockHash)
s.Equal(stateCommit, newState.state())
// Else, preCom-vote on lockValue.
a.data.period = 2
hash := common.NewRandomHash()
a.data.lockValue = hash
newState, err = state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 1)
vote = <-s.voteChan
s.Equal(types.VotePreCom, vote.Type)
s.Equal(hash, vote.BlockHash)
s.Equal(stateCommit, newState.state())
}
func (s *AgreementStateTestSuite) TestCommitState() {
a := s.newAgreement(4)
state := newCommitState(a.data)
s.Equal(stateCommit, state.state())
s.Equal(2, state.clocks())
// If there are 2f+1 preCom-votes for block v or null,
// propose a com-vote for block v.
a.data.period = 1
block := s.proposeBlock(a.data.leader)
s.Require().NoError(a.processBlock(block))
for nID := range a.notarySet {
vote := s.prepareVote(nID, types.VotePreCom, block.Hash, 1)
s.Require().NoError(a.processVote(vote))
}
newState, err := state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 1)
s.Equal(block.Hash, a.data.lockValue)
s.Equal(uint64(1), a.data.lockRound)
vote := <-s.voteChan
s.Equal(types.VoteCom, vote.Type)
s.Equal(block.Hash, vote.BlockHash)
s.Equal(stateForward, newState.state())
// Else, com-vote on SKIP.
a.data.period = 2
newState, err = state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 1)
vote = <-s.voteChan
s.Equal(types.VoteCom, vote.Type)
s.Equal(skipBlockHash, vote.BlockHash)
s.Equal(stateForward, newState.state())
// If there are 2f+1 preCom-votes for SKIP, it's same as the 'else' condition.
a.data.period = 3
for nID := range a.notarySet {
vote := s.prepareVote(nID, types.VotePreCom, skipBlockHash, 3)
s.Require().NoError(a.processVote(vote))
}
newState, err = state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 1)
vote = <-s.voteChan
s.Equal(types.VoteCom, vote.Type)
s.Equal(skipBlockHash, vote.BlockHash)
s.Equal(stateForward, newState.state())
}
func (s *AgreementStateTestSuite) TestForwardState() {
a := s.newAgreement(4)
state := newForwardState(a.data)
s.Equal(stateForward, state.state())
s.Equal(4, state.clocks())
newState, err := state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 0)
s.Equal(statePullVote, newState.state())
}
func (s *AgreementStateTestSuite) TestPullVoteState() {
a := s.newAgreement(4)
state := newPullVoteState(a.data)
s.Equal(statePullVote, state.state())
s.Equal(4, state.clocks())
newState, err := state.nextState()
s.Require().NoError(err)
s.Require().Len(s.voteChan, 0)
s.Equal(statePullVote, newState.state())
}
func TestAgreementState(t *testing.T) {
suite.Run(t, new(AgreementStateTestSuite))
}