-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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> (cherry picked from commit acce343) # Conflicts: # CHANGELOG.md # x/bank/keeper/view.go
- Loading branch information
1 parent
73aa872
commit 8ef342d
Showing
5 changed files
with
112 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