forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x/authz charge gas for expensive authorizations (cosmos#8995)
* WIP * Add consume gas * update authz.go * add build flag * Update x/staking/types/authz.go * Update x/staking/types/authz.go * add tests docs * review changes * fix operations * Update x/authz/types/msgs.go Co-authored-by: Amaury <[email protected]> * review changes * update gas cost * review changes Co-authored-by: SaReN <[email protected]> Co-authored-by: Amaury <[email protected]>
- Loading branch information
1 parent
338e9a4
commit 8a376a4
Showing
13 changed files
with
175 additions
and
37 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package types_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/cosmos/cosmos-sdk/x/authz/types" | ||
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestGenericAuthorization(t *testing.T) { | ||
t.Log("verify ValidateBasic returns error for non-service msg") | ||
authorization := types.NewGenericAuthorization(banktypes.TypeMsgSend) | ||
require.Error(t, authorization.ValidateBasic()) | ||
|
||
t.Log("verify ValidateBasic returns nil for service msg") | ||
authorization = types.NewGenericAuthorization(banktypes.SendAuthorization{}.MethodName()) | ||
require.NoError(t, authorization.ValidateBasic()) | ||
require.Equal(t, banktypes.SendAuthorization{}.MethodName(), authorization.MessageName) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package types_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/cosmos/cosmos-sdk/simapp" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/x/bank/types" | ||
"github.com/stretchr/testify/require" | ||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types" | ||
) | ||
|
||
var ( | ||
coins1000 = sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(1000))) | ||
coins500 = sdk.NewCoins(sdk.NewCoin("stake", sdk.NewInt(500))) | ||
fromAddr = sdk.AccAddress("_____from _____") | ||
toAddr = sdk.AccAddress("_______to________") | ||
) | ||
|
||
func TestSendAuthorization(t *testing.T) { | ||
app := simapp.Setup(false) | ||
ctx := app.BaseApp.NewContext(false, tmproto.Header{}) | ||
authorization := types.NewSendAuthorization(coins1000) | ||
|
||
t.Log("verify authorization returns valid method name") | ||
require.Equal(t, authorization.MethodName(), "/cosmos.bank.v1beta1.Msg/Send") | ||
require.NoError(t, authorization.ValidateBasic()) | ||
send := types.NewMsgSend(fromAddr, toAddr, coins1000) | ||
srvMsg := sdk.ServiceMsg{ | ||
MethodName: "/cosmos.bank.v1beta1.Msg/Send", | ||
Request: send, | ||
} | ||
require.NoError(t, authorization.ValidateBasic()) | ||
|
||
t.Log("verify updated authorization returns nil") | ||
updated, del, err := authorization.Accept(ctx, srvMsg) | ||
require.NoError(t, err) | ||
require.True(t, del) | ||
require.Nil(t, updated) | ||
|
||
authorization = types.NewSendAuthorization(coins1000) | ||
require.Equal(t, authorization.MethodName(), "/cosmos.bank.v1beta1.Msg/Send") | ||
require.NoError(t, authorization.ValidateBasic()) | ||
send = types.NewMsgSend(fromAddr, toAddr, coins500) | ||
srvMsg = sdk.ServiceMsg{ | ||
MethodName: "/cosmos.bank.v1beta1.Msg/Send", | ||
Request: send, | ||
} | ||
require.NoError(t, authorization.ValidateBasic()) | ||
updated, del, err = authorization.Accept(ctx, srvMsg) | ||
|
||
t.Log("verify updated authorization returns remaining spent limit") | ||
require.NoError(t, err) | ||
require.False(t, del) | ||
require.NotNil(t, updated) | ||
sendAuth := types.NewSendAuthorization(coins500) | ||
require.Equal(t, sendAuth.String(), updated.String()) | ||
|
||
t.Log("expect updated authorization nil after spending remaining amount") | ||
updated, del, err = updated.Accept(ctx, srvMsg) | ||
require.NoError(t, err) | ||
require.True(t, del) | ||
require.Nil(t, updated) | ||
} |
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