## Description Closes: #12761 --- ### 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)
219 lines
7.0 KiB
Go
219 lines
7.0 KiB
Go
package simulation_test
|
|
|
|
import (
|
|
"math/rand"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
"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"
|
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
|
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/authz"
|
|
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/authz/simulation"
|
|
"github.com/cosmos/cosmos-sdk/x/authz/testutil"
|
|
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
|
banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
)
|
|
|
|
type SimTestSuite struct {
|
|
suite.Suite
|
|
|
|
ctx sdk.Context
|
|
|
|
app *runtime.App
|
|
legacyAmino *codec.LegacyAmino
|
|
codec codec.Codec
|
|
interfaceRegistry codectypes.InterfaceRegistry
|
|
accountKeeper authkeeper.AccountKeeper
|
|
bankKeeper bankkeeper.Keeper
|
|
authzKeeper authzkeeper.Keeper
|
|
}
|
|
|
|
func (suite *SimTestSuite) SetupTest() {
|
|
app, err := simtestutil.Setup(
|
|
testutil.AppConfig,
|
|
&suite.legacyAmino,
|
|
&suite.codec,
|
|
&suite.interfaceRegistry,
|
|
&suite.accountKeeper,
|
|
&suite.bankKeeper,
|
|
&suite.authzKeeper,
|
|
)
|
|
suite.Require().NoError(err)
|
|
suite.app = app
|
|
suite.ctx = app.BaseApp.NewContext(false, tmproto.Header{})
|
|
}
|
|
|
|
func (suite *SimTestSuite) TestWeightedOperations() {
|
|
cdc := suite.codec
|
|
appParams := make(simtypes.AppParams)
|
|
|
|
weightedOps := simulation.WeightedOperations(suite.interfaceRegistry, appParams, cdc, suite.accountKeeper,
|
|
suite.bankKeeper, suite.authzKeeper)
|
|
|
|
s := rand.NewSource(3)
|
|
r := rand.New(s)
|
|
// setup 2 accounts
|
|
accs := suite.getTestingAccounts(r, 2)
|
|
|
|
expected := []struct {
|
|
weight int
|
|
opMsgRoute string
|
|
}{
|
|
{simulation.WeightGrant, simulation.TypeMsgGrant},
|
|
{simulation.WeightExec, simulation.TypeMsgExec},
|
|
{simulation.WeightRevoke, simulation.TypeMsgRevoke},
|
|
}
|
|
|
|
require := suite.Require()
|
|
for i, w := range weightedOps {
|
|
op, _, err := w.Op()(r, suite.app.BaseApp, suite.ctx, accs, "")
|
|
require.NoError(err)
|
|
|
|
// the following checks are very much dependent from the ordering of the output given
|
|
// by WeightedOperations. if the ordering in WeightedOperations changes some tests
|
|
// will fail
|
|
require.Equal(expected[i].weight, w.Weight(),
|
|
"weight should be the same. %v", op.Comment)
|
|
require.Equal(expected[i].opMsgRoute, op.Route,
|
|
"route should be the same. %v", op.Comment)
|
|
require.Equal(expected[i].opMsgRoute, op.Name,
|
|
"operation Msg name should be the same %v", op.Comment)
|
|
}
|
|
}
|
|
|
|
func (suite *SimTestSuite) getTestingAccounts(r *rand.Rand, n int) []simtypes.Account {
|
|
accounts := simtypes.RandomAccounts(r, n)
|
|
|
|
initAmt := sdk.TokensFromConsensusPower(200000, sdk.DefaultPowerReduction)
|
|
initCoins := sdk.NewCoins(sdk.NewCoin("stake", initAmt))
|
|
|
|
// add coins to the accounts
|
|
for _, account := range accounts {
|
|
acc := suite.accountKeeper.NewAccountWithAddress(suite.ctx, account.Address)
|
|
suite.accountKeeper.SetAccount(suite.ctx, acc)
|
|
suite.Require().NoError(banktestutil.FundAccount(suite.bankKeeper, suite.ctx, account.Address, initCoins))
|
|
}
|
|
|
|
return accounts
|
|
}
|
|
|
|
func (suite *SimTestSuite) TestSimulateGrant() {
|
|
s := rand.NewSource(1)
|
|
r := rand.New(s)
|
|
accounts := suite.getTestingAccounts(r, 2)
|
|
blockTime := time.Now().UTC()
|
|
ctx := suite.ctx.WithBlockTime(blockTime)
|
|
|
|
// begin a new block
|
|
suite.app.BeginBlock(abci.RequestBeginBlock{
|
|
Header: tmproto.Header{
|
|
Height: suite.app.LastBlockHeight() + 1,
|
|
AppHash: suite.app.LastCommitID().Hash,
|
|
},
|
|
})
|
|
|
|
granter := accounts[0]
|
|
grantee := accounts[1]
|
|
|
|
// execute operation
|
|
op := simulation.SimulateMsgGrant(codec.NewProtoCodec(suite.interfaceRegistry), suite.accountKeeper, suite.bankKeeper, suite.authzKeeper)
|
|
operationMsg, futureOperations, err := op(r, suite.app.BaseApp, ctx, accounts, "")
|
|
suite.Require().NoError(err)
|
|
|
|
var msg authz.MsgGrant
|
|
suite.legacyAmino.UnmarshalJSON(operationMsg.Msg, &msg)
|
|
suite.Require().True(operationMsg.OK)
|
|
suite.Require().Equal(granter.Address.String(), msg.Granter)
|
|
suite.Require().Equal(grantee.Address.String(), msg.Grantee)
|
|
suite.Require().Len(futureOperations, 0)
|
|
}
|
|
|
|
func (suite *SimTestSuite) TestSimulateRevoke() {
|
|
// setup 3 accounts
|
|
s := rand.NewSource(2)
|
|
r := rand.New(s)
|
|
accounts := suite.getTestingAccounts(r, 3)
|
|
|
|
// begin a new block
|
|
suite.app.BeginBlock(abci.RequestBeginBlock{
|
|
Header: tmproto.Header{
|
|
Height: suite.app.LastBlockHeight() + 1,
|
|
AppHash: suite.app.LastCommitID().Hash,
|
|
},
|
|
})
|
|
|
|
initAmt := sdk.TokensFromConsensusPower(200000, sdk.DefaultPowerReduction)
|
|
initCoins := sdk.NewCoins(sdk.NewCoin("stake", initAmt))
|
|
|
|
granter := accounts[0]
|
|
grantee := accounts[1]
|
|
a := banktypes.NewSendAuthorization(initCoins, nil)
|
|
expire := time.Now().Add(30 * time.Hour)
|
|
|
|
err := suite.authzKeeper.SaveGrant(suite.ctx, grantee.Address, granter.Address, a, &expire)
|
|
suite.Require().NoError(err)
|
|
|
|
// execute operation
|
|
op := simulation.SimulateMsgRevoke(codec.NewProtoCodec(suite.interfaceRegistry), suite.accountKeeper, suite.bankKeeper, suite.authzKeeper)
|
|
operationMsg, futureOperations, err := op(r, suite.app.BaseApp, suite.ctx, accounts, "")
|
|
suite.Require().NoError(err)
|
|
|
|
var msg authz.MsgRevoke
|
|
suite.legacyAmino.UnmarshalJSON(operationMsg.Msg, &msg)
|
|
|
|
suite.Require().True(operationMsg.OK)
|
|
suite.Require().Equal(granter.Address.String(), msg.Granter)
|
|
suite.Require().Equal(grantee.Address.String(), msg.Grantee)
|
|
suite.Require().Equal(banktypes.SendAuthorization{}.MsgTypeURL(), msg.MsgTypeUrl)
|
|
suite.Require().Len(futureOperations, 0)
|
|
}
|
|
|
|
func (suite *SimTestSuite) TestSimulateExec() {
|
|
// setup 3 accounts
|
|
s := rand.NewSource(1)
|
|
r := rand.New(s)
|
|
accounts := suite.getTestingAccounts(r, 3)
|
|
|
|
// begin a new block
|
|
suite.app.BeginBlock(abci.RequestBeginBlock{Header: tmproto.Header{Height: suite.app.LastBlockHeight() + 1, AppHash: suite.app.LastCommitID().Hash}})
|
|
|
|
initAmt := sdk.TokensFromConsensusPower(200000, sdk.DefaultPowerReduction)
|
|
initCoins := sdk.NewCoins(sdk.NewCoin("stake", initAmt))
|
|
|
|
granter := accounts[0]
|
|
grantee := accounts[1]
|
|
a := banktypes.NewSendAuthorization(initCoins, nil)
|
|
expire := suite.ctx.BlockTime().Add(1 * time.Hour)
|
|
|
|
err := suite.authzKeeper.SaveGrant(suite.ctx, grantee.Address, granter.Address, a, &expire)
|
|
suite.Require().NoError(err)
|
|
|
|
// execute operation
|
|
op := simulation.SimulateMsgExec(codec.NewProtoCodec(suite.interfaceRegistry), suite.accountKeeper, suite.bankKeeper, suite.authzKeeper, suite.codec)
|
|
operationMsg, futureOperations, err := op(r, suite.app.BaseApp, suite.ctx, accounts, "")
|
|
suite.Require().NoError(err)
|
|
|
|
var msg authz.MsgExec
|
|
|
|
suite.legacyAmino.UnmarshalJSON(operationMsg.Msg, &msg)
|
|
|
|
suite.Require().True(operationMsg.OK)
|
|
suite.Require().Equal(grantee.Address.String(), msg.Grantee)
|
|
suite.Require().Len(futureOperations, 0)
|
|
}
|
|
|
|
func TestSimTestSuite(t *testing.T) {
|
|
suite.Run(t, new(SimTestSuite))
|
|
}
|