2021-08-26 08:20:27 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
2022-04-26 10:39:18 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/db/memdb"
|
2021-08-26 08:20:27 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
"github.com/tharsis/ethermint/encoding"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkEthermintApp_ExportAppStateAndValidators(b *testing.B) {
|
2022-04-26 10:39:18 +00:00
|
|
|
db := memdb.NewDB()
|
|
|
|
logger, _ := log.NewDefaultLogger("plain", "info", false)
|
|
|
|
app := NewEthermintApp(logger, db, nil, true, map[int64]bool{}, DefaultNodeHome, 0, encoding.MakeConfig(ModuleBasics), simapp.EmptyAppOptions{})
|
2021-08-26 08:20:27 +00:00
|
|
|
|
2022-04-26 10:39:18 +00:00
|
|
|
genesisState := NewDefaultGenesisState(app.appCodec)
|
2021-08-26 08:20:27 +00:00
|
|
|
stateBytes, err := json.MarshalIndent(genesisState, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the chain
|
|
|
|
app.InitChain(
|
|
|
|
abci.RequestInitChain{
|
|
|
|
ChainId: "ethermint_9000-1",
|
|
|
|
Validators: []abci.ValidatorUpdate{},
|
|
|
|
AppStateBytes: stateBytes,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
app.Commit()
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
// Making a new app object with the db, so that initchain hasn't been called
|
2022-04-26 10:39:18 +00:00
|
|
|
app2 := NewEthermintApp(logger, db, nil, true, map[int64]bool{}, DefaultNodeHome, 0, encoding.MakeConfig(ModuleBasics), simapp.EmptyAppOptions{})
|
2021-08-26 08:20:27 +00:00
|
|
|
if _, err := app2.ExportAppStateAndValidators(false, []string{}); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|