Documentation ¶
Overview ¶
Package testutil is a generated GoMock package.
Index ¶
- func FundAccount(ctx context.Context, bankKeeper bankkeeper.Keeper, addr sdk.AccAddress, ...) error
- func FundModuleAccount(ctx context.Context, bankKeeper bankkeeper.Keeper, recipientMod string, ...) error
- type MockAccountKeeper
- func (m *MockAccountKeeper) AddressCodec() address.Codec
- func (m *MockAccountKeeper) EXPECT() *MockAccountKeeperMockRecorder
- func (m *MockAccountKeeper) GetAccount(ctx context.Context, addr types.AccAddress) types.AccountI
- func (m *MockAccountKeeper) GetAllAccounts(ctx context.Context) []types.AccountI
- func (m *MockAccountKeeper) GetModuleAccount(ctx context.Context, moduleName string) types.ModuleAccountI
- func (m *MockAccountKeeper) GetModuleAccountAndPermissions(ctx context.Context, moduleName string) (types.ModuleAccountI, []string)
- func (m *MockAccountKeeper) GetModuleAddress(moduleName string) types.AccAddress
- func (m *MockAccountKeeper) GetModuleAddressAndPermissions(moduleName string) (types.AccAddress, []string)
- func (m *MockAccountKeeper) GetModulePermissions() map[string]types0.PermissionsForAddress
- func (m *MockAccountKeeper) HasAccount(ctx context.Context, addr types.AccAddress) bool
- func (m *MockAccountKeeper) IterateAccounts(ctx context.Context, process func(types.AccountI) bool)
- func (m *MockAccountKeeper) NewAccount(arg0 context.Context, arg1 types.AccountI) types.AccountI
- func (m *MockAccountKeeper) NewAccountWithAddress(ctx context.Context, addr types.AccAddress) types.AccountI
- func (m *MockAccountKeeper) SetAccount(ctx context.Context, acc types.AccountI)
- func (m *MockAccountKeeper) SetModuleAccount(ctx context.Context, macc types.ModuleAccountI)
- func (m *MockAccountKeeper) ValidatePermissions(macc types.ModuleAccountI) error
- type MockAccountKeeperMockRecorder
- func (mr *MockAccountKeeperMockRecorder) AddressCodec() *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetAccount(ctx, addr interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetAllAccounts(ctx interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetModuleAccount(ctx, moduleName interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetModuleAccountAndPermissions(ctx, moduleName interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetModuleAddress(moduleName interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetModuleAddressAndPermissions(moduleName interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) GetModulePermissions() *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) HasAccount(ctx, addr interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) IterateAccounts(ctx, process interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) NewAccount(arg0, arg1 interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) NewAccountWithAddress(ctx, addr interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) SetAccount(ctx, acc interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) SetModuleAccount(ctx, macc interface{}) *gomock.Call
- func (mr *MockAccountKeeperMockRecorder) ValidatePermissions(macc interface{}) *gomock.Call
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FundAccount ¶
func FundAccount(ctx context.Context, bankKeeper bankkeeper.Keeper, 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!
TODO: Instead of using the mint module account, which has the permission of minting, create a "faucet" account. (@fdymylja)
func FundModuleAccount ¶
func FundModuleAccount(ctx context.Context, bankKeeper bankkeeper.Keeper, 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!
TODO: Instead of using the mint module account, which has the permission of minting, create a "faucet" account. (@fdymylja)
Types ¶
type MockAccountKeeper ¶ added in v0.47.0
type MockAccountKeeper struct {
// contains filtered or unexported fields
}
MockAccountKeeper is a mock of AccountKeeper interface.
func NewMockAccountKeeper ¶ added in v0.47.0
func NewMockAccountKeeper(ctrl *gomock.Controller) *MockAccountKeeper
NewMockAccountKeeper creates a new mock instance.
func (*MockAccountKeeper) AddressCodec ¶ added in v0.50.1
func (m *MockAccountKeeper) AddressCodec() address.Codec
AddressCodec mocks base method.
func (*MockAccountKeeper) EXPECT ¶ added in v0.47.0
func (m *MockAccountKeeper) EXPECT() *MockAccountKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockAccountKeeper) GetAccount ¶ added in v0.47.0
func (m *MockAccountKeeper) GetAccount(ctx context.Context, addr types.AccAddress) types.AccountI
GetAccount mocks base method.
func (*MockAccountKeeper) GetAllAccounts ¶ added in v0.47.0
func (m *MockAccountKeeper) GetAllAccounts(ctx context.Context) []types.AccountI
GetAllAccounts mocks base method.
func (*MockAccountKeeper) GetModuleAccount ¶ added in v0.47.0
func (m *MockAccountKeeper) GetModuleAccount(ctx context.Context, moduleName string) types.ModuleAccountI
GetModuleAccount mocks base method.
func (*MockAccountKeeper) GetModuleAccountAndPermissions ¶ added in v0.47.0
func (m *MockAccountKeeper) GetModuleAccountAndPermissions(ctx context.Context, moduleName string) (types.ModuleAccountI, []string)
GetModuleAccountAndPermissions mocks base method.
func (*MockAccountKeeper) GetModuleAddress ¶ added in v0.47.0
func (m *MockAccountKeeper) GetModuleAddress(moduleName string) types.AccAddress
GetModuleAddress mocks base method.
func (*MockAccountKeeper) GetModuleAddressAndPermissions ¶ added in v0.47.0
func (m *MockAccountKeeper) GetModuleAddressAndPermissions(moduleName string) (types.AccAddress, []string)
GetModuleAddressAndPermissions mocks base method.
func (*MockAccountKeeper) GetModulePermissions ¶ added in v0.47.0
func (m *MockAccountKeeper) GetModulePermissions() map[string]types0.PermissionsForAddress
GetModulePermissions mocks base method.
func (*MockAccountKeeper) HasAccount ¶ added in v0.47.0
func (m *MockAccountKeeper) HasAccount(ctx context.Context, addr types.AccAddress) bool
HasAccount mocks base method.
func (*MockAccountKeeper) IterateAccounts ¶ added in v0.47.0
IterateAccounts mocks base method.
func (*MockAccountKeeper) NewAccount ¶ added in v0.47.0
NewAccount mocks base method.
func (*MockAccountKeeper) NewAccountWithAddress ¶ added in v0.47.0
func (m *MockAccountKeeper) NewAccountWithAddress(ctx context.Context, addr types.AccAddress) types.AccountI
NewAccountWithAddress mocks base method.
func (*MockAccountKeeper) SetAccount ¶ added in v0.47.0
func (m *MockAccountKeeper) SetAccount(ctx context.Context, acc types.AccountI)
SetAccount mocks base method.
func (*MockAccountKeeper) SetModuleAccount ¶ added in v0.47.0
func (m *MockAccountKeeper) SetModuleAccount(ctx context.Context, macc types.ModuleAccountI)
SetModuleAccount mocks base method.
func (*MockAccountKeeper) ValidatePermissions ¶ added in v0.47.0
func (m *MockAccountKeeper) ValidatePermissions(macc types.ModuleAccountI) error
ValidatePermissions mocks base method.
type MockAccountKeeperMockRecorder ¶ added in v0.47.0
type MockAccountKeeperMockRecorder struct {
// contains filtered or unexported fields
}
MockAccountKeeperMockRecorder is the mock recorder for MockAccountKeeper.
func (*MockAccountKeeperMockRecorder) AddressCodec ¶ added in v0.50.1
func (mr *MockAccountKeeperMockRecorder) AddressCodec() *gomock.Call
AddressCodec indicates an expected call of AddressCodec.
func (*MockAccountKeeperMockRecorder) GetAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetAccount(ctx, addr interface{}) *gomock.Call
GetAccount indicates an expected call of GetAccount.
func (*MockAccountKeeperMockRecorder) GetAllAccounts ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetAllAccounts(ctx interface{}) *gomock.Call
GetAllAccounts indicates an expected call of GetAllAccounts.
func (*MockAccountKeeperMockRecorder) GetModuleAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetModuleAccount(ctx, moduleName interface{}) *gomock.Call
GetModuleAccount indicates an expected call of GetModuleAccount.
func (*MockAccountKeeperMockRecorder) GetModuleAccountAndPermissions ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetModuleAccountAndPermissions(ctx, moduleName interface{}) *gomock.Call
GetModuleAccountAndPermissions indicates an expected call of GetModuleAccountAndPermissions.
func (*MockAccountKeeperMockRecorder) GetModuleAddress ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetModuleAddress(moduleName interface{}) *gomock.Call
GetModuleAddress indicates an expected call of GetModuleAddress.
func (*MockAccountKeeperMockRecorder) GetModuleAddressAndPermissions ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetModuleAddressAndPermissions(moduleName interface{}) *gomock.Call
GetModuleAddressAndPermissions indicates an expected call of GetModuleAddressAndPermissions.
func (*MockAccountKeeperMockRecorder) GetModulePermissions ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) GetModulePermissions() *gomock.Call
GetModulePermissions indicates an expected call of GetModulePermissions.
func (*MockAccountKeeperMockRecorder) HasAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) HasAccount(ctx, addr interface{}) *gomock.Call
HasAccount indicates an expected call of HasAccount.
func (*MockAccountKeeperMockRecorder) IterateAccounts ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) IterateAccounts(ctx, process interface{}) *gomock.Call
IterateAccounts indicates an expected call of IterateAccounts.
func (*MockAccountKeeperMockRecorder) NewAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) NewAccount(arg0, arg1 interface{}) *gomock.Call
NewAccount indicates an expected call of NewAccount.
func (*MockAccountKeeperMockRecorder) NewAccountWithAddress ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) NewAccountWithAddress(ctx, addr interface{}) *gomock.Call
NewAccountWithAddress indicates an expected call of NewAccountWithAddress.
func (*MockAccountKeeperMockRecorder) SetAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) SetAccount(ctx, acc interface{}) *gomock.Call
SetAccount indicates an expected call of SetAccount.
func (*MockAccountKeeperMockRecorder) SetModuleAccount ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) SetModuleAccount(ctx, macc interface{}) *gomock.Call
SetModuleAccount indicates an expected call of SetModuleAccount.
func (*MockAccountKeeperMockRecorder) ValidatePermissions ¶ added in v0.47.0
func (mr *MockAccountKeeperMockRecorder) ValidatePermissions(macc interface{}) *gomock.Call
ValidatePermissions indicates an expected call of ValidatePermissions.