213 lines
5.4 KiB
Go
213 lines
5.4 KiB
Go
package feegrant_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/feegrant"
|
|
)
|
|
|
|
func TestPeriodicFeeValidAllow(t *testing.T) {
|
|
app := simapp.Setup(false)
|
|
ctx := app.BaseApp.NewContext(false, tmproto.Header{
|
|
Time: time.Now(),
|
|
})
|
|
|
|
atom := sdk.NewCoins(sdk.NewInt64Coin("atom", 555))
|
|
smallAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 43))
|
|
leftAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 512))
|
|
oneAtom := sdk.NewCoins(sdk.NewInt64Coin("atom", 1))
|
|
eth := sdk.NewCoins(sdk.NewInt64Coin("eth", 1))
|
|
|
|
now := ctx.BlockTime()
|
|
oneHour := now.Add(1 * time.Hour)
|
|
twoHours := now.Add(2 * time.Hour)
|
|
tenMinutes := time.Duration(10) * time.Minute
|
|
|
|
cases := map[string]struct {
|
|
allow feegrant.PeriodicAllowance
|
|
fee sdk.Coins
|
|
blockTime time.Time
|
|
valid bool // all other checks are ignored if valid=false
|
|
accept bool
|
|
remove bool
|
|
remains sdk.Coins
|
|
remainsPeriod sdk.Coins
|
|
periodReset time.Time
|
|
}{
|
|
"empty": {
|
|
allow: feegrant.PeriodicAllowance{},
|
|
valid: false,
|
|
},
|
|
"only basic": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &oneHour,
|
|
},
|
|
},
|
|
valid: false,
|
|
},
|
|
"empty basic": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Period: tenMinutes,
|
|
PeriodSpendLimit: smallAtom,
|
|
PeriodReset: now.Add(30 * time.Minute),
|
|
},
|
|
blockTime: now,
|
|
valid: true,
|
|
accept: true,
|
|
remove: false,
|
|
periodReset: now.Add(30 * time.Minute),
|
|
},
|
|
"mismatched currencies": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &oneHour,
|
|
},
|
|
Period: tenMinutes,
|
|
PeriodSpendLimit: eth,
|
|
},
|
|
valid: false,
|
|
},
|
|
"same period": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &twoHours,
|
|
},
|
|
Period: tenMinutes,
|
|
PeriodReset: now.Add(1 * time.Hour),
|
|
PeriodSpendLimit: leftAtom,
|
|
PeriodCanSpend: smallAtom,
|
|
},
|
|
valid: true,
|
|
fee: smallAtom,
|
|
blockTime: now,
|
|
accept: true,
|
|
remove: false,
|
|
remainsPeriod: nil,
|
|
remains: leftAtom,
|
|
periodReset: now.Add(1 * time.Hour),
|
|
},
|
|
"step one period": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &twoHours,
|
|
},
|
|
Period: tenMinutes,
|
|
PeriodReset: now,
|
|
PeriodSpendLimit: leftAtom,
|
|
},
|
|
valid: true,
|
|
fee: leftAtom,
|
|
blockTime: now.Add(1 * time.Hour),
|
|
accept: true,
|
|
remove: false,
|
|
remainsPeriod: nil,
|
|
remains: smallAtom,
|
|
periodReset: oneHour.Add(tenMinutes), // one step from last reset, not now
|
|
},
|
|
"step limited by global allowance": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: smallAtom,
|
|
Expiration: &twoHours,
|
|
},
|
|
Period: tenMinutes,
|
|
PeriodReset: now,
|
|
PeriodSpendLimit: atom,
|
|
},
|
|
valid: true,
|
|
fee: oneAtom,
|
|
blockTime: oneHour,
|
|
accept: true,
|
|
remove: false,
|
|
remainsPeriod: smallAtom.Sub(oneAtom),
|
|
remains: smallAtom.Sub(oneAtom),
|
|
periodReset: oneHour.Add(tenMinutes), // one step from last reset, not now
|
|
},
|
|
"period reset no spend limit": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Period: tenMinutes,
|
|
PeriodReset: now,
|
|
PeriodSpendLimit: atom,
|
|
},
|
|
valid: true,
|
|
fee: atom,
|
|
blockTime: oneHour,
|
|
accept: true,
|
|
remove: false,
|
|
periodReset: oneHour.Add(tenMinutes), // one step from last reset, not now
|
|
},
|
|
"expired": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &now,
|
|
},
|
|
Period: time.Hour,
|
|
PeriodSpendLimit: smallAtom,
|
|
},
|
|
valid: true,
|
|
fee: smallAtom,
|
|
blockTime: oneHour,
|
|
accept: false,
|
|
remove: true,
|
|
},
|
|
"over period limit": {
|
|
allow: feegrant.PeriodicAllowance{
|
|
Basic: feegrant.BasicAllowance{
|
|
SpendLimit: atom,
|
|
Expiration: &now,
|
|
},
|
|
Period: time.Hour,
|
|
PeriodReset: now.Add(1 * time.Hour),
|
|
PeriodSpendLimit: leftAtom,
|
|
PeriodCanSpend: smallAtom,
|
|
},
|
|
valid: true,
|
|
fee: leftAtom,
|
|
blockTime: now,
|
|
accept: false,
|
|
remove: true,
|
|
},
|
|
}
|
|
|
|
for name, stc := range cases {
|
|
tc := stc // to make scopelint happy
|
|
t.Run(name, func(t *testing.T) {
|
|
err := tc.allow.ValidateBasic()
|
|
if !tc.valid {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
ctx := app.BaseApp.NewContext(false, tmproto.Header{}).WithBlockTime(tc.blockTime)
|
|
// now try to deduct
|
|
remove, err := tc.allow.Accept(ctx, tc.fee, []sdk.Msg{})
|
|
if !tc.accept {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, tc.remove, remove)
|
|
if !remove {
|
|
assert.Equal(t, tc.remains, tc.allow.Basic.SpendLimit)
|
|
assert.Equal(t, tc.remainsPeriod, tc.allow.PeriodCanSpend)
|
|
assert.Equal(t, tc.periodReset.String(), tc.allow.PeriodReset.String())
|
|
}
|
|
})
|
|
}
|
|
}
|