2019-08-15 16:26:40 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
2022-09-30 06:41:39 +00:00
|
|
|
"os"
|
2019-08-15 16:26:40 +00:00
|
|
|
"testing"
|
|
|
|
|
2022-09-30 06:41:39 +00:00
|
|
|
dbm "github.com/tendermint/tm-db"
|
|
|
|
|
2019-08-15 16:26:40 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-07-02 15:19:48 +00:00
|
|
|
|
2019-08-15 16:26:40 +00:00
|
|
|
"github.com/tendermint/tendermint/libs/log"
|
2021-06-04 13:14:45 +00:00
|
|
|
|
2022-09-07 06:36:11 +00:00
|
|
|
"github.com/cerc-io/laconicd/encoding"
|
2019-08-15 16:26:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEthermintAppExport(t *testing.T) {
|
2022-04-26 10:39:18 +00:00
|
|
|
encCfg := encoding.MakeConfig(ModuleBasics)
|
2022-09-30 06:41:39 +00:00
|
|
|
db := dbm.NewMemDB()
|
|
|
|
logger := log.NewTMLogger(log.NewSyncWriter(os.Stdout))
|
2022-04-26 10:39:18 +00:00
|
|
|
app := NewTestAppWithCustomOptions(t, false, SetupOptions{
|
|
|
|
Logger: logger,
|
|
|
|
DB: db,
|
|
|
|
InvCheckPeriod: 0,
|
|
|
|
EncConfig: encCfg,
|
|
|
|
HomePath: DefaultNodeHome,
|
|
|
|
SkipUpgradeHeights: map[int64]bool{},
|
|
|
|
AppOpts: EmptyAppOptions{},
|
|
|
|
})
|
|
|
|
|
2022-04-26 13:32:26 +00:00
|
|
|
for acc := range allowedReceivingModAcc {
|
|
|
|
// check module account is not blocked in bank
|
|
|
|
require.False(
|
|
|
|
t,
|
|
|
|
app.BankKeeper.BlockedAddr(app.AccountKeeper.GetModuleAddress(acc)),
|
|
|
|
"ensure that blocked addresses %s are properly set in bank keeper",
|
|
|
|
)
|
|
|
|
}
|
2022-04-26 10:39:18 +00:00
|
|
|
|
2019-08-15 16:26:40 +00:00
|
|
|
app.Commit()
|
2022-09-30 06:41:39 +00:00
|
|
|
logger2 := log.NewTMLogger(log.NewSyncWriter(os.Stdout))
|
2019-08-15 16:26:40 +00:00
|
|
|
|
|
|
|
// Making a new app object with the db, so that initchain hasn't been called
|
2022-04-26 13:32:26 +00:00
|
|
|
app2 := NewEthermintApp(logger2, db, nil, true, map[int64]bool{}, DefaultNodeHome, 0, encCfg, EmptyAppOptions{})
|
2022-04-26 10:39:18 +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")
|
|
|
|
}
|