Co-authored-by: Sergio Mena <sergio@informal.systems> Co-authored-by: sontrinh16 <trinhleson2000@gmail.com>
318 lines
9.3 KiB
Go
318 lines
9.3 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"
|
|
cmttypes "github.com/cometbft/cometbft/types"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
storetypes "cosmossdk.io/store/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
"github.com/cosmos/cosmos-sdk/runtime"
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/consensus/types"
|
|
)
|
|
|
|
type KeeperTestSuite struct {
|
|
suite.Suite
|
|
ctx sdk.Context
|
|
consensusParamsKeeper *consensusparamkeeper.Keeper
|
|
|
|
queryClient types.QueryClient
|
|
}
|
|
|
|
func (s *KeeperTestSuite) SetupTest() {
|
|
key := storetypes.NewKVStoreKey(consensusparamkeeper.StoreKey)
|
|
testCtx := testutil.DefaultContextWithDB(s.T(), key, storetypes.NewTransientStoreKey("transient_test"))
|
|
header := cmtproto.Header{Height: 5}
|
|
ctx := testCtx.Ctx.WithBlockHeader(header)
|
|
encCfg := moduletestutil.MakeTestEncodingConfig()
|
|
storeService := runtime.NewKVStoreService(key)
|
|
|
|
keeper := consensusparamkeeper.NewKeeper(encCfg.Codec, storeService, authtypes.NewModuleAddress("gov").String(), runtime.EventService{})
|
|
|
|
s.ctx = ctx
|
|
s.consensusParamsKeeper = &keeper
|
|
|
|
types.RegisterInterfaces(encCfg.InterfaceRegistry)
|
|
queryHelper := baseapp.NewQueryServerTestHelper(ctx, encCfg.InterfaceRegistry)
|
|
types.RegisterQueryServer(queryHelper, keeper)
|
|
s.queryClient = types.NewQueryClient(queryHelper)
|
|
err := s.consensusParamsKeeper.ParamsStore.Set(ctx, cmttypes.DefaultConsensusParams().ToProto())
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
func TestKeeperTestSuite(t *testing.T) {
|
|
suite.Run(t, new(KeeperTestSuite))
|
|
}
|
|
|
|
func (s *KeeperTestSuite) TestGRPCQueryConsensusParams() {
|
|
// Create ConsensusParams with modified fields
|
|
modifiedConsensusParams := cmttypes.DefaultConsensusParams().ToProto()
|
|
modifiedConsensusParams.Block.MaxBytes++
|
|
modifiedConsensusParams.Block.MaxGas = 100
|
|
modifiedConsensusParams.Evidence.MaxAgeDuration++
|
|
modifiedConsensusParams.Evidence.MaxAgeNumBlocks++
|
|
modifiedConsensusParams.Evidence.MaxBytes++
|
|
modifiedConsensusParams.Validator.PubKeyTypes = []string{cmttypes.ABCIPubKeyTypeSecp256k1}
|
|
|
|
testCases := []struct {
|
|
msg string
|
|
req types.QueryParamsRequest
|
|
malleate func()
|
|
response types.QueryParamsResponse
|
|
expPass bool
|
|
}{
|
|
{
|
|
"success",
|
|
types.QueryParamsRequest{},
|
|
func() {
|
|
input := &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: modifiedConsensusParams.Block,
|
|
Validator: modifiedConsensusParams.Validator,
|
|
Evidence: modifiedConsensusParams.Evidence,
|
|
}
|
|
_, err := s.consensusParamsKeeper.UpdateParams(s.ctx, input)
|
|
s.Require().NoError(err)
|
|
},
|
|
types.QueryParamsResponse{
|
|
Params: &cmtproto.ConsensusParams{
|
|
Block: modifiedConsensusParams.Block,
|
|
Validator: modifiedConsensusParams.Validator,
|
|
Evidence: modifiedConsensusParams.Evidence,
|
|
Version: modifiedConsensusParams.Version,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 0,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success with abci",
|
|
types.QueryParamsRequest{},
|
|
func() {
|
|
input := &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: modifiedConsensusParams.Block,
|
|
Validator: modifiedConsensusParams.Validator,
|
|
Evidence: modifiedConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 1234,
|
|
},
|
|
}
|
|
_, err := s.consensusParamsKeeper.UpdateParams(s.ctx, input)
|
|
s.Require().NoError(err)
|
|
},
|
|
types.QueryParamsResponse{
|
|
Params: &cmtproto.ConsensusParams{
|
|
Block: modifiedConsensusParams.Block,
|
|
Validator: modifiedConsensusParams.Validator,
|
|
Evidence: modifiedConsensusParams.Evidence,
|
|
Version: modifiedConsensusParams.Version,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 1234,
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
s.Run(tc.msg, func() {
|
|
s.SetupTest() // reset
|
|
|
|
tc.malleate()
|
|
res, err := s.consensusParamsKeeper.Params(s.ctx, &tc.req)
|
|
|
|
if tc.expPass {
|
|
s.Require().NoError(err)
|
|
s.Require().NotNil(res)
|
|
s.Require().Equal(tc.response.Params, res.Params)
|
|
} else {
|
|
s.Require().Error(err)
|
|
s.Require().Nil(res)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *KeeperTestSuite) TestUpdateParams() {
|
|
defaultConsensusParams := cmttypes.DefaultConsensusParams().ToProto()
|
|
testCases := []struct {
|
|
name string
|
|
input *types.MsgUpdateParams
|
|
expErr bool
|
|
expErrMsg string
|
|
}{
|
|
{
|
|
name: "valid params",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
},
|
|
expErr: false,
|
|
expErrMsg: "",
|
|
},
|
|
{
|
|
name: "invalid params",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: &cmtproto.BlockParams{MaxGas: -10, MaxBytes: -10},
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "block.MaxBytes must be -1 or greater than 0. Got -10",
|
|
},
|
|
{
|
|
name: "invalid authority",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: "invalid",
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "invalid authority",
|
|
},
|
|
{
|
|
name: "nil evidence params",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: nil,
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "all parameters must be present",
|
|
},
|
|
{
|
|
name: "nil block params",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: nil,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "all parameters must be present",
|
|
},
|
|
{
|
|
name: "nil validator params",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: nil,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "all parameters must be present",
|
|
},
|
|
{
|
|
name: "valid ABCI update",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 1235,
|
|
},
|
|
},
|
|
expErr: false,
|
|
expErrMsg: "",
|
|
},
|
|
{
|
|
name: "noop ABCI update",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 1235,
|
|
},
|
|
},
|
|
expErr: false,
|
|
expErrMsg: "",
|
|
},
|
|
{
|
|
name: "valid ABCI clear",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 0,
|
|
},
|
|
},
|
|
expErr: false,
|
|
expErrMsg: "",
|
|
},
|
|
{
|
|
name: "invalid ABCI update - current height",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 5,
|
|
},
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "vote extensions cannot be updated to a past or current height",
|
|
},
|
|
{
|
|
name: "invalid ABCI update - past height",
|
|
input: &types.MsgUpdateParams{
|
|
Authority: s.consensusParamsKeeper.GetAuthority(),
|
|
Block: defaultConsensusParams.Block,
|
|
Validator: defaultConsensusParams.Validator,
|
|
Evidence: defaultConsensusParams.Evidence,
|
|
Abci: &cmtproto.ABCIParams{
|
|
VoteExtensionsEnableHeight: 4,
|
|
},
|
|
},
|
|
expErr: true,
|
|
expErrMsg: "vote extensions cannot be updated to a past or current height",
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
tc := tc
|
|
s.Run(tc.name, func() {
|
|
s.SetupTest()
|
|
_, err := s.consensusParamsKeeper.UpdateParams(s.ctx, tc.input)
|
|
if tc.expErr {
|
|
s.Require().Error(err)
|
|
s.Require().Contains(err.Error(), tc.expErrMsg)
|
|
} else {
|
|
s.Require().NoError(err)
|
|
|
|
res, err := s.consensusParamsKeeper.Params(s.ctx, &types.QueryParamsRequest{})
|
|
s.Require().NoError(err)
|
|
|
|
if tc.input.Abci != nil {
|
|
s.Require().Equal(tc.input.Abci, res.Params.Abci)
|
|
}
|
|
s.Require().Equal(tc.input.Block, res.Params.Block)
|
|
s.Require().Equal(tc.input.Evidence, res.Params.Evidence)
|
|
s.Require().Equal(tc.input.Validator, res.Params.Validator)
|
|
}
|
|
})
|
|
}
|
|
}
|