Use encoding/json for genesis (#7037)

* Use encoding/json for genesis

* Fix typo

* WIP Add test

* Add integration test

* byebye singleton

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Amaury Martiny 2020-08-15 10:52:33 +02:00 committed by GitHub
parent 277ad71c05
commit f3c6ed61b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 60 additions and 29 deletions

View File

@ -0,0 +1,23 @@
package cmd_test
import (
"fmt"
"testing"
"github.com/stretchr/testify/require"
"github.com/cosmos/cosmos-sdk/simapp/simd/cmd"
"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
)
func TestInitCmd(t *testing.T) {
rootCmd, _ := cmd.NewRootCmd()
rootCmd.SetArgs([]string{
"init", // Test the init cmd
"simapp-test", // Moniker
fmt.Sprintf("--%s=%s", cli.FlagOverwrite, "true"), // Overwrite genesis.json, in case it already exists
})
err := cmd.Execute(rootCmd)
require.NoError(t, err)
}

View File

@ -7,6 +7,7 @@ import (
"os" "os"
"github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/simapp/params"
"github.com/spf13/cast" "github.com/spf13/cast"
"github.com/spf13/cobra" "github.com/spf13/cobra"
@ -34,8 +35,21 @@ import (
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
) )
var ( // NewRootCmd creates a new root command for simd. It is called once in the
rootCmd = &cobra.Command{ // main function.
func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
encodingConfig := simapp.MakeEncodingConfig()
initClientCtx := client.Context{}.
WithJSONMarshaler(encodingConfig.Marshaler).
WithInterfaceRegistry(encodingConfig.InterfaceRegistry).
WithTxConfig(encodingConfig.TxConfig).
WithLegacyAmino(encodingConfig.Amino).
WithInput(os.Stdin).
WithAccountRetriever(types.AccountRetriever{}).
WithBroadcastMode(flags.BroadcastBlock).
WithHomeDir(simapp.DefaultNodeHome)
rootCmd := &cobra.Command{
Use: "simd", Use: "simd",
Short: "simulation app", Short: "simulation app",
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error { PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
@ -47,20 +61,13 @@ var (
}, },
} }
encodingConfig = simapp.MakeEncodingConfig() initRootCmd(rootCmd, encodingConfig)
initClientCtx = client.Context{}.
WithJSONMarshaler(encodingConfig.Marshaler). return rootCmd, encodingConfig
WithInterfaceRegistry(encodingConfig.InterfaceRegistry). }
WithTxConfig(encodingConfig.TxConfig).
WithLegacyAmino(encodingConfig.Amino).
WithInput(os.Stdin).
WithAccountRetriever(types.AccountRetriever{}).
WithBroadcastMode(flags.BroadcastBlock).
WithHomeDir(simapp.DefaultNodeHome)
)
// Execute executes the root command. // Execute executes the root command.
func Execute() error { func Execute(rootCmd *cobra.Command) error {
// Create and set a client.Context on the command's Context. During the pre-run // Create and set a client.Context on the command's Context. During the pre-run
// of the root command, a default initialized client.Context is provided to // of the root command, a default initialized client.Context is provided to
// seed child command execution with values such as AccountRetriver, Keyring, // seed child command execution with values such as AccountRetriver, Keyring,
@ -75,7 +82,7 @@ func Execute() error {
return executor.ExecuteContext(ctx) return executor.ExecuteContext(ctx)
} }
func init() { func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) {
authclient.Codec = encodingConfig.Marshaler authclient.Codec = encodingConfig.Marshaler
rootCmd.AddCommand( rootCmd.AddCommand(
@ -173,7 +180,7 @@ func newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, appOpts serverty
logger, db, traceStore, true, skipUpgradeHeights, logger, db, traceStore, true, skipUpgradeHeights,
cast.ToString(appOpts.Get(flags.FlagHome)), cast.ToString(appOpts.Get(flags.FlagHome)),
cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)), cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod)),
encodingConfig, simapp.MakeEncodingConfig(), // Ideally, we would reuse the one created by NewRootCmd.
baseapp.SetPruning(pruningOpts), baseapp.SetPruning(pruningOpts),
baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))), baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))),
baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(server.FlagHaltHeight))), baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(server.FlagHaltHeight))),
@ -187,7 +194,7 @@ func exportAppStateAndTMValidators(
logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailWhiteList []string, logger log.Logger, db dbm.DB, traceStore io.Writer, height int64, forZeroHeight bool, jailWhiteList []string,
) (json.RawMessage, []tmtypes.GenesisValidator, *abci.ConsensusParams, error) { ) (json.RawMessage, []tmtypes.GenesisValidator, *abci.ConsensusParams, error) {
encCfg := simapp.MakeEncodingConfig() encCfg := simapp.MakeEncodingConfig() // Ideally, we would reuse the one created by NewRootCmd.
encCfg.Marshaler = codec.NewProtoCodec(encCfg.InterfaceRegistry) encCfg.Marshaler = codec.NewProtoCodec(encCfg.InterfaceRegistry)
var simApp *simapp.SimApp var simApp *simapp.SimApp
if height != -1 { if height != -1 {

View File

@ -7,7 +7,8 @@ import (
) )
func main() { func main() {
if err := cmd.Execute(); err != nil { rootCmd, _ := cmd.NewRootCmd()
if err := cmd.Execute(rootCmd); err != nil {
os.Exit(1) os.Exit(1)
} }
} }

View File

@ -59,7 +59,7 @@ func CollectGenTxsCmd(genBalIterator types.GenesisBalancesIterator, defaultNodeH
toPrint.AppMessage = appMessage toPrint.AppMessage = appMessage
return displayInfo(cdc, toPrint) return displayInfo(toPrint)
}, },
} }

