Co-authored-by: mmsqe <mavis@crypto.com>
This commit is contained in:
parent
96c05451f4
commit
4224be3f02
@ -110,6 +110,27 @@ func RunWithSeeds[T SimulationApp](
|
||||
seeds []int64,
|
||||
fuzzSeed []byte,
|
||||
postRunActions ...func(t testing.TB, app TestInstance[T], accs []simtypes.Account),
|
||||
) {
|
||||
t.Helper()
|
||||
RunWithSeedsAndRandAcc(t, appFactory, setupStateFactory, seeds, fuzzSeed, simtypes.RandomAccounts, postRunActions...)
|
||||
}
|
||||
|
||||
// RunWithSeedsAndRandAcc calls RunWithSeeds with randAccFn
|
||||
func RunWithSeedsAndRandAcc[T SimulationApp](
|
||||
t *testing.T,
|
||||
appFactory func(
|
||||
logger log.Logger,
|
||||
db corestore.KVStoreWithBatch,
|
||||
traceStore io.Writer,
|
||||
loadLatest bool,
|
||||
appOpts servertypes.AppOptions,
|
||||
baseAppOptions ...func(*baseapp.BaseApp),
|
||||
) T,
|
||||
setupStateFactory func(app T) SimStateFactory,
|
||||
seeds []int64,
|
||||
fuzzSeed []byte,
|
||||
randAccFn simtypes.RandomAccountFn,
|
||||
postRunActions ...func(t testing.TB, app TestInstance[T], accs []simtypes.Account),
|
||||
) {
|
||||
t.Helper()
|
||||
cfg := cli.NewConfigFromFlags()
|
||||
@ -137,6 +158,21 @@ func RunWithSeed[T SimulationApp](
|
||||
seed int64,
|
||||
fuzzSeed []byte,
|
||||
postRunActions ...func(t testing.TB, app TestInstance[T], accs []simtypes.Account),
|
||||
) {
|
||||
tb.Helper()
|
||||
RunWithSeedAndRandAcc(tb, cfg, appFactory, setupStateFactory, seed, fuzzSeed, simtypes.RandomAccounts, postRunActions...)
|
||||
}
|
||||
|
||||
// RunWithSeedAndRandAcc calls RunWithSeed with randAccFn
|
||||
func RunWithSeedAndRandAcc[T SimulationApp](
|
||||
tb testing.TB,
|
||||
cfg simtypes.Config,
|
||||
appFactory func(logger log.Logger, db corestore.KVStoreWithBatch, traceStore io.Writer, loadLatest bool, appOpts servertypes.AppOptions, baseAppOptions ...func(*baseapp.BaseApp)) T,
|
||||
setupStateFactory func(app T) SimStateFactory,
|
||||
seed int64,
|
||||
fuzzSeed []byte,
|
||||
randAccFn simtypes.RandomAccountFn,
|
||||
postRunActions ...func(t testing.TB, app TestInstance[T], accs []simtypes.Account),
|
||||
) {
|
||||
tb.Helper()
|
||||
// setup environment
|
||||
@ -153,7 +189,7 @@ func RunWithSeed[T SimulationApp](
|
||||
app := testInstance.App
|
||||
stateFactory := setupStateFactory(app)
|
||||
ops, reporter := prepareWeightedOps(app.SimulationManager(), stateFactory, tCfg, testInstance.App.TxConfig(), runLogger)
|
||||
simParams, accs, err := simulation.SimulateFromSeedX(tb, runLogger, WriteToDebugLog(runLogger), app.GetBaseApp(), stateFactory.AppStateFn, simtypes.RandomAccounts, ops, stateFactory.BlockedAddr, tCfg, stateFactory.Codec, testInstance.ExecLogWriter)
|
||||
simParams, accs, err := simulation.SimulateFromSeedX(tb, runLogger, WriteToDebugLog(runLogger), app.GetBaseApp(), stateFactory.AppStateFn, randAccFn, ops, stateFactory.BlockedAddr, tCfg, stateFactory.Codec, testInstance.ExecLogWriter)
|
||||
require.NoError(tb, err)
|
||||
err = simtestutil.CheckExportSimulation(app, tCfg, simParams)
|
||||
require.NoError(tb, err)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user