tendermint/state/state_test.go

156 lines
4.1 KiB
Go
Raw Normal View History

2014-10-04 19:16:49 -07:00
package state
import (
2014-10-07 00:43:34 -07:00
. "github.com/tendermint/tendermint/blocks"
2014-10-04 19:16:49 -07:00
. "github.com/tendermint/tendermint/common"
2014-10-07 00:43:34 -07:00
. "github.com/tendermint/tendermint/config"
2014-10-04 19:16:49 -07:00
. "github.com/tendermint/tendermint/db"
2014-10-07 00:43:34 -07:00
"bytes"
2014-10-04 19:16:49 -07:00
"testing"
"time"
)
2014-10-11 21:27:58 -07:00
func randAccountDetail(id uint64, status byte) *AccountDetail {
return &AccountDetail{
2014-10-04 19:16:49 -07:00
Account: Account{
Id: id,
PubKey: CRandBytes(32),
},
2014-10-11 21:27:58 -07:00
Sequence: RandUInt(),
Balance: RandUInt64(),
Status: status,
2014-10-04 19:16:49 -07:00
}
}
// The first numValidators accounts are validators.
func randGenesisState(numAccounts int, numValidators int) *State {
db := NewMemDB()
2014-10-11 21:27:58 -07:00
accountDetails := make([]*AccountDetail, numAccounts)
2014-10-04 19:16:49 -07:00
for i := 0; i < numAccounts; i++ {
if i < numValidators {
2014-10-12 21:14:10 -07:00
accountDetails[i] = randAccountDetail(uint64(i), AccountStatusNominal)
2014-10-04 19:16:49 -07:00
} else {
2014-10-12 21:14:10 -07:00
accountDetails[i] = randAccountDetail(uint64(i), AccountStatusBonded)
2014-10-04 19:16:49 -07:00
}
}
2014-10-11 21:27:58 -07:00
s0 := GenesisState(db, time.Now(), accountDetails)
s0.Save(time.Now())
2014-10-04 19:16:49 -07:00
return s0
}
func TestCopyState(t *testing.T) {
// Generate a state
s0 := randGenesisState(10, 5)
s0Hash := s0.Hash()
if len(s0Hash) == 0 {
t.Error("Expected state hash")
}
// Check hash of copy
s0Copy := s0.Copy()
if !bytes.Equal(s0Hash, s0Copy.Hash()) {
t.Error("Expected state copy hash to be the same")
}
// Mutate the original.
_, accDet_ := s0.AccountDetails.GetByIndex(0)
accDet := accDet_.(*AccountDetail)
if accDet == nil {
t.Error("Expected state to have an account")
}
accDet.Balance += 1
s0.AccountDetails.Set(accDet.Id, accDet)
if bytes.Equal(s0Hash, s0.Hash()) {
t.Error("Expected state hash to have changed")
}
if !bytes.Equal(s0Hash, s0Copy.Hash()) {
t.Error("Expected state copy hash to have not changed")
}
}
2014-10-04 19:16:49 -07:00
func TestGenesisSaveLoad(t *testing.T) {
2014-10-06 21:28:49 -07:00
// Generate a state, save & load it.
2014-10-04 19:16:49 -07:00
s0 := randGenesisState(10, 5)
2014-10-07 00:43:34 -07:00
// Mutate the state to append one empty block.
block := &Block{
Header: Header{
Network: Config.Network,
Height: 1,
StateHash: nil,
2014-10-07 00:43:34 -07:00
},
Data: Data{
Txs: []Tx{},
},
}
// The second argument to AppendBlock() is false,
// which sets Block.Header.StateHash.
err := s0.Copy().AppendBlock(block, false)
if err != nil {
t.Error("Error appending initial block:", err)
}
if len(block.Header.StateHash) == 0 {
t.Error("Expected StateHash but got nothing.")
}
// Now append the block to s0.
// This time we also check the StateHash (as computed above).
err = s0.AppendBlock(block, true)
2014-10-07 00:43:34 -07:00
if err != nil {
t.Error("Error appending initial block:", err)
}
2014-10-06 21:28:49 -07:00
2014-10-07 13:39:21 -07:00
// Save s0
2014-10-06 21:28:49 -07:00
commitTime := time.Now()
s0.Save(commitTime)
2014-10-07 13:39:21 -07:00
// Sanity check s0
2014-10-07 01:05:54 -07:00
//s0.DB.(*MemDB).Print()
2014-10-12 21:14:10 -07:00
if s0.BondedValidators.TotalVotingPower() == 0 {
t.Error("s0 BondedValidators TotalVotingPower should not be 0")
2014-10-07 13:39:21 -07:00
}
if s0.Height != 1 {
t.Error("s0 Height should be 1, got", s0.Height)
}
// Load s1
2014-10-07 01:05:54 -07:00
s1 := LoadState(s0.DB)
2014-10-06 21:28:49 -07:00
// Compare CommitTime
2014-10-07 13:39:21 -07:00
if !s0.CommitTime.Equal(s1.CommitTime) {
t.Error("CommitTime was not the same", s0.CommitTime, s1.CommitTime)
2014-10-06 21:28:49 -07:00
}
// Compare height & blockHash
2014-10-07 01:05:54 -07:00
if s0.Height != s1.Height {
2014-10-07 00:43:34 -07:00
t.Error("Height mismatch")
}
2014-10-07 01:05:54 -07:00
if !bytes.Equal(s0.BlockHash, s1.BlockHash) {
2014-10-07 00:43:34 -07:00
t.Error("BlockHash mismatch")
}
// Compare state merkle trees
2014-10-12 21:14:10 -07:00
if s0.BondedValidators.Size() != s1.BondedValidators.Size() {
t.Error("BondedValidators Size mismatch")
2014-10-06 21:28:49 -07:00
}
2014-10-12 21:14:10 -07:00
if s0.BondedValidators.TotalVotingPower() != s1.BondedValidators.TotalVotingPower() {
t.Error("BondedValidators TotalVotingPower mismatch")
2014-10-07 13:39:21 -07:00
}
if bytes.Equal(s0.BondedValidators.Hash(), s1.BondedValidators.Hash()) {
// The BondedValidators hash should have changed because
// each AppendBlock() calls IncrementAccum(),
// changing each validator's Accum.
t.Error("BondedValidators hash should have changed")
}
if s0.UnbondingValidators.Size() != s1.UnbondingValidators.Size() {
t.Error("UnbondingValidators Size mismatch")
}
if s0.UnbondingValidators.TotalVotingPower() != s1.UnbondingValidators.TotalVotingPower() {
t.Error("UnbondingValidators TotalVotingPower mismatch")
}
if !bytes.Equal(s0.UnbondingValidators.Hash(), s1.UnbondingValidators.Hash()) {
t.Error("UnbondingValidators hash mismatch")
}
2014-10-11 21:27:58 -07:00
if !bytes.Equal(s0.AccountDetails.Hash(), s1.AccountDetails.Hash()) {
t.Error("AccountDetail mismatch")
2014-10-06 21:28:49 -07:00
}
2014-10-04 19:16:49 -07:00
}