## Description Closes: #12302 --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
151 lines
4.3 KiB
Go
151 lines
4.3 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/runtime"
|
|
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/testutil"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
)
|
|
|
|
const (
|
|
holder = "holder"
|
|
multiPerm = "multiple permissions account"
|
|
randomPerm = "random permission"
|
|
)
|
|
|
|
var (
|
|
multiPermAcc = types.NewEmptyModuleAccount(multiPerm, types.Burner, types.Minter, types.Staking)
|
|
randomPermAcc = types.NewEmptyModuleAccount(randomPerm, "random")
|
|
)
|
|
|
|
type KeeperTestSuite struct {
|
|
suite.Suite
|
|
|
|
ctx sdk.Context
|
|
|
|
app *runtime.App
|
|
queryClient types.QueryClient
|
|
legacyAmino *codec.LegacyAmino
|
|
interfaceRegistry codectypes.InterfaceRegistry
|
|
accountKeeper keeper.AccountKeeper
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) SetupTest() {
|
|
app, err := simtestutil.Setup(
|
|
testutil.AppConfig,
|
|
&suite.legacyAmino,
|
|
&suite.interfaceRegistry,
|
|
&suite.accountKeeper,
|
|
&suite.interfaceRegistry,
|
|
)
|
|
suite.Require().NoError(err)
|
|
|
|
suite.app = app
|
|
suite.ctx = app.BaseApp.NewContext(true, tmproto.Header{})
|
|
|
|
queryHelper := baseapp.NewQueryServerTestHelper(suite.ctx, suite.interfaceRegistry)
|
|
types.RegisterQueryServer(queryHelper, suite.accountKeeper)
|
|
suite.queryClient = types.NewQueryClient(queryHelper)
|
|
}
|
|
|
|
func TestKeeperTestSuite(t *testing.T) {
|
|
suite.Run(t, new(KeeperTestSuite))
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) TestAccountMapperGetSet() {
|
|
ctx := suite.ctx
|
|
addr := sdk.AccAddress([]byte("some---------address"))
|
|
|
|
// no account before its created
|
|
acc := suite.accountKeeper.GetAccount(ctx, addr)
|
|
suite.Require().Nil(acc)
|
|
|
|
// create account and check default values
|
|
acc = suite.accountKeeper.NewAccountWithAddress(ctx, addr)
|
|
suite.Require().NotNil(acc)
|
|
suite.Require().Equal(addr, acc.GetAddress())
|
|
suite.Require().EqualValues(nil, acc.GetPubKey())
|
|
suite.Require().EqualValues(0, acc.GetSequence())
|
|
|
|
// NewAccount doesn't call Set, so it's still nil
|
|
suite.Require().Nil(suite.accountKeeper.GetAccount(ctx, addr))
|
|
|
|
// set some values on the account and save it
|
|
newSequence := uint64(20)
|
|
err := acc.SetSequence(newSequence)
|
|
suite.Require().NoError(err)
|
|
suite.accountKeeper.SetAccount(ctx, acc)
|
|
|
|
// check the new values
|
|
acc = suite.accountKeeper.GetAccount(ctx, addr)
|
|
suite.Require().NotNil(acc)
|
|
suite.Require().Equal(newSequence, acc.GetSequence())
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) TestAccountMapperRemoveAccount() {
|
|
ctx := suite.ctx
|
|
addr1 := sdk.AccAddress([]byte("addr1---------------"))
|
|
addr2 := sdk.AccAddress([]byte("addr2---------------"))
|
|
|
|
// create accounts
|
|
acc1 := suite.accountKeeper.NewAccountWithAddress(ctx, addr1)
|
|
acc2 := suite.accountKeeper.NewAccountWithAddress(ctx, addr2)
|
|
|
|
accSeq1 := uint64(20)
|
|
accSeq2 := uint64(40)
|
|
|
|
err := acc1.SetSequence(accSeq1)
|
|
suite.Require().NoError(err)
|
|
err = acc2.SetSequence(accSeq2)
|
|
suite.Require().NoError(err)
|
|
suite.accountKeeper.SetAccount(ctx, acc1)
|
|
suite.accountKeeper.SetAccount(ctx, acc2)
|
|
|
|
acc1 = suite.accountKeeper.GetAccount(ctx, addr1)
|
|
suite.Require().NotNil(acc1)
|
|
suite.Require().Equal(accSeq1, acc1.GetSequence())
|
|
|
|
// remove one account
|
|
suite.accountKeeper.RemoveAccount(ctx, acc1)
|
|
acc1 = suite.accountKeeper.GetAccount(ctx, addr1)
|
|
suite.Require().Nil(acc1)
|
|
|
|
acc2 = suite.accountKeeper.GetAccount(ctx, addr2)
|
|
suite.Require().NotNil(acc2)
|
|
suite.Require().Equal(accSeq2, acc2.GetSequence())
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) TestGetSetParams() {
|
|
ctx := suite.ctx
|
|
params := types.DefaultParams()
|
|
|
|
suite.accountKeeper.SetParams(ctx, params)
|
|
|
|
actualParams := suite.accountKeeper.GetParams(ctx)
|
|
suite.Require().Equal(params, actualParams)
|
|
}
|
|
|
|
func (suite *KeeperTestSuite) TestSupply_ValidatePermissions() {
|
|
|
|
err := suite.accountKeeper.ValidatePermissions(multiPermAcc)
|
|
suite.Require().NoError(err)
|
|
|
|
err = suite.accountKeeper.ValidatePermissions(randomPermAcc)
|
|
suite.Require().NoError(err)
|
|
|
|
// unregistered permissions
|
|
otherAcc := types.NewEmptyModuleAccount("other", "other")
|
|
err = suite.accountKeeper.ValidatePermissions(otherAcc)
|
|
suite.Require().Error(err)
|
|
}
|