78 lines
2.0 KiB
Go
78 lines
2.0 KiB
Go
//go:build sims
|
|
|
|
package simapp
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"cosmossdk.io/log"
|
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
"github.com/cosmos/cosmos-sdk/testutil/simsx"
|
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
|
"github.com/cosmos/cosmos-sdk/x/simulation"
|
|
simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli"
|
|
)
|
|
|
|
// Profile with:
|
|
// /usr/local/go/bin/go test -benchmem -run=^$ cosmossdk.io/simapp -bench ^BenchmarkFullAppSimulation$ -Commit=true -cpuprofile cpu.out
|
|
func BenchmarkFullAppSimulation(b *testing.B) {
|
|
b.ReportAllocs()
|
|
|
|
config := simcli.NewConfigFromFlags()
|
|
config.ChainID = simsx.SimAppChainID
|
|
|
|
db, dir, logger, skip, err := simtestutil.SetupSimulation(config, "goleveldb-app-sim", "Simulation", simcli.FlagVerboseValue, true)
|
|
if err != nil {
|
|
b.Fatalf("simulation setup failed: %s", err.Error())
|
|
}
|
|
|
|
if skip {
|
|
b.Skip("skipping benchmark application simulation")
|
|
}
|
|
|
|
defer func() {
|
|
require.NoError(b, db.Close())
|
|
require.NoError(b, os.RemoveAll(dir))
|
|
}()
|
|
|
|
appOptions := viper.New()
|
|
appOptions.SetDefault(flags.FlagHome, DefaultNodeHome)
|
|
|
|
app := NewSimApp(logger, db, nil, true, appOptions, interBlockCacheOpt(), baseapp.SetChainID(simsx.SimAppChainID))
|
|
|
|
// run randomized simulation
|
|
simParams, _, simErr := simulation.SimulateFromSeedX(
|
|
b,
|
|
log.NewNopLogger(),
|
|
os.Stdout,
|
|
app.BaseApp,
|
|
simtestutil.AppStateFn(app.AppCodec(), app.SimulationManager(), app.DefaultGenesis()),
|
|
simtypes.RandomAccounts,
|
|
simtestutil.BuildSimulationOperations(app, app.AppCodec(), config, app.txConfig),
|
|
BlockedAddresses(),
|
|
config,
|
|
app.AppCodec(),
|
|
&simulation.DummyLogWriter{},
|
|
)
|
|
|
|
// export state and simParams before the simulation error is checked
|
|
if err = simtestutil.CheckExportSimulation(app, config, simParams); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
if simErr != nil {
|
|
b.Fatal(simErr)
|
|
}
|
|
|
|
if config.Commit {
|
|
simtestutil.PrintStats(db)
|
|
}
|
|
}
|