laconicd/app/app_test.go

27 lines
771 B
Go
Raw Normal View History

package app
import (
2022-09-30 06:41:39 +00:00
"os"
"testing"
"github.com/stretchr/testify/require"
2022-10-10 10:38:33 +00:00
"github.com/cosmos/cosmos-sdk/simapp"
"github.com/tendermint/tendermint/libs/log"
2022-10-10 10:38:33 +00:00
dbm "github.com/tendermint/tm-db"
"github.com/cerc-io/laconicd/encoding"
)
func TestEthermintAppExport(t *testing.T) {
2022-09-30 06:41:39 +00:00
db := dbm.NewMemDB()
2022-10-10 10:38:33 +00:00
app := SetupWithDB(false, nil, db)
app.Commit()
// Making a new app object with the db, so that initchain hasn't been called
2022-10-10 10:38:33 +00:00
app2 := NewEthermintApp(log.NewTMLogger(log.NewSyncWriter(os.Stdout)), db, nil, true, map[int64]bool{}, DefaultNodeHome, 0, encoding.MakeConfig(ModuleBasics), simapp.EmptyAppOptions{})
2022-04-26 10:39:18 +00:00
_, err := app2.ExportAppStateAndValidators(false, []string{})
require.NoError(t, err, "ExportAppStateAndValidators should not have an error")
}