## Description Closes part of: https://github.com/cosmos/cosmos-sdk/issues/14405 --- ### 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/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)
85 lines
3.0 KiB
Go
85 lines
3.0 KiB
Go
package simulation_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"cosmossdk.io/math"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil"
|
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
|
"github.com/cosmos/cosmos-sdk/x/mint"
|
|
"github.com/cosmos/cosmos-sdk/x/mint/simulation"
|
|
"github.com/cosmos/cosmos-sdk/x/mint/types"
|
|
)
|
|
|
|
// TestRandomizedGenState tests the normal scenario of applying RandomizedGenState.
|
|
// Abonormal scenarios are not tested here.
|
|
func TestRandomizedGenState(t *testing.T) {
|
|
encCfg := moduletestutil.MakeTestEncodingConfig(mint.AppModuleBasic{})
|
|
|
|
s := rand.NewSource(1)
|
|
r := rand.New(s)
|
|
|
|
simState := module.SimulationState{
|
|
AppParams: make(simtypes.AppParams),
|
|
Cdc: encCfg.Codec,
|
|
Rand: r,
|
|
NumBonded: 3,
|
|
BondDenom: sdk.DefaultBondDenom,
|
|
Accounts: simtypes.RandomAccounts(r, 3),
|
|
InitialStake: math.NewInt(1000),
|
|
GenState: make(map[string]json.RawMessage),
|
|
}
|
|
|
|
simulation.RandomizedGenState(&simState)
|
|
|
|
var mintGenesis types.GenesisState
|
|
simState.Cdc.MustUnmarshalJSON(simState.GenState[types.ModuleName], &mintGenesis)
|
|
|
|
dec1, _ := math.LegacyNewDecFromStr("0.670000000000000000")
|
|
dec2, _ := math.LegacyNewDecFromStr("0.200000000000000000")
|
|
dec3, _ := math.LegacyNewDecFromStr("0.070000000000000000")
|
|
|
|
require.Equal(t, uint64(6311520), mintGenesis.Params.BlocksPerYear)
|
|
require.Equal(t, dec1, mintGenesis.Params.GoalBonded)
|
|
require.Equal(t, dec2, mintGenesis.Params.InflationMax)
|
|
require.Equal(t, dec3, mintGenesis.Params.InflationMin)
|
|
require.Equal(t, "stake", mintGenesis.Params.MintDenom)
|
|
require.Equal(t, "0stake", mintGenesis.Minter.BlockProvision(mintGenesis.Params).String())
|
|
require.Equal(t, "0.170000000000000000", mintGenesis.Minter.NextAnnualProvisions(mintGenesis.Params, math.OneInt()).String())
|
|
require.Equal(t, "0.169999926644441493", mintGenesis.Minter.NextInflationRate(mintGenesis.Params, math.LegacyOneDec()).String())
|
|
require.Equal(t, "0.170000000000000000", mintGenesis.Minter.Inflation.String())
|
|
require.Equal(t, "0.000000000000000000", mintGenesis.Minter.AnnualProvisions.String())
|
|
}
|
|
|
|
// TestRandomizedGenState tests abnormal scenarios of applying RandomizedGenState.
|
|
func TestRandomizedGenState1(t *testing.T) {
|
|
encCfg := moduletestutil.MakeTestEncodingConfig(mint.AppModuleBasic{})
|
|
|
|
s := rand.NewSource(1)
|
|
r := rand.New(s)
|
|
// all these tests will panic
|
|
tests := []struct {
|
|
simState module.SimulationState
|
|
panicMsg string
|
|
}{
|
|
{ // panic => reason: incomplete initialization of the simState
|
|
module.SimulationState{}, "invalid memory address or nil pointer dereference"},
|
|
{ // panic => reason: incomplete initialization of the simState
|
|
module.SimulationState{
|
|
AppParams: make(simtypes.AppParams),
|
|
Cdc: encCfg.Codec,
|
|
Rand: r,
|
|
}, "assignment to entry in nil map"},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
require.Panicsf(t, func() { simulation.RandomizedGenState(&tt.simState) }, tt.panicMsg)
|
|
}
|
|
}
|