package app import ( "os" "testing" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/x/auth" distr "github.com/cosmos/cosmos-sdk/x/distribution" "github.com/cosmos/cosmos-sdk/x/slashing" "github.com/cosmos/cosmos-sdk/x/stake" "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/libs/db" "github.com/tendermint/tendermint/libs/log" abci "github.com/tendermint/tendermint/abci/types" ) func setGenesis(gapp *GaiaApp, accs ...*auth.BaseAccount) error { genaccs := make([]GenesisAccount, len(accs)) for i, acc := range accs { genaccs[i] = NewGenesisAccount(acc) } genesisState := GenesisState{ Accounts: genaccs, StakeData: stake.DefaultGenesisState(), DistrData: distr.DefaultGenesisState(), SlashingData: slashing.DefaultGenesisState(), } stateBytes, err := codec.MarshalJSONIndent(gapp.cdc, genesisState) if err != nil { return err } // Initialize the chain vals := []abci.ValidatorUpdate{} gapp.InitChain(abci.RequestInitChain{Validators: vals, AppStateBytes: stateBytes}) gapp.Commit() return nil } func TestGaiadExport(t *testing.T) { db := db.NewMemDB() gapp := NewGaiaApp(log.NewTMLogger(log.NewSyncWriter(os.Stdout)), db, nil) setGenesis(gapp) // Making a new app object with the db, so that initchain hasn't been called newGapp := NewGaiaApp(log.NewTMLogger(log.NewSyncWriter(os.Stdout)), db, nil) _, _, err := newGapp.ExportAppStateAndValidators() require.NoError(t, err, "ExportAppStateAndValidators should not have an error") }