2020-05-15 19:25:49 +00:00
|
|
|
package keeper_test
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// import (
|
|
|
|
// "testing"
|
|
|
|
// "time"
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/stretchr/testify/suite"
|
2024-02-06 22:54:10 +00:00
|
|
|
// abci "github.com/cometbft/cometbft/abci/types"
|
2020-04-30 14:23:41 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
|
|
|
// paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/kava-labs/kava/app"
|
|
|
|
// "github.com/kava-labs/kava/x/committee/types"
|
|
|
|
// )
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// type TypesTestSuite struct {
|
|
|
|
// suite.Suite
|
|
|
|
// }
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// func (suite *TypesTestSuite) TestCommittee_HasPermissionsFor() {
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// testcases := []struct {
|
|
|
|
// name string
|
|
|
|
// permissions []types.Permission
|
|
|
|
// pubProposal types.PubProposal
|
|
|
|
// expectHasPermissions bool
|
|
|
|
// }{
|
|
|
|
// {
|
|
|
|
// name: "normal (single permission)",
|
|
|
|
// permissions: []types.Permission{types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
|
|
|
// },
|
|
|
|
// }}},
|
|
|
|
// pubProposal: paramstypes.NewParameterChangeProposal(
|
|
|
|
// "A Title",
|
|
|
|
// "A description of this proposal.",
|
|
|
|
// []paramstypes.ParamChange{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
2020-04-27 18:19:05 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Value: `{"denom": "usdx", "amount": "1000000"}`,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// expectHasPermissions: true,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// name: "normal (multiple permissions)",
|
|
|
|
// permissions: []types.Permission{
|
|
|
|
// types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
|
|
|
// },
|
|
|
|
// }},
|
|
|
|
// types.TextPermission{},
|
|
|
|
// },
|
|
|
|
// pubProposal: govtypes.NewTextProposal("A Proposal Title", "A description of this proposal"),
|
|
|
|
// expectHasPermissions: true,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// name: "overruling permission",
|
|
|
|
// permissions: []types.Permission{
|
|
|
|
// types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
|
|
|
// },
|
|
|
|
// }},
|
|
|
|
// types.GodPermission{},
|
|
|
|
// },
|
|
|
|
// pubProposal: paramstypes.NewParameterChangeProposal(
|
|
|
|
// "A Title",
|
|
|
|
// "A description of this proposal.",
|
|
|
|
// []paramstypes.ParamChange{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "CollateralParams",
|
2020-04-27 18:19:05 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Value: `[]`,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// expectHasPermissions: true,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// name: "no permissions",
|
|
|
|
// permissions: nil,
|
|
|
|
// pubProposal: paramstypes.NewParameterChangeProposal(
|
|
|
|
// "A Title",
|
|
|
|
// "A description of this proposal.",
|
|
|
|
// []paramstypes.ParamChange{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "CollateralParams",
|
2020-04-27 18:19:05 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Value: `[]`,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// expectHasPermissions: false,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// name: "split permissions",
|
|
|
|
// // These permissions looks like they allow the param change proposal, however a proposal must pass a single permission independently of others.
|
|
|
|
// permissions: []types.Permission{
|
|
|
|
// types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
|
|
|
// },
|
|
|
|
// }},
|
|
|
|
// types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtParams",
|
|
|
|
// },
|
|
|
|
// }},
|
|
|
|
// },
|
|
|
|
// pubProposal: paramstypes.NewParameterChangeProposal(
|
|
|
|
// "A Title",
|
|
|
|
// "A description of this proposal.",
|
|
|
|
// []paramstypes.ParamChange{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
2020-04-27 18:19:05 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Value: `{"denom": "usdx", "amount": "1000000"}`,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtParams",
|
2020-04-27 18:19:05 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Value: `[]`,
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// ),
|
|
|
|
// expectHasPermissions: false,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// name: "unregistered proposal",
|
|
|
|
// permissions: []types.Permission{
|
|
|
|
// types.SimpleParamChangePermission{
|
|
|
|
// AllowedParams: types.AllowedParams{
|
|
|
|
// {
|
|
|
|
// Subspace: "cdp",
|
|
|
|
// Key: "DebtThreshold",
|
|
|
|
// },
|
|
|
|
// }},
|
|
|
|
// },
|
|
|
|
// pubProposal: UnregisteredPubProposal{govtypes.TextProposal{Title: "A Title", Description: "A description."}},
|
|
|
|
// expectHasPermissions: false,
|
|
|
|
// },
|
|
|
|
// }
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// for _, tc := range testcases {
|
|
|
|
// suite.Run(tc.name, func() {
|
|
|
|
// tApp := app.NewTestApp()
|
|
|
|
// ctx := tApp.NewContext(true, abci.Header{})
|
|
|
|
// tApp.InitializeFromGenesisStates()
|
|
|
|
// com := types.NewMemberCommittee(
|
|
|
|
// 12,
|
|
|
|
// "a description of this committee",
|
|
|
|
// nil,
|
|
|
|
// tc.permissions,
|
|
|
|
// d("0.5"),
|
|
|
|
// 24*time.Hour,
|
|
|
|
// types.FirstPastThePost,
|
|
|
|
// )
|
|
|
|
// suite.Equal(
|
|
|
|
// tc.expectHasPermissions,
|
|
|
|
// com.HasPermissionsFor(ctx, tApp.Codec(), tApp.GetParamsKeeper(), tc.pubProposal),
|
|
|
|
// )
|
|
|
|
// })
|
|
|
|
// }
|
|
|
|
// }
|
2020-04-27 12:57:47 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// func TestTypesTestSuite(t *testing.T) {
|
|
|
|
// suite.Run(t, new(TypesTestSuite))
|
|
|
|
// }
|