mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
|
package state
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
|
||
|
cfg "github.com/tendermint/tendermint/config"
|
||
|
dbm "github.com/tendermint/tendermint/libs/db"
|
||
|
"github.com/tendermint/tendermint/types"
|
||
|
)
|
||
|
|
||
|
func TestSaveValidatorsInfo(t *testing.T) {
|
||
|
// test we persist validators every valSetCheckpointInterval blocks
|
||
|
stateDB := dbm.NewMemDB()
|
||
|
val, _ := types.RandValidator(true, 10)
|
||
|
vals := types.NewValidatorSet([]*types.Validator{val})
|
||
|
|
||
|
// TODO(melekes): remove in 0.33 release
|
||
|
// https://github.com/tendermint/tendermint/issues/3543
|
||
|
saveValidatorsInfo(stateDB, 1, 1, vals)
|
||
|
saveValidatorsInfo(stateDB, 2, 1, vals)
|
||
|
assert.NotPanics(t, func() {
|
||
|
_, err := LoadValidators(stateDB, 2)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
})
|
||
|
//ENDREMOVE
|
||
|
|
||
|
saveValidatorsInfo(stateDB, valSetCheckpointInterval, 1, vals)
|
||
|
|
||
|
loadedVals, err := LoadValidators(stateDB, valSetCheckpointInterval)
|
||
|
assert.NoError(t, err)
|
||
|
assert.NotZero(t, loadedVals.Size())
|
||
|
}
|
||
|
|
||
|
func BenchmarkLoadValidators(b *testing.B) {
|
||
|
const valSetSize = 100
|
||
|
|
||
|
config := cfg.ResetTestRoot("state_")
|
||
|
defer os.RemoveAll(config.RootDir)
|
||
|
dbType := dbm.DBBackendType(config.DBBackend)
|
||
|
stateDB := dbm.NewDB("state", dbType, config.DBDir())
|
||
|
state, err := LoadStateFromDBOrGenesisFile(stateDB, config.GenesisFile())
|
||
|
if err != nil {
|
||
|
b.Fatal(err)
|
||
|
}
|
||
|
state.Validators = genValSet(valSetSize)
|
||
|
state.NextValidators = state.Validators.CopyIncrementProposerPriority(1)
|
||
|
SaveState(stateDB, state)
|
||
|
|
||
|
for i := 10; i < 10000000000; i *= 10 { // 10, 100, 1000, ...
|
||
|
saveValidatorsInfo(stateDB, int64(i), state.LastHeightValidatorsChanged, state.NextValidators)
|
||
|
|
||
|
b.Run(fmt.Sprintf("height=%d", i), func(b *testing.B) {
|
||
|
for n := 0; n < b.N; n++ {
|
||
|
_, err := LoadValidators(stateDB, int64(i))
|
||
|
if err != nil {
|
||
|
b.Fatal(err)
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|