mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-03-30 15:08:28 +00:00

* [linter] Add `musttag` Enforce field tags in (un)marshaled structs. * [linter] Add `nestif` Reports deeply nested if statements. * [linter] Add `noctx` Finds sending http request without context.Context. * [linter] Add `paralleltest` Paralleltest detects missing usage of t.Parallel() method in your Go test. * [linter] Add `tagalign` Check that struct tags are well aligned. * [linter] Add `tagliatelle` Checks the struct tags. * [linter] Add `whitespace` Tool for detection of leading and trailing whitespace. * [paralleltest] Exclude files bc of data race in tests Signed-off-by: Julian Strobl <jmastr@mailbox.org>
507 lines
14 KiB
Go
507 lines
14 KiB
Go
package app_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"math/rand"
|
|
"os"
|
|
"runtime/debug"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
dbm "github.com/cometbft/cometbft-db"
|
|
abci "github.com/cometbft/cometbft/abci/types"
|
|
"github.com/cometbft/cometbft/libs/log"
|
|
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
simulationtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
|
|
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"
|
|
evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types"
|
|
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
|
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
|
|
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
|
"github.com/cosmos/cosmos-sdk/x/simulation"
|
|
simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli"
|
|
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
|
|
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/planetmint/planetmint-go/app"
|
|
)
|
|
|
|
const SimulationSetupFailed = "simulation setup failed"
|
|
|
|
type storeKeysPrefixes struct {
|
|
A storetypes.StoreKey
|
|
B storetypes.StoreKey
|
|
Prefixes [][]byte
|
|
}
|
|
|
|
// Get flags every time the simulator is run
|
|
func init() {
|
|
simcli.GetSimulatorFlags()
|
|
}
|
|
|
|
// fauxMerkleModeOpt returns a BaseApp option to use a dbStoreAdapter instead of
|
|
// an IAVLStore for faster simulation speed.
|
|
func fauxMerkleModeOpt(bapp *baseapp.BaseApp) {
|
|
bapp.SetFauxMerkleMode()
|
|
}
|
|
|
|
// BenchmarkSimulation run the chain simulation
|
|
// Running using starport command:
|
|
// `starport chain simulate -v --numBlocks 200 --blockSize 50`
|
|
// Running as go benchmark test:
|
|
// `go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true`
|
|
func BenchmarkSimulation(b *testing.B) {
|
|
simcli.FlagSeedValue = time.Now().Unix()
|
|
simcli.FlagVerboseValue = true
|
|
simcli.FlagCommitValue = true
|
|
simcli.FlagEnabledValue = true
|
|
|
|
config := simcli.NewConfigFromFlags()
|
|
config.ChainID = "mars-simapp"
|
|
db, dir, logger, _, err := simtestutil.SetupSimulation(
|
|
config,
|
|
"leveldb-bApp-sim",
|
|
"Simulation",
|
|
simcli.FlagVerboseValue,
|
|
simcli.FlagEnabledValue,
|
|
)
|
|
require.NoError(b, err, SimulationSetupFailed)
|
|
|
|
b.Cleanup(func() {
|
|
require.NoError(b, db.Close())
|
|
require.NoError(b, os.RemoveAll(dir))
|
|
})
|
|
|
|
appOptions := make(simtestutil.AppOptionsMap, 0)
|
|
appOptions[flags.FlagHome] = app.DefaultNodeHome
|
|
appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue
|
|
|
|
bApp := app.New(
|
|
logger,
|
|
db,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
0,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
baseapp.SetChainID(config.ChainID),
|
|
)
|
|
require.Equal(b, app.Name, bApp.Name())
|
|
|
|
// run randomized simulation
|
|
_, simParams, simErr := simulation.SimulateFromSeed(
|
|
b,
|
|
os.Stdout,
|
|
bApp.BaseApp,
|
|
simtestutil.AppStateFn(
|
|
bApp.AppCodec(),
|
|
bApp.SimulationManager(),
|
|
app.NewDefaultGenesisState(bApp.AppCodec()),
|
|
),
|
|
simulationtypes.RandomAccounts,
|
|
simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config),
|
|
bApp.ModuleAccountAddrs(),
|
|
config,
|
|
bApp.AppCodec(),
|
|
)
|
|
|
|
// export state and simParams before the simulation error is checked
|
|
err = simtestutil.CheckExportSimulation(bApp, config, simParams)
|
|
require.NoError(b, err)
|
|
require.NoError(b, simErr)
|
|
|
|
if config.Commit {
|
|
simtestutil.PrintStats(db)
|
|
}
|
|
}
|
|
|
|
func TestAppStateDeterminism(t *testing.T) {
|
|
t.Parallel()
|
|
if !simcli.FlagEnabledValue {
|
|
t.Skip("skipping application simulation")
|
|
}
|
|
|
|
config := simcli.NewConfigFromFlags()
|
|
config.InitialBlockHeight = 1
|
|
config.ExportParamsPath = ""
|
|
config.OnOperation = true
|
|
config.AllInvariants = true
|
|
|
|
var (
|
|
r = rand.New(rand.NewSource(time.Now().Unix()))
|
|
numSeeds = 3
|
|
numTimesToRunPerSeed = 5
|
|
appHashList = make([]json.RawMessage, numTimesToRunPerSeed)
|
|
appOptions = make(simtestutil.AppOptionsMap, 0)
|
|
)
|
|
appOptions[flags.FlagHome] = app.DefaultNodeHome
|
|
appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue
|
|
|
|
for i := 0; i < numSeeds; i++ {
|
|
config.Seed = r.Int63()
|
|
|
|
for j := 0; j < numTimesToRunPerSeed; j++ {
|
|
var logger log.Logger
|
|
if simcli.FlagVerboseValue {
|
|
logger = log.TestingLogger()
|
|
} else {
|
|
logger = log.NewNopLogger()
|
|
}
|
|
chainID := fmt.Sprintf("chain-id-%d-%d", i, j)
|
|
config.ChainID = chainID
|
|
|
|
db := dbm.NewMemDB()
|
|
bApp := app.New(
|
|
logger,
|
|
db,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
simcli.FlagPeriodValue,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
fauxMerkleModeOpt,
|
|
baseapp.SetChainID(chainID),
|
|
)
|
|
|
|
logger.Info(
|
|
"running non-determinism simulation; seed %d: %d/%d, attempt: %d/%d\n",
|
|
config.Seed, i+1, numSeeds, j+1, numTimesToRunPerSeed,
|
|
)
|
|
|
|
_, _, err := simulation.SimulateFromSeed(
|
|
t,
|
|
os.Stdout,
|
|
bApp.BaseApp,
|
|
simtestutil.AppStateFn(
|
|
bApp.AppCodec(),
|
|
bApp.SimulationManager(),
|
|
app.NewDefaultGenesisState(bApp.AppCodec()),
|
|
),
|
|
simulationtypes.RandomAccounts,
|
|
simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config),
|
|
bApp.ModuleAccountAddrs(),
|
|
config,
|
|
bApp.AppCodec(),
|
|
)
|
|
require.NoError(t, err)
|
|
|
|
if config.Commit {
|
|
simtestutil.PrintStats(db)
|
|
}
|
|
|
|
appHash := bApp.LastCommitID().Hash
|
|
appHashList[j] = appHash
|
|
|
|
if j != 0 {
|
|
require.Equal(
|
|
t, string(appHashList[0]), string(appHashList[j]),
|
|
"non-determinism in seed %d: %d/%d, attempt: %d/%d\n", config.Seed, i+1, numSeeds, j+1, numTimesToRunPerSeed,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestAppImportExport(t *testing.T) {
|
|
t.Parallel()
|
|
config := simcli.NewConfigFromFlags()
|
|
config.ChainID = "mars-simapp-import"
|
|
|
|
db, dir, logger, skip, err := simtestutil.SetupSimulation(
|
|
config,
|
|
"leveldb-app-sim",
|
|
"Simulation",
|
|
simcli.FlagVerboseValue,
|
|
simcli.FlagEnabledValue,
|
|
)
|
|
if skip {
|
|
t.Skip("skipping application import/export simulation")
|
|
}
|
|
require.NoError(t, err, SimulationSetupFailed)
|
|
|
|
defer func() {
|
|
require.NoError(t, db.Close())
|
|
require.NoError(t, os.RemoveAll(dir))
|
|
}()
|
|
|
|
appOptions := make(simtestutil.AppOptionsMap, 0)
|
|
appOptions[flags.FlagHome] = app.DefaultNodeHome
|
|
appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue
|
|
|
|
bApp := app.New(
|
|
logger,
|
|
db,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
0,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
baseapp.SetChainID(config.ChainID),
|
|
)
|
|
require.Equal(t, app.Name, bApp.Name())
|
|
|
|
// run randomized simulation
|
|
_, simParams, simErr := simulation.SimulateFromSeed(
|
|
t,
|
|
os.Stdout,
|
|
bApp.BaseApp,
|
|
simtestutil.AppStateFn(
|
|
bApp.AppCodec(),
|
|
bApp.SimulationManager(),
|
|
app.NewDefaultGenesisState(bApp.AppCodec()),
|
|
),
|
|
simulationtypes.RandomAccounts,
|
|
simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config),
|
|
bApp.BlockedModuleAccountAddrs(),
|
|
config,
|
|
bApp.AppCodec(),
|
|
)
|
|
require.NoError(t, simErr)
|
|
|
|
// export state and simParams before the simulation error is checked
|
|
err = simtestutil.CheckExportSimulation(bApp, config, simParams)
|
|
require.NoError(t, err)
|
|
|
|
if config.Commit {
|
|
simtestutil.PrintStats(db)
|
|
}
|
|
|
|
logger.Info("exporting genesis...\n")
|
|
|
|
exported, err := bApp.ExportAppStateAndValidators(false, []string{}, []string{})
|
|
require.NoError(t, err)
|
|
|
|
logger.Info("importing genesis...\n")
|
|
|
|
newDB, newDir, _, _, err := simtestutil.SetupSimulation(
|
|
config,
|
|
"leveldb-app-sim-2",
|
|
"Simulation-2",
|
|
simcli.FlagVerboseValue,
|
|
simcli.FlagEnabledValue,
|
|
)
|
|
require.NoError(t, err, SimulationSetupFailed)
|
|
|
|
defer func() {
|
|
require.NoError(t, newDB.Close())
|
|
require.NoError(t, os.RemoveAll(newDir))
|
|
}()
|
|
|
|
newApp := app.New(
|
|
log.NewNopLogger(),
|
|
newDB,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
0,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
baseapp.SetChainID(config.ChainID),
|
|
)
|
|
require.Equal(t, app.Name, bApp.Name())
|
|
|
|
var genesisState app.GenesisState
|
|
err = json.Unmarshal(exported.AppState, &genesisState)
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
err := fmt.Sprintf("%v", r)
|
|
if !strings.Contains(err, "validator set is empty after InitGenesis") {
|
|
panic(r)
|
|
}
|
|
logger.Info("Skipping simulation as all validators have been unbonded")
|
|
logger.Info("err", err, "stacktrace", string(debug.Stack()))
|
|
}
|
|
}()
|
|
|
|
ctxA := bApp.NewContext(true, tmproto.Header{Height: bApp.LastBlockHeight()})
|
|
ctxB := newApp.NewContext(true, tmproto.Header{Height: bApp.LastBlockHeight()})
|
|
newApp.ModuleManager().InitGenesis(ctxB, bApp.AppCodec(), genesisState)
|
|
newApp.StoreConsensusParams(ctxB, exported.ConsensusParams)
|
|
|
|
logger.Info("comparing stores...\n")
|
|
|
|
storeKeysPrefixes := []storeKeysPrefixes{
|
|
{bApp.GetKey(authtypes.StoreKey), newApp.GetKey(authtypes.StoreKey), [][]byte{}},
|
|
{
|
|
bApp.GetKey(stakingtypes.StoreKey), newApp.GetKey(stakingtypes.StoreKey),
|
|
[][]byte{
|
|
stakingtypes.UnbondingQueueKey, stakingtypes.RedelegationQueueKey, stakingtypes.ValidatorQueueKey,
|
|
stakingtypes.HistoricalInfoKey, stakingtypes.UnbondingIDKey, stakingtypes.UnbondingIndexKey, stakingtypes.UnbondingTypeKey, stakingtypes.ValidatorUpdatesKey,
|
|
},
|
|
}, // ordering may change but it doesn't matter
|
|
{bApp.GetKey(slashingtypes.StoreKey), newApp.GetKey(slashingtypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(minttypes.StoreKey), newApp.GetKey(minttypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(distrtypes.StoreKey), newApp.GetKey(distrtypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(banktypes.StoreKey), newApp.GetKey(banktypes.StoreKey), [][]byte{banktypes.BalancesPrefix}},
|
|
{bApp.GetKey(paramstypes.StoreKey), newApp.GetKey(paramstypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(govtypes.StoreKey), newApp.GetKey(govtypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(evidencetypes.StoreKey), newApp.GetKey(evidencetypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(capabilitytypes.StoreKey), newApp.GetKey(capabilitytypes.StoreKey), [][]byte{}},
|
|
{bApp.GetKey(authzkeeper.StoreKey), newApp.GetKey(authzkeeper.StoreKey), [][]byte{authzkeeper.GrantKey, authzkeeper.GrantQueuePrefix}},
|
|
}
|
|
|
|
for _, skp := range storeKeysPrefixes {
|
|
storeA := ctxA.KVStore(skp.A)
|
|
storeB := ctxB.KVStore(skp.B)
|
|
|
|
failedKVAs, failedKVBs := sdk.DiffKVStores(storeA, storeB, skp.Prefixes)
|
|
require.Equal(t, len(failedKVAs), len(failedKVBs), "unequal sets of key-values to compare")
|
|
|
|
logger.Info("compared %d different key/value pairs between %s and %s\n", len(failedKVAs), skp.A, skp.B)
|
|
require.Equal(t, 0, len(failedKVAs), simtestutil.GetSimulationLog(skp.A.Name(), bApp.SimulationManager().StoreDecoders, failedKVAs, failedKVBs))
|
|
}
|
|
}
|
|
|
|
func TestAppSimulationAfterImport(t *testing.T) {
|
|
t.Parallel()
|
|
config := simcli.NewConfigFromFlags()
|
|
config.ChainID = "mars-simapp-after-import"
|
|
|
|
db, dir, logger, skip, err := simtestutil.SetupSimulation(
|
|
config,
|
|
"leveldb-app-sim",
|
|
"Simulation",
|
|
simcli.FlagVerboseValue,
|
|
simcli.FlagEnabledValue,
|
|
)
|
|
if skip {
|
|
t.Skip("skipping application simulation after import")
|
|
}
|
|
require.NoError(t, err, SimulationSetupFailed)
|
|
|
|
defer func() {
|
|
require.NoError(t, db.Close())
|
|
require.NoError(t, os.RemoveAll(dir))
|
|
}()
|
|
|
|
appOptions := make(simtestutil.AppOptionsMap, 0)
|
|
appOptions[flags.FlagHome] = app.DefaultNodeHome
|
|
appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue
|
|
|
|
bApp := app.New(
|
|
logger,
|
|
db,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
0,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
fauxMerkleModeOpt,
|
|
baseapp.SetChainID(config.ChainID),
|
|
)
|
|
require.Equal(t, app.Name, bApp.Name())
|
|
|
|
// run randomized simulation
|
|
stopEarly, simParams, simErr := simulation.SimulateFromSeed(
|
|
t,
|
|
os.Stdout,
|
|
bApp.BaseApp,
|
|
simtestutil.AppStateFn(
|
|
bApp.AppCodec(),
|
|
bApp.SimulationManager(),
|
|
app.NewDefaultGenesisState(bApp.AppCodec()),
|
|
),
|
|
simulationtypes.RandomAccounts,
|
|
simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config),
|
|
bApp.BlockedModuleAccountAddrs(),
|
|
config,
|
|
bApp.AppCodec(),
|
|
)
|
|
require.NoError(t, simErr)
|
|
|
|
// export state and simParams before the simulation error is checked
|
|
err = simtestutil.CheckExportSimulation(bApp, config, simParams)
|
|
require.NoError(t, err)
|
|
|
|
if config.Commit {
|
|
simtestutil.PrintStats(db)
|
|
}
|
|
|
|
if stopEarly {
|
|
logger.Info("can't export or import a zero-validator genesis, exiting test...")
|
|
return
|
|
}
|
|
|
|
logger.Info("exporting genesis...\n")
|
|
|
|
exported, err := bApp.ExportAppStateAndValidators(true, []string{}, []string{})
|
|
require.NoError(t, err)
|
|
|
|
logger.Info("importing genesis...\n")
|
|
|
|
newDB, newDir, _, _, err := simtestutil.SetupSimulation(
|
|
config,
|
|
"leveldb-app-sim-2",
|
|
"Simulation-2",
|
|
simcli.FlagVerboseValue,
|
|
simcli.FlagEnabledValue,
|
|
)
|
|
require.NoError(t, err, SimulationSetupFailed)
|
|
|
|
defer func() {
|
|
require.NoError(t, newDB.Close())
|
|
require.NoError(t, os.RemoveAll(newDir))
|
|
}()
|
|
|
|
newApp := app.New(
|
|
log.NewNopLogger(),
|
|
newDB,
|
|
nil,
|
|
true,
|
|
map[int64]bool{},
|
|
app.DefaultNodeHome,
|
|
0,
|
|
app.MakeEncodingConfig(),
|
|
appOptions,
|
|
fauxMerkleModeOpt,
|
|
baseapp.SetChainID(config.ChainID),
|
|
)
|
|
require.Equal(t, app.Name, bApp.Name())
|
|
|
|
newApp.InitChain(abci.RequestInitChain{
|
|
ChainId: config.ChainID,
|
|
AppStateBytes: exported.AppState,
|
|
})
|
|
|
|
_, _, err = simulation.SimulateFromSeed(
|
|
t,
|
|
os.Stdout,
|
|
newApp.BaseApp,
|
|
simtestutil.AppStateFn(
|
|
bApp.AppCodec(),
|
|
bApp.SimulationManager(),
|
|
app.NewDefaultGenesisState(bApp.AppCodec()),
|
|
),
|
|
simulationtypes.RandomAccounts,
|
|
simtestutil.SimulationOperations(newApp, newApp.AppCodec(), config),
|
|
newApp.BlockedModuleAccountAddrs(),
|
|
config,
|
|
bApp.AppCodec(),
|
|
)
|
|
require.NoError(t, err)
|
|
}
|