* Make JSONMarshaler require proto.Message * Use &msg with MarshalJSON * Use *LegacyAmino in queriers instead of JSONMarshaler * Revert ABCIMessageLogs String() and coins tests * Use LegacyAmino in client/debug and fix subspace tests * Use LegacyAmino in all legacy queriers and adapt simulation * Make AminoCodec implement Marshaler and some godoc fixes * Test fixes * Remove unrelevant comment * Use TxConfig.TxJSONEncoder * Use encoding/json in genutil cli migrate/validate genesis cmds * Address simulation related comments * Use JSONMarshaler in cli tests * Use proto.Message as respType in cli tests * Use tmjson for tm GenesisDoc * Update types/module/simulation.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update types/module/module_test.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Add godoc comments * Remove unused InsertKeyJSON * Fix tests Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com> Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
40 lines
965 B
Go
40 lines
965 B
Go
package simulation
|
|
|
|
// DONTCOVER
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"math/rand"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
"github.com/cosmos/cosmos-sdk/x/capability/types"
|
|
)
|
|
|
|
// Simulation parameter constants
|
|
const index = "index"
|
|
|
|
// GenIndex returns a random global index between 1-1000
|
|
func GenIndex(r *rand.Rand) uint64 {
|
|
return uint64(r.Int63n(1000)) + 1
|
|
}
|
|
|
|
// RandomizedGenState generates a random GenesisState for capability
|
|
func RandomizedGenState(simState *module.SimulationState) {
|
|
var idx uint64
|
|
|
|
simState.AppParams.GetOrGenerate(
|
|
simState.Cdc, index, &idx, simState.Rand,
|
|
func(r *rand.Rand) { idx = GenIndex(r) },
|
|
)
|
|
|
|
capabilityGenesis := types.GenesisState{Index: idx}
|
|
|
|
bz, err := json.MarshalIndent(&capabilityGenesis, "", " ")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Printf("Selected randomly generated %s parameters:\n%s\n", types.ModuleName, bz)
|
|
simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(&capabilityGenesis)
|
|
}
|