29 lines
753 B
Go
29 lines
753 B
Go
|
package main_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
||
|
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
|
||
|
"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
|
||
|
|
||
|
"github.com/cosmos/ethermint/app"
|
||
|
ethermintd "github.com/cosmos/ethermint/cmd/ethermintd"
|
||
|
)
|
||
|
|
||
|
func TestInitCmd(t *testing.T) {
|
||
|
rootCmd, _ := ethermintd.NewRootCmd()
|
||
|
rootCmd.SetArgs([]string{
|
||
|
"init", // Test the init cmd
|
||
|
"ethermint-test", // Moniker
|
||
|
fmt.Sprintf("--%s=%s", cli.FlagOverwrite, "true"), // Overwrite genesis.json, in case it already exists
|
||
|
fmt.Sprintf("--%s=%s", flags.FlagChainID, "ethermint-1"),
|
||
|
})
|
||
|
|
||
|
err := svrcmd.Execute(rootCmd, app.DefaultNodeHome)
|
||
|
require.NoError(t, err)
|
||
|
}
|