Some checks failed
CodeQL / Analyze (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Buf-Push / push (push) Has been cancelled
136 lines
4.4 KiB
Go
136 lines
4.4 KiB
Go
package simapp
|
|
|
|
import (
|
|
"encoding/json"
|
|
"math/rand"
|
|
"testing"
|
|
"time"
|
|
|
|
dbm "github.com/cosmos/cosmos-db"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"cosmossdk.io/log"
|
|
sdkmath "cosmossdk.io/math"
|
|
|
|
bam "github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
|
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
|
"github.com/cosmos/cosmos-sdk/testutil/mock"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
|
|
abci "github.com/cometbft/cometbft/abci/types"
|
|
cmttypes "github.com/cometbft/cometbft/types"
|
|
)
|
|
|
|
// SetupOptions defines arguments that are passed into `Simapp` constructor.
|
|
type SetupOptions struct {
|
|
Logger log.Logger
|
|
DB *dbm.MemDB
|
|
AppOpts servertypes.AppOptions
|
|
}
|
|
|
|
// initSetup initializes a new SimApp. A Nop logger is set in SimApp.
|
|
func initSetup(withGenesis bool, invCheckPeriod uint) (*SimApp, GenesisState) {
|
|
db := dbm.NewMemDB()
|
|
|
|
appOptions := make(simtestutil.AppOptionsMap, 0)
|
|
appOptions[flags.FlagHome] = DefaultNodeHome
|
|
appOptions[server.FlagInvCheckPeriod] = invCheckPeriod
|
|
|
|
app := NewSimApp(log.NewNopLogger(), db, nil, true, appOptions)
|
|
if withGenesis {
|
|
return app, app.DefaultGenesis()
|
|
}
|
|
return app, GenesisState{}
|
|
}
|
|
|
|
// Setup initializes a new SimApp. A Nop logger is set in SimApp.
|
|
func Setup(t *testing.T, isCheckTx bool) *SimApp {
|
|
t.Helper()
|
|
|
|
privVal := mock.NewPV()
|
|
pubKey, err := privVal.GetPubKey()
|
|
require.NoError(t, err)
|
|
|
|
// create validator set with single validator
|
|
validator := cmttypes.NewValidator(pubKey, 1)
|
|
valSet := cmttypes.NewValidatorSet([]*cmttypes.Validator{validator})
|
|
|
|
// generate genesis account
|
|
senderPrivKey := secp256k1.GenPrivKey()
|
|
acc := authtypes.NewBaseAccount(senderPrivKey.PubKey().Address().Bytes(), senderPrivKey.PubKey(), 0, 0)
|
|
balance := banktypes.Balance{
|
|
Address: acc.GetAddress().String(),
|
|
Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdkmath.NewInt(100000000000000))),
|
|
}
|
|
|
|
app := SetupWithGenesisValSet(t, valSet, []authtypes.GenesisAccount{acc}, balance)
|
|
|
|
return app
|
|
}
|
|
|
|
// SetupWithGenesisValSet initializes a new SimApp with a validator set and genesis accounts
|
|
// that also act as delegators. For simplicity, each validator is bonded with a delegation
|
|
// of one consensus engine unit in the default token of the simapp from first genesis
|
|
// account. A Nop logger is set in SimApp.
|
|
func SetupWithGenesisValSet(t *testing.T, valSet *cmttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *SimApp {
|
|
t.Helper()
|
|
|
|
app, genesisState := initSetup(true, 5)
|
|
genesisState, err := simtestutil.GenesisStateWithValSet(app.AppCodec(), genesisState, valSet, genAccs, balances...)
|
|
require.NoError(t, err)
|
|
|
|
stateBytes, err := json.MarshalIndent(genesisState, "", " ")
|
|
require.NoError(t, err)
|
|
|
|
// init chain will set the validator set and initialize the genesis accounts
|
|
_, err = app.InitChain(&abci.RequestInitChain{
|
|
Validators: []abci.ValidatorUpdate{},
|
|
ConsensusParams: simtestutil.DefaultConsensusParams,
|
|
AppStateBytes: stateBytes,
|
|
},
|
|
)
|
|
require.NoError(t, err)
|
|
|
|
return app
|
|
}
|
|
|
|
// SignAndDeliver signs and delivers a transaction. No simulation occurs as the
|
|
// ibc testing package causes checkState and deliverState to diverge in block time.
|
|
//
|
|
// CONTRACT: BeginBlock must be called before this function.
|
|
func SignAndDeliver(
|
|
tb testing.TB, txCfg client.TxConfig, app *bam.BaseApp, msgs []sdk.Msg,
|
|
chainID string, accNums, accSeqs []uint64, expPass bool, blockTime time.Time, nextValHash []byte, priv ...cryptotypes.PrivKey,
|
|
) (*abci.ResponseFinalizeBlock, error) {
|
|
tb.Helper()
|
|
tx, err := simtestutil.GenSignedMockTx(
|
|
rand.New(rand.NewSource(time.Now().UnixNano())),
|
|
txCfg,
|
|
msgs,
|
|
sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 0)},
|
|
simtestutil.DefaultGenTxGas,
|
|
chainID,
|
|
accNums,
|
|
accSeqs,
|
|
priv...,
|
|
)
|
|
require.NoError(tb, err)
|
|
|
|
txBytes, err := txCfg.TxEncoder()(tx)
|
|
require.NoError(tb, err)
|
|
|
|
return app.FinalizeBlock(&abci.RequestFinalizeBlock{
|
|
Height: app.LastBlockHeight() + 1,
|
|
Time: blockTime,
|
|
NextValidatorsHash: nextValHash,
|
|
Txs: [][]byte{txBytes},
|
|
})
|
|
}
|