mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
57a1a4b10d
* refactor param validation test cases to be shared by genesis and params tests * add additional test case for zero staking rewards in order to ensure no regressions in support for turning off rewards * add test case to ensure default params are valid -- prevent regression if defaults change to an invalid state during updates of validation or defaults * zero out parameters in migration -- this module will be used with existing chains and parameters should be set after migrations in each upgrade handler * update StakingRewardsPerSecond to an 18 decimal type in order to reduce error * add community grpc rest endpoints to swagger * Fix copy pasta query name to refer to correct Community module Co-authored-by: drklee3 <derrick@dlee.dev> * generate swagger changes from previous commit --------- Co-authored-by: drklee3 <derrick@dlee.dev>
75 lines
2.0 KiB
Go
75 lines
2.0 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
sdkmath "cosmossdk.io/math"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/stretchr/testify/suite"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
tmtime "github.com/tendermint/tendermint/types/time"
|
|
|
|
"github.com/kava-labs/kava/app"
|
|
"github.com/kava-labs/kava/x/community/keeper"
|
|
"github.com/kava-labs/kava/x/community/types"
|
|
)
|
|
|
|
// Test suite used for all store tests
|
|
type StoreTestSuite struct {
|
|
suite.Suite
|
|
|
|
App app.TestApp
|
|
Ctx sdk.Context
|
|
Keeper keeper.Keeper
|
|
}
|
|
|
|
// The default state used by each test
|
|
func (suite *StoreTestSuite) SetupTest() {
|
|
app.SetSDKConfig()
|
|
suite.App = app.NewTestApp()
|
|
suite.Ctx = suite.App.NewContext(true, tmproto.Header{Height: 1, Time: tmtime.Now()})
|
|
suite.Keeper = suite.App.GetCommunityKeeper()
|
|
}
|
|
|
|
func TestStoreTestSuite(t *testing.T) {
|
|
suite.Run(t, new(StoreTestSuite))
|
|
}
|
|
|
|
func (suite *StoreTestSuite) TestGetSetParams() {
|
|
suite.Run("get params returns not found on empty store", func() {
|
|
_, found := suite.Keeper.GetParams(suite.Ctx)
|
|
suite.Require().False(found)
|
|
})
|
|
|
|
suite.Run("set params cannot store invalid params", func() {
|
|
invalid := types.Params{UpgradeTimeDisableInflation: time.Date(-1, 1, 1, 0, 0, 0, 0, time.UTC)}
|
|
suite.Panics(func() {
|
|
suite.Keeper.SetParams(suite.Ctx, invalid)
|
|
})
|
|
})
|
|
|
|
suite.Run("get params returns stored params", func() {
|
|
suite.Keeper.SetParams(suite.Ctx, types.DefaultParams())
|
|
|
|
storedParams, found := suite.Keeper.GetParams(suite.Ctx)
|
|
suite.True(found)
|
|
suite.Equal(types.DefaultParams(), storedParams)
|
|
})
|
|
|
|
suite.Run("set overwrite previous value", func() {
|
|
suite.Keeper.SetParams(suite.Ctx, types.DefaultParams())
|
|
|
|
params := types.NewParams(
|
|
time.Date(1998, 1, 1, 0, 0, 0, 0, time.UTC),
|
|
sdkmath.LegacyNewDec(1000),
|
|
)
|
|
suite.Keeper.SetParams(suite.Ctx, params)
|
|
|
|
storedParams, found := suite.Keeper.GetParams(suite.Ctx)
|
|
suite.True(found)
|
|
suite.NotEqual(params, types.DefaultParams())
|
|
suite.Equal(params, storedParams)
|
|
})
|
|
}
|