View File

@ -16,7 +16,6 @@ import (
"github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/server" "github.com/cosmos/cosmos-sdk/server"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/types/module"
@ -24,7 +23,8 @@ import (
) )
const ( const (
flagOverwrite = "overwrite" // FlagOverwrite defines a flag to overwrite an existing genesis JSON file.
FlagOverwrite = "overwrite"
) )
type printInfo struct { type printInfo struct {
@ -45,8 +45,8 @@ func newPrintInfo(moniker, chainID, nodeID, genTxsDir string, appMessage json.Ra
} }
} }
func displayInfo(cdc codec.JSONMarshaler, info printInfo) error { func displayInfo(info printInfo) error {
out, err := codec.MarshalJSONIndent(cdc, info) out, err := json.MarshalIndent(info, "", " ")
if err != nil { if err != nil {
return err return err
} }
@ -86,12 +86,12 @@ func InitCmd(mbm module.BasicManager, defaultNodeHome string) *cobra.Command {
config.Moniker = args[0] config.Moniker = args[0]
genFile := config.GenesisFile() genFile := config.GenesisFile()
overwrite, _ := cmd.Flags().GetBool(flagOverwrite) overwrite, _ := cmd.Flags().GetBool(FlagOverwrite)
if !overwrite && tmos.FileExists(genFile) { if !overwrite && tmos.FileExists(genFile) {
return fmt.Errorf("genesis.json file already exists: %v", genFile) return fmt.Errorf("genesis.json file already exists: %v", genFile)
} }
appState, err := codec.MarshalJSONIndent(cdc, mbm.DefaultGenesis(cdc)) appState, err := json.MarshalIndent(mbm.DefaultGenesis(cdc), "", " ")
if err != nil { if err != nil {
return errors.Wrap(err, "Failed to marshall default genesis state") return errors.Wrap(err, "Failed to marshall default genesis state")
} }
@ -118,12 +118,12 @@ func InitCmd(mbm module.BasicManager, defaultNodeHome string) *cobra.Command {
toPrint := newPrintInfo(config.Moniker, chainID, nodeID, "", appState) toPrint := newPrintInfo(config.Moniker, chainID, nodeID, "", appState)
cfg.WriteConfigFile(filepath.Join(config.RootDir, "config", "config.toml"), config) cfg.WriteConfigFile(filepath.Join(config.RootDir, "config", "config.toml"), config)
return displayInfo(cdc, toPrint) return displayInfo(toPrint)
}, },
} }
cmd.Flags().String(cli.HomeFlag, defaultNodeHome, "node's home directory") cmd.Flags().String(cli.HomeFlag, defaultNodeHome, "node's home directory")
cmd.Flags().BoolP(flagOverwrite, "o", false, "overwrite the genesis.json file") cmd.Flags().BoolP(FlagOverwrite, "o", false, "overwrite the genesis.json file")
cmd.Flags().String(flags.FlagChainID, "", "genesis file chain-id, if left blank will be randomly created") cmd.Flags().String(flags.FlagChainID, "", "genesis file chain-id, if left blank will be randomly created")
return cmd return cmd

View File

@ -1,6 +1,7 @@
package cli package cli
import ( import (
"encoding/json"
"fmt" "fmt"
"sort" "sort"
"time" "time"
@ -10,7 +11,6 @@ import (
tmtypes "github.com/tendermint/tendermint/types" tmtypes "github.com/tendermint/tendermint/types"
"github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/version" "github.com/cosmos/cosmos-sdk/version"
v036 "github.com/cosmos/cosmos-sdk/x/genutil/legacy/v0_36" v036 "github.com/cosmos/cosmos-sdk/x/genutil/legacy/v0_36"
@ -116,7 +116,7 @@ $ %s migrate v0.36 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2
genDoc.ChainID = chainID genDoc.ChainID = chainID
} }
bz, err := codec.MarshalJSONIndent(cdc, genDoc) bz, err := json.MarshalIndent(genDoc, "", " ")
if err != nil { if err != nil {
return errors.Wrap(err, "failed to marshal genesis doc") return errors.Wrap(err, "failed to marshal genesis doc")
} }