-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bank): make
DenomAddressIndex
less strict with respect to index…
… values. (#16841) Co-authored-by: unknown unknown <unknown@unknown>
- Loading branch information
1 parent
6402101
commit acce343
Showing
5 changed files
with
95 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package keeper_test | ||
|
||
import ( | ||
"testing" | ||
|
||
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" | ||
cmttime "github.com/cometbft/cometbft/types/time" | ||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/require" | ||
|
||
"cosmossdk.io/collections" | ||
"cosmossdk.io/log" | ||
"cosmossdk.io/math" | ||
storetypes "cosmossdk.io/store/types" | ||
|
||
"github.com/cosmos/cosmos-sdk/codec/address" | ||
"github.com/cosmos/cosmos-sdk/runtime" | ||
"github.com/cosmos/cosmos-sdk/testutil" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" | ||
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" | ||
"github.com/cosmos/cosmos-sdk/x/bank/keeper" | ||
banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" | ||
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" | ||
) | ||
|
||
func TestBankStateCompatibility(t *testing.T) { | ||
key := storetypes.NewKVStoreKey(banktypes.StoreKey) | ||
testCtx := testutil.DefaultContextWithDB(t, key, storetypes.NewTransientStoreKey("transient_test")) | ||
ctx := testCtx.Ctx.WithBlockHeader(cmtproto.Header{Time: cmttime.Now()}) | ||
encCfg := moduletestutil.MakeTestEncodingConfig() | ||
|
||
storeService := runtime.NewKVStoreService(key) | ||
|
||
// gomock initializations | ||
ctrl := gomock.NewController(t) | ||
authKeeper := banktestutil.NewMockAccountKeeper(ctrl) | ||
authKeeper.EXPECT().AddressCodec().Return(address.NewBech32Codec("cosmos")).AnyTimes() | ||
|
||
k := keeper.NewBaseKeeper( | ||
encCfg.Codec, | ||
storeService, | ||
authKeeper, | ||
map[string]bool{accAddrs[4].String(): true}, | ||
authtypes.NewModuleAddress(banktypes.GovModuleName).String(), | ||
log.NewNopLogger(), | ||
) | ||
|
||
// test we can decode balances without problems | ||
// using the old value format of the denom to address index | ||
bankDenomAddressLegacyIndexValue := []byte{0} // taken from: https://github.com/cosmos/cosmos-sdk/blob/v0.47.3/x/bank/keeper/send.go#L361 | ||
rawKey, err := collections.EncodeKeyWithPrefix( | ||
banktypes.DenomAddressPrefix, | ||
k.Balances.Indexes.Denom.KeyCodec(), | ||
collections.Join("atom", sdk.AccAddress("test")), | ||
) | ||
require.NoError(t, err) | ||
// we set the index key to the old value. | ||
require.NoError(t, storeService.OpenKVStore(ctx).Set(rawKey, bankDenomAddressLegacyIndexValue)) | ||
|
||
// test walking is ok | ||
err = k.Balances.Indexes.Denom.Walk(ctx, nil, func(indexingKey string, indexedKey sdk.AccAddress) (stop bool, err error) { | ||
require.Equal(t, indexedKey, sdk.AccAddress("test")) | ||
require.Equal(t, indexingKey, "atom") | ||
return true, nil | ||
}) | ||
require.NoError(t, err) | ||
|
||
// test matching is also ok | ||
iter, err := k.Balances.Indexes.Denom.MatchExact(ctx, "atom") | ||
require.NoError(t, err) | ||
defer iter.Close() | ||
pks, err := iter.PrimaryKeys() | ||
require.NoError(t, err) | ||
require.Len(t, pks, 1) | ||
require.Equal(t, pks[0], collections.Join(sdk.AccAddress("test"), "atom")) | ||
|
||
// assert the index value will be updated to the new format | ||
err = k.Balances.Indexes.Denom.Reference(ctx, collections.Join(sdk.AccAddress("test"), "atom"), math.ZeroInt(), nil) | ||
require.NoError(t, err) | ||
|
||
newRawValue, err := storeService.OpenKVStore(ctx).Get(rawKey) | ||
require.NoError(t, err) | ||
require.Equal(t, []byte{}, newRawValue) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters