Documentation ¶
Index ¶
- Constants
- Variables
- func AddTestAddrs(app *MigalooApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress
- func AddTestAddrsFromPubKeys(app *MigalooApp, ctx sdk.Context, pubKeys []cryptotypes.PubKey, ...)
- func AddTestAddrsIncremental(app *MigalooApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress
- func CheckBalance(t *testing.T, app *MigalooApp, addr sdk.AccAddress, balances sdk.Coins)
- func ConvertAddrsToValAddrs(addrs []sdk.AccAddress) []sdk.ValAddress
- func CreateTestPubKeys(numPubKeys int) []cryptotypes.PubKey
- func FundAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, addr sdk.AccAddress, ...) error
- func FundModuleAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, recipientMod string, ...) error
- func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, initSeqNums []uint64, ...) ([]sdk.Tx, error)
- func GetEnabledProposals() []wasm.ProposalType
- func GetMaccPerms() map[string][]string
- func MakeEncodingConfig() params.EncodingConfig
- func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
- func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey)
- func RegisterSwaggerAPI(rtr *mux.Router)
- func SignAndDeliver(t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, ...) (sdk.GasInfo, *sdk.Result, error)
- func SignCheckDeliver(t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, ...) (sdk.GasInfo, *sdk.Result, error)
- func TestAddr(addr string, bech string) (sdk.AccAddress, error)
- type EmptyBaseAppOptions
- type GenerateAccountStrategy
- type GenesisState
- type HandlerOptions
- type MigalooApp
- func NewMigalooApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, ...) *MigalooApp
- func Setup(isCheckTx bool, opts ...wasm.Option) *MigalooApp
- func SetupMigalooAppWithValSet(t *testing.T) *MigalooApp
- func SetupWithEmptyStore(t testing.TB) *MigalooApp
- func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, ...) *MigalooApp
- func (app *MigalooApp) AppCodec() codec.Codec
- func (app *MigalooApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
- func (app *MigalooApp) BlockedModuleAccountAddrs() map[string]bool
- func (app *MigalooApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
- func (app *MigalooApp) ExportAppStateAndValidators(forZeroHeight bool, jailAllowedAddrs []string) (servertypes.ExportedApp, error)
- func (app *MigalooApp) GetSubspace(moduleName string) paramstypes.Subspace
- func (app *MigalooApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
- func (app *MigalooApp) LegacyAmino() *codec.LegacyAmino
- func (app *MigalooApp) LoadHeight(height int64) error
- func (app *MigalooApp) ModuleAccountAddrs() map[string]bool
- func (app *MigalooApp) ModuleConfigurator() module.Configurator
- func (app *MigalooApp) ModuleManager() module.Manager
- func (app *MigalooApp) Name() string
- func (app *MigalooApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
- func (app *MigalooApp) RegisterTendermintService(clientCtx client.Context)
- func (app *MigalooApp) RegisterTxService(clientCtx client.Context)
- func (app *MigalooApp) SimulationManager() *module.SimulationManager
- type TestSupportdeprecated
- func (s TestSupport) AppCodec() codec.Codec
- func (s TestSupport) BankKeeper() bankkeeper.Keeper
- func (s TestSupport) GetBaseApp() *baseapp.BaseApp
- func (s TestSupport) GetTxConfig() client.TxConfig
- func (s TestSupport) IBCKeeper() *ibckeeper.Keeper
- func (s TestSupport) ScopeIBCKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) ScopedTransferKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) ScopedWasmIBCKeeper() capabilitykeeper.ScopedKeeper
- func (s TestSupport) StakingKeeper() stakingkeeper.Keeper
- func (s TestSupport) TransferKeeper() ibctransferkeeper.Keeper
- func (s TestSupport) WasmKeeper() wasm.Keeper
Constants ¶
const DefaultGas = 1_500_000
const (
MockFeePort string = ibcmock.ModuleName + ibcfeetypes.ModuleName
)
Variables ¶
var ( NodeDir = ".migalood" // If EnabledSpecificProposals is "", and this is "true", then enable all x/wasm proposals. // If EnabledSpecificProposals is "", and this is not "true", then disable all x/wasm proposals. ProposalsEnabled = "false" // If set to non-empty string it must be comma-separated list of values that are all a subset // of "EnableAllProposals" (takes precedence over ProposalsEnabled) // https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34 EnableSpecificProposals = "" Upgrades = []upgrades.Upgrade{v2.Upgrade, v2_2_5.Upgrade} )
We pull these out so we can set them with LDFLAGS in the Makefile
var DefaultConsensusParams = &abci.ConsensusParams{ Block: &abci.BlockParams{ MaxBytes: 8000000, MaxGas: 1234000000, }, Evidence: &tmproto.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, MaxBytes: 10000, }, Validator: &tmproto.ValidatorParams{ PubKeyTypes: []string{ tmtypes.ABCIPubKeyTypeEd25519, }, }, }
DefaultConsensusParams defines the default Tendermint consensus params used in MigalooApp testing.
var ( // DefaultNodeHome default home directories for wasmd DefaultNodeHome = os.ExpandEnv("$HOME/") + NodeDir )
These constants are derived from the above variables. These are the ones we will want to use in the code, based on any overrides above
var ( // ModuleBasics defines the module BasicManager is in charge of setting up basic, // non-dependant module elements, such as codec registration // and genesis verification. ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, alliancemodule.AppModuleBasic{}, genutil.AppModuleBasic{}, bank.AppModule{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, gov.NewAppModuleBasic(append( wasmclient.ProposalHandlers, paramsclient.ProposalHandler, distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, ibcclientclient.UpdateClientProposalHandler, ibcclientclient.UpgradeProposalHandler, alliancemoduleclient.CreateAllianceProposalHandler, alliancemoduleclient.UpdateAllianceProposalHandler, alliancemoduleclient.DeleteAllianceProposalHandler, )), params.AppModuleBasic{}, crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, authzmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, vesting.AppModuleBasic{}, tokenfactory.AppModuleBasic{}, wasm.AppModuleBasic{}, router.AppModuleBasic{}, ica.AppModuleBasic{}, intertx.AppModuleBasic{}, ibcfee.AppModuleBasic{}, ) )
Functions ¶
func AddTestAddrs ¶
func AddTestAddrs(app *MigalooApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress
AddTestAddrs constructs and returns accNum amount of accounts with an initial balance of accAmt in random order
func AddTestAddrsFromPubKeys ¶
func AddTestAddrsFromPubKeys(app *MigalooApp, ctx sdk.Context, pubKeys []cryptotypes.PubKey, accAmt math.Int)
AddTestAddrsFromPubKeys adds the addresses into the MigalooApp providing only the public keys.
func AddTestAddrsIncremental ¶
func AddTestAddrsIncremental(app *MigalooApp, ctx sdk.Context, accNum int, accAmt math.Int) []sdk.AccAddress
AddTestAddrs constructs and returns accNum amount of accounts with an initial balance of accAmt in random order
func CheckBalance ¶
func CheckBalance(t *testing.T, app *MigalooApp, addr sdk.AccAddress, balances sdk.Coins)
CheckBalance checks the balance of an account.
func ConvertAddrsToValAddrs ¶
func ConvertAddrsToValAddrs(addrs []sdk.AccAddress) []sdk.ValAddress
ConvertAddrsToValAddrs converts the provided addresses to ValAddress.
func CreateTestPubKeys ¶
func CreateTestPubKeys(numPubKeys int) []cryptotypes.PubKey
CreateTestPubKeys returns a total of numPubKeys public keys in ascending order.
func FundAccount ¶
func FundAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, addr sdk.AccAddress, amounts sdk.Coins) error
FundAccount is a utility function that funds an account by minting and sending the coins to the address. This should be used for testing purposes only!
Instead of using the mint module account, which has the permission of minting, create a "faucet" account. (@fdymylja)
func FundModuleAccount ¶
func FundModuleAccount(bankKeeper bankkeeper.Keeper, ctx sdk.Context, recipientMod string, amounts sdk.Coins) error
FundModuleAccount is a utility function that funds a module account by minting and sending the coins to the address. This should be used for testing purposes only!
Instead of using the mint module account, which has the permission of minting, create a "faucet" account. (@fdymylja)
func GenSequenceOfTxs ¶
func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, initSeqNums []uint64, numToGenerate int, priv ...cryptotypes.PrivKey) ([]sdk.Tx, error)
GenSequenceOfTxs generates a set of signed transactions of messages, such that they differ only by having the sequence numbers incremented between every transaction.
func GetEnabledProposals ¶
func GetEnabledProposals() []wasm.ProposalType
GetEnabledProposals parses the ProposalsEnabled / EnableSpecificProposals values to produce a list of enabled proposals to pass into wasmd app.
func GetMaccPerms ¶
GetMaccPerms returns a copy of the module account permissions
func MakeEncodingConfig ¶
func MakeEncodingConfig() params.EncodingConfig
MakeEncodingConfig creates a new EncodingConfig with all modules registered
func NewAnteHandler ¶
func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)
func NewPubKeyFromHex ¶
func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey)
NewPubKeyFromHex returns a PubKey from a hex string.
func RegisterSwaggerAPI ¶
RegisterSwaggerAPI registers swagger route with API Server
func SignAndDeliver ¶
func SignAndDeliver( t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, msgs []sdk.Msg, chainID string, accNums, accSeqs []uint64, priv ...cryptotypes.PrivKey, ) (sdk.GasInfo, *sdk.Result, error)
SignAndDeliver signs and delivers a transaction. No simulation occurs as the ibc testing package causes checkState and deliverState to diverge in block time.
func SignCheckDeliver ¶
func SignCheckDeliver( t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, msgs []sdk.Msg, chainID string, accNums, accSeqs []uint64, expSimPass, expPass bool, priv ...cryptotypes.PrivKey, ) (sdk.GasInfo, *sdk.Result, error)
SignCheckDeliver checks a generated signed transaction and simulates a block commitment with the given transaction. A test assertion is made using the parameter 'expPass' against the result. A corresponding result is returned.
Types ¶
type EmptyBaseAppOptions ¶
type EmptyBaseAppOptions struct{}
EmptyBaseAppOptions is a stub implementing AppOptions
func (EmptyBaseAppOptions) Get ¶
func (ao EmptyBaseAppOptions) Get(_ string) interface{}
Get implements AppOptions
type GenerateAccountStrategy ¶
type GenerateAccountStrategy func(int) []sdk.AccAddress
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState The genesis state of the blockchain is represented here as a map of raw json messages key'd by a identifier string. The identifier is used to determine which module genesis information belongs to so it may be appropriately routed during init chain. Within this application default genesis information is retrieved from the ModuleBasicManager which populates json from each BasicModule object provided to it during init.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
NewDefaultGenesisState generates the default state for the application.
type HandlerOptions ¶
type HandlerOptions struct { ante.HandlerOptions IBCKeeper *keeper.Keeper WasmConfig *wasmTypes.WasmConfig TXCounterStoreKey storetypes.StoreKey }
HandlerOptions extend the SDK's AnteHandler options by requiring the IBC channel keeper.
type MigalooApp ¶
type MigalooApp struct { *baseapp.BaseApp // keepers AccountKeeper authkeeper.AccountKeeper AllianceKeeper alliancemodulekeeper.Keeper BankKeeper custombankkeeper.Keeper CapabilityKeeper *capabilitykeeper.Keeper StakingKeeper stakingkeeper.Keeper SlashingKeeper slashingkeeper.Keeper MintKeeper mintkeeper.Keeper DistrKeeper distrkeeper.Keeper GovKeeper govkeeper.Keeper CrisisKeeper crisiskeeper.Keeper UpgradeKeeper upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper EvidenceKeeper evidencekeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly IBCFeeKeeper ibcfeekeeper.Keeper ICAControllerKeeper icacontrollerkeeper.Keeper ICAHostKeeper icahostkeeper.Keeper InterTxKeeper intertxkeeper.Keeper TransferKeeper ibctransferkeeper.Keeper TokenFactoryKeeper tokenfactorykeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper AuthzKeeper authzkeeper.Keeper WasmKeeper wasm.Keeper RouterKeeper routerkeeper.Keeper ScopedIBCKeeper capabilitykeeper.ScopedKeeper ScopedICAHostKeeper capabilitykeeper.ScopedKeeper ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper ScopedInterTxKeeper capabilitykeeper.ScopedKeeper ScopedTransferKeeper capabilitykeeper.ScopedKeeper ScopedIBCFeeKeeper capabilitykeeper.ScopedKeeper ScopedWasmKeeper capabilitykeeper.ScopedKeeper // contains filtered or unexported fields }
MigalooApp extended ABCI application
func NewMigalooApp ¶
func NewMigalooApp( logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest bool, skipUpgradeHeights map[int64]bool, homePath string, invCheckPeriod uint, encodingConfig wasmappparams.EncodingConfig, enabledProposals []wasm.ProposalType, appOpts servertypes.AppOptions, wasmOpts []wasm.Option, baseAppOptions ...func(*baseapp.BaseApp), ) *MigalooApp
NewMigalooApp returns a reference to an initialized MigalooApp.
func Setup ¶
func Setup(isCheckTx bool, opts ...wasm.Option) *MigalooApp
Setup initializes a new MigalooApp with DefaultNodeHome for integration tests
func SetupMigalooAppWithValSet ¶
func SetupMigalooAppWithValSet(t *testing.T) *MigalooApp
func SetupWithEmptyStore ¶
func SetupWithEmptyStore(t testing.TB) *MigalooApp
SetupWithEmptyStore setup a wasmd app instance with empty DB
func SetupWithGenesisValSet ¶
func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, chainID string, opts []wasm.Option, balances ...banktypes.Balance) *MigalooApp
SetupWithGenesisValSet initializes a new MigalooApp 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 (10^6) in the default token of the MigalooApp from first genesis account. A Nop logger is set in MigalooApp.
func (*MigalooApp) AppCodec ¶
func (app *MigalooApp) AppCodec() codec.Codec
func (*MigalooApp) BeginBlocker ¶
func (app *MigalooApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
BeginBlocker application updates every begin block
func (*MigalooApp) BlockedModuleAccountAddrs ¶
func (app *MigalooApp) BlockedModuleAccountAddrs() map[string]bool
BlockedModuleAccountAddrs returns all the app's blocked module account addresses.
func (*MigalooApp) EndBlocker ¶
func (app *MigalooApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock
EndBlocker application updates every end block
func (*MigalooApp) ExportAppStateAndValidators ¶
func (app *MigalooApp) ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, ) (servertypes.ExportedApp, error)
ExportAppStateAndValidators exports the state of the application for a genesis file.
func (*MigalooApp) GetSubspace ¶
func (app *MigalooApp) GetSubspace(moduleName string) paramstypes.Subspace
GetSubspace returns a param subspace for a given module name.
NOTE: This is solely to be used for testing purposes.
func (*MigalooApp) InitChainer ¶
func (app *MigalooApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain
InitChainer application update at chain initialization
func (*MigalooApp) LegacyAmino ¶
func (app *MigalooApp) LegacyAmino() *codec.LegacyAmino
LegacyAmino returns legacy amino codec.
NOTE: This is solely to be used for testing purposes as it may be desirable for modules to register their own custom testing types.
func (*MigalooApp) LoadHeight ¶
func (app *MigalooApp) LoadHeight(height int64) error
LoadHeight loads a particular height
func (*MigalooApp) ModuleAccountAddrs ¶
func (app *MigalooApp) ModuleAccountAddrs() map[string]bool
ModuleAccountAddrs returns all the app's module account addresses.
func (*MigalooApp) ModuleConfigurator ¶
func (app *MigalooApp) ModuleConfigurator() module.Configurator
ModuleConfigurator returns instance
func (*MigalooApp) ModuleManager ¶
func (app *MigalooApp) ModuleManager() module.Manager
ModuleManager returns instance
func (*MigalooApp) RegisterAPIRoutes ¶
func (app *MigalooApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)
RegisterAPIRoutes registers all application module routes with the provided API server.
func (*MigalooApp) RegisterTendermintService ¶
func (app *MigalooApp) RegisterTendermintService(clientCtx client.Context)
RegisterTendermintService implements the Application.RegisterTendermintService method.
func (*MigalooApp) RegisterTxService ¶
func (app *MigalooApp) RegisterTxService(clientCtx client.Context)
RegisterTxService implements the Application.RegisterTxService method.
func (*MigalooApp) SimulationManager ¶
func (app *MigalooApp) SimulationManager() *module.SimulationManager
SimulationManager implements the SimulationApp interface
type TestSupport
deprecated
type TestSupport struct {
// contains filtered or unexported fields
}
Deprecated: use public app attributes directly
func NewTestSupport ¶
func NewTestSupport(t testing.TB, app *MigalooApp) *TestSupport
func (TestSupport) AppCodec ¶
func (s TestSupport) AppCodec() codec.Codec
func (TestSupport) BankKeeper ¶
func (s TestSupport) BankKeeper() bankkeeper.Keeper
func (TestSupport) GetBaseApp ¶
func (s TestSupport) GetBaseApp() *baseapp.BaseApp
func (TestSupport) GetTxConfig ¶
func (s TestSupport) GetTxConfig() client.TxConfig
func (TestSupport) IBCKeeper ¶
func (s TestSupport) IBCKeeper() *ibckeeper.Keeper
func (TestSupport) ScopeIBCKeeper ¶
func (s TestSupport) ScopeIBCKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) ScopedTransferKeeper ¶
func (s TestSupport) ScopedTransferKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) ScopedWasmIBCKeeper ¶
func (s TestSupport) ScopedWasmIBCKeeper() capabilitykeeper.ScopedKeeper
func (TestSupport) StakingKeeper ¶
func (s TestSupport) StakingKeeper() stakingkeeper.Keeper
func (TestSupport) TransferKeeper ¶
func (s TestSupport) TransferKeeper() ibctransferkeeper.Keeper
func (TestSupport) WasmKeeper ¶
func (s TestSupport) WasmKeeper() wasm.Keeper