2023-03-28 22:32:36 +00:00
|
|
|
package e2e_test
|
|
|
|
|
2023-06-06 21:51:42 +00:00
|
|
|
import (
|
2024-02-13 18:27:27 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
|
|
|
|
tmtypes "github.com/cometbft/cometbft/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
|
|
|
|
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
|
2023-06-06 21:51:42 +00:00
|
|
|
)
|
2023-03-28 22:32:36 +00:00
|
|
|
|
2024-02-13 18:27:27 +00:00
|
|
|
func (suite *IntegrationTestSuite) TestUpgradeParams_SDK() {
|
2023-03-28 22:32:36 +00:00
|
|
|
suite.SkipIfUpgradeDisabled()
|
2023-06-06 21:51:42 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
beforeUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight - 1)
|
|
|
|
afterUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight)
|
2024-02-13 18:27:27 +00:00
|
|
|
|
|
|
|
// Before params
|
2024-08-12 03:44:39 +00:00
|
|
|
grpcClient := suite.ZgChain.Grpc
|
2024-02-13 18:27:27 +00:00
|
|
|
govParamsBefore, err := grpcClient.Query.Gov.Params(beforeUpgradeCtx, &govtypes.QueryParamsRequest{
|
|
|
|
ParamsType: govtypes.ParamDeposit,
|
|
|
|
})
|
|
|
|
suite.NoError(err)
|
|
|
|
govParamsAfter, err := grpcClient.Query.Gov.Params(afterUpgradeCtx, &govtypes.QueryParamsRequest{
|
|
|
|
ParamsType: govtypes.ParamDeposit,
|
|
|
|
})
|
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// after upgrade, querying params before upgrade height returns nil
|
|
|
|
// since the param gprc query no longer queries x/params
|
|
|
|
suite.Run("x/gov parameters before upgrade", func() {
|
|
|
|
suite.Assert().Nil(
|
|
|
|
govParamsBefore.DepositParams.MaxDepositPeriod,
|
|
|
|
"x/gov DepositParams max deposit period before upgrade should be nil",
|
|
|
|
)
|
|
|
|
suite.Assert().Nil(
|
|
|
|
govParamsBefore.DepositParams.MinDeposit,
|
|
|
|
"x/gov DepositParams min deposit before upgrade should be 10_000_000 ukava",
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
suite.Run("x/gov parameters after upgrade", func() {
|
|
|
|
suite.Assert().Equal(
|
|
|
|
mustParseDuration("172800s"),
|
|
|
|
govParamsAfter.DepositParams.MaxDepositPeriod,
|
|
|
|
"x/gov DepositParams max deposit period after upgrade should be 172800s",
|
|
|
|
)
|
|
|
|
suite.Assert().Equal(
|
2024-08-12 03:44:39 +00:00
|
|
|
[]sdk.Coin{{Denom: "ua0gi", Amount: sdk.NewInt(10_000_000)}},
|
2024-02-13 18:27:27 +00:00
|
|
|
govParamsAfter.DepositParams.MinDeposit,
|
|
|
|
"x/gov DepositParams min deposit after upgrade should be 10_000_000 ukava",
|
|
|
|
)
|
|
|
|
|
|
|
|
expectedParams := govtypes.Params{
|
2024-08-12 03:44:39 +00:00
|
|
|
MinDeposit: sdk.NewCoins(sdk.NewCoin("ua0gi", sdk.NewInt(10_000_000))),
|
2024-02-13 18:27:27 +00:00
|
|
|
MaxDepositPeriod: mustParseDuration("172800s"),
|
|
|
|
VotingPeriod: mustParseDuration("30s"),
|
|
|
|
Quorum: "0.334000000000000000",
|
|
|
|
Threshold: "0.500000000000000000",
|
|
|
|
VetoThreshold: "0.334000000000000000",
|
|
|
|
MinInitialDepositRatio: "0.000000000000000000",
|
|
|
|
BurnVoteQuorum: false,
|
|
|
|
BurnProposalDepositPrevote: false,
|
|
|
|
BurnVoteVeto: true,
|
|
|
|
}
|
|
|
|
suite.Require().Equal(expectedParams, *govParamsAfter.Params, "x/gov params after upgrade should be as expected")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *IntegrationTestSuite) TestUpgradeParams_Consensus() {
|
|
|
|
suite.SkipIfUpgradeDisabled()
|
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
afterUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight)
|
2024-02-13 18:27:27 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
grpcClient := suite.ZgChain.Grpc
|
2024-02-13 18:27:27 +00:00
|
|
|
paramsAfter, err := grpcClient.Query.Consensus.Params(afterUpgradeCtx, &consensustypes.QueryParamsRequest{})
|
|
|
|
suite.NoError(err)
|
|
|
|
|
|
|
|
// v25 consensus params from x/params should be migrated to x/consensus
|
|
|
|
expectedParams := tmproto.ConsensusParams{
|
|
|
|
Block: &tmproto.BlockParams{
|
|
|
|
MaxBytes: 22020096,
|
|
|
|
MaxGas: 20000000,
|
|
|
|
},
|
|
|
|
Evidence: &tmproto.EvidenceParams{
|
|
|
|
MaxAgeNumBlocks: 100000,
|
|
|
|
MaxAgeDuration: *mustParseDuration("172800s"),
|
|
|
|
MaxBytes: 1048576,
|
|
|
|
},
|
|
|
|
Validator: &tmproto.ValidatorParams{
|
|
|
|
PubKeyTypes: []string{
|
|
|
|
tmtypes.ABCIPubKeyTypeEd25519,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Version: nil,
|
|
|
|
}
|
|
|
|
suite.Require().Equal(expectedParams, *paramsAfter.Params, "x/consensus params after upgrade should be as expected")
|
|
|
|
}
|
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// func (suite *IntegrationTestSuite) TestUpgradeParams_CDP_Interval() {
|
|
|
|
// suite.SkipIfUpgradeDisabled()
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// beforeUpgradeCtx := suite.Kava.Grpc.CtxAtHeight(suite.UpgradeHeight - 1)
|
|
|
|
// afterUpgradeCtx := suite.Kava.Grpc.CtxAtHeight(suite.UpgradeHeight)
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// grpcClient := suite.Kava.Grpc
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// paramsBefore, err := grpcClient.Query.Cdp.Params(beforeUpgradeCtx, &cdptypes.QueryParamsRequest{})
|
|
|
|
// suite.Require().NoError(err)
|
|
|
|
// paramsAfter, err := grpcClient.Query.Cdp.Params(afterUpgradeCtx, &cdptypes.QueryParamsRequest{})
|
|
|
|
// suite.Require().NoError(err)
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// expectedParams := paramsBefore.Params
|
|
|
|
// expectedParams.LiquidationBlockInterval = int64(50)
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-08-12 03:44:39 +00:00
|
|
|
// suite.Require().Equal(expectedParams, paramsAfter.Params,
|
|
|
|
// "expected cdp parameters to equal previous parameters with a liquidation block interval of 100")
|
|
|
|
// }
|
2024-03-29 18:05:26 +00:00
|
|
|
|
2024-02-13 18:27:27 +00:00
|
|
|
func mustParseDuration(s string) *time.Duration {
|
|
|
|
d, err := time.ParseDuration(s)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return &d
|
2023-03-28 22:32:36 +00:00
|
|
|
}
|