2019-08-15 16:26:40 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2020-07-02 15:19:48 +00:00
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
|
|
|
2019-08-15 16:26:40 +00:00
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
dbm "github.com/tendermint/tm-db"
|
2021-06-04 13:14:45 +00:00
|
|
|
|
2022-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/encoding"
|
2019-08-15 16:26:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEthermintAppExport(t *testing.T) {
|
|
|
|
db := dbm.NewMemDB()
|
2022-07-11 12:42:59 +00:00
|
|
|
app := SetupWithDB(false, nil, db)
|
2019-08-15 16:26:40 +00:00
|
|
|
app.Commit()
|
|
|
|
|
|
|
|
// Making a new app object with the db, so that initchain hasn't been called
|
2021-06-04 13:14:45 +00:00
|
|
|
app2 := NewEthermintApp(log.NewTMLogger(log.NewSyncWriter(os.Stdout)), db, nil, true, map[int64]bool{}, DefaultNodeHome, 0, encoding.MakeConfig(ModuleBasics), simapp.EmptyAppOptions{})
|
2022-07-11 12:42:59 +00:00
|
|
|
_, err := app2.ExportAppStateAndValidators(false, []string{})
|
2019-08-15 16:26:40 +00:00
|
|
|
require.NoError(t, err, "ExportAppStateAndValidators should not have an error")
|
|
|
|
}
|