0g-chain/x/community/migrations/v2/store_test.go

49 lines
1.1 KiB
Go
Raw Normal View History

package v2_test
import (
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/cosmos/cosmos-sdk/testutil"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/kava-labs/kava/app"
v2 "github.com/kava-labs/kava/x/community/migrations/v2"
"github.com/kava-labs/kava/x/community/types"
)
func TestMigrateStore(t *testing.T) {
tApp := app.NewTestApp()
cdc := tApp.AppCodec()
storeKey := sdk.NewKVStoreKey("community")
ctx := testutil.DefaultContext(storeKey, sdk.NewTransientStoreKey("transient_test"))
store := ctx.KVStore(storeKey)
require.Nil(
t,
store.Get(types.ParamsKey),
"params shouldn't exist in store before migration",
)
require.NoError(t, v2.Migrate(ctx, store, cdc))
paramsBytes := store.Get(types.ParamsKey)
require.NotNil(t, paramsBytes, "params should be in store after migration")
var params types.Params
cdc.MustUnmarshal(paramsBytes, &params)
t.Logf("params: %+v", params)
require.Equal(
t,
types.NewParams(
time.Date(2023, 11, 1, 0, 0, 0, 0, time.UTC),
sdk.NewInt(744191),
),
params,
"params should be correct after migration",
)
}