-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fix bug when updating allowance inside AllowedMsgAllowance #10564
Changes from 13 commits
02c8e13
408f75c
4568717
52eed35
143c5d9
cb8c84e
4206827
de4745d
092d219
0ad23de
8a556a6
67a7064
999dcdd
6008d98
bf6645b
6e84e7a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,188 @@ | ||||||
package feegrant_test | ||||||
|
||||||
import ( | ||||||
"testing" | ||||||
"time" | ||||||
|
||||||
"github.com/cosmos/cosmos-sdk/x/feegrant" | ||||||
ocproto "github.com/tendermint/tendermint/proto/tendermint/types" | ||||||
"github.com/stretchr/testify/assert" | ||||||
"github.com/stretchr/testify/require" | ||||||
|
||||||
"github.com/cosmos/cosmos-sdk/simapp" | ||||||
sdk "github.com/cosmos/cosmos-sdk/types" | ||||||
|
||||||
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" | ||||||
) | ||||||
|
||||||
func TestFilteredFeeValidAllow(t *testing.T) { | ||||||
app := simapp.Setup(t, false) | ||||||
|
||||||
ctx := app.BaseApp.NewContext(false, ocproto.Header{ | ||||||
Time: time.Now(), | ||||||
}) | ||||||
eth := sdk.NewCoins(sdk.NewInt64Coin("eth", 10)) | ||||||
atom := sdk.NewCoins(sdk.NewInt64Coin("atom", 555)) | ||||||
smallAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 43)) | ||||||
bigAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 1000)) | ||||||
leftAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 512)) | ||||||
now := ctx.BlockTime() | ||||||
oneHour := now.Add(1 * time.Hour) | ||||||
|
||||||
// msg we will call in the all cases | ||||||
call := banktypes.MsgSend{} | ||||||
cases := map[string]struct { | ||||||
allowance *feegrant.BasicAllowance | ||||||
msgs []string | ||||||
fee sdk.Coins | ||||||
blockTime time.Time | ||||||
accept bool | ||||||
remove bool | ||||||
remains sdk.Coins | ||||||
}{ | ||||||
"msg contained": { | ||||||
allowance: &feegrant.BasicAllowance{}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
we can remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it could be more straight-forward to use the variable |
||||||
accept: true, | ||||||
}, | ||||||
"msg not contained": { | ||||||
allowance: &feegrant.BasicAllowance{}, | ||||||
msgs: []string{"/cosmos.gov.v1beta1.MsgVote"}, | ||||||
accept: false, | ||||||
}, | ||||||
"small fee without expire": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: atom, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: smallAtom, | ||||||
accept: true, | ||||||
remove: false, | ||||||
remains: leftAtom, | ||||||
}, | ||||||
"all fee without expire": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: smallAtom, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: smallAtom, | ||||||
accept: true, | ||||||
remove: true, | ||||||
}, | ||||||
"wrong fee": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: smallAtom, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: eth, | ||||||
accept: false, | ||||||
}, | ||||||
"non-expired": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: atom, | ||||||
Expiration: &oneHour, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: smallAtom, | ||||||
blockTime: now, | ||||||
accept: true, | ||||||
remove: false, | ||||||
remains: leftAtom, | ||||||
}, | ||||||
"expired": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: atom, | ||||||
Expiration: &now, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: smallAtom, | ||||||
blockTime: oneHour, | ||||||
accept: false, | ||||||
remove: true, | ||||||
}, | ||||||
"fee more than allowed": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
SpendLimit: atom, | ||||||
Expiration: &oneHour, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: bigAtom, | ||||||
blockTime: now, | ||||||
accept: false, | ||||||
}, | ||||||
"with out spend limit": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
Expiration: &oneHour, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: bigAtom, | ||||||
blockTime: now, | ||||||
accept: true, | ||||||
}, | ||||||
"expired no spend limit": { | ||||||
allowance: &feegrant.BasicAllowance{ | ||||||
Expiration: &now, | ||||||
}, | ||||||
msgs: []string{sdk.MsgTypeURL(&call)}, | ||||||
fee: bigAtom, | ||||||
blockTime: oneHour, | ||||||
accept: false, | ||||||
}, | ||||||
} | ||||||
|
||||||
for name, stc := range cases { | ||||||
tc := stc // to make scopelint happy | ||||||
t.Run(name, func(t *testing.T) { | ||||||
err := tc.allowance.ValidateBasic() | ||||||
require.NoError(t, err) | ||||||
|
||||||
ctx := app.BaseApp.NewContext(false, ocproto.Header{}).WithBlockTime(tc.blockTime) | ||||||
|
||||||
// create grant | ||||||
var granter, grantee sdk.AccAddress | ||||||
allowance, err := feegrant.NewAllowedMsgAllowance(tc.allowance, tc.msgs) | ||||||
require.NoError(t, err) | ||||||
grant, err := feegrant.NewGrant(granter, grantee, allowance) | ||||||
require.NoError(t, err) | ||||||
Comment on lines
+145
to
+146
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
// now try to deduct | ||||||
removed, err := allowance.Accept(ctx, tc.fee, []sdk.Msg{&call}) | ||||||
if !tc.accept { | ||||||
require.Error(t, err) | ||||||
return | ||||||
} | ||||||
require.NoError(t, err) | ||||||
|
||||||
require.Equal(t, tc.remove, removed) | ||||||
if !removed { | ||||||
// mimic save & load process (#10564) | ||||||
// the cached allowance was correct even before the fix, | ||||||
// however, the saved value was not. | ||||||
// so we need this to catch the bug. | ||||||
|
||||||
// create a new updated grant | ||||||
newGrant, err := feegrant.NewGrant( | ||||||
sdk.AccAddress(grant.Granter), | ||||||
sdk.AccAddress(grant.Grantee), | ||||||
allowance) | ||||||
require.NoError(t, err) | ||||||
|
||||||
// save the grant | ||||||
cdc := simapp.MakeTestEncodingConfig().Codec | ||||||
bz, err := cdc.Marshal(&newGrant) | ||||||
require.NoError(t, err) | ||||||
|
||||||
// load the grant | ||||||
var loadedGrant feegrant.Grant | ||||||
err = cdc.Unmarshal(bz, &loadedGrant) | ||||||
require.NoError(t, err) | ||||||
|
||||||
newAllowance, err := loadedGrant.GetGrant() | ||||||
require.NoError(t, err) | ||||||
feeAllowance, err := newAllowance.(*feegrant.AllowedMsgAllowance).GetAllowance() | ||||||
require.NoError(t, err) | ||||||
assert.Equal(t, tc.remains, feeAllowance.(*feegrant.BasicAllowance).SpendLimit) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Finally, the assert against |
||||||
} | ||||||
}) | ||||||
} | ||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test has been copied from basic_fee_test.go.