2021-05-17 10:13:08 +00:00
|
|
|
package keeper_test
|
|
|
|
|
|
|
|
import (
|
2021-07-23 14:24:36 +00:00
|
|
|
"encoding/json"
|
2021-05-17 10:13:08 +00:00
|
|
|
"fmt"
|
2021-07-23 14:24:36 +00:00
|
|
|
"math/big"
|
2021-05-17 10:13:08 +00:00
|
|
|
|
2022-07-28 13:43:49 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
|
|
|
|
2021-06-08 17:10:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2021-07-23 14:24:36 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2022-01-05 07:28:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2021-09-03 18:06:36 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2022-07-18 20:16:28 +00:00
|
|
|
ethlogger "github.com/ethereum/go-ethereum/eth/tracers/logger"
|
2022-04-30 16:11:28 +00:00
|
|
|
ethparams "github.com/ethereum/go-ethereum/params"
|
2022-10-21 16:59:03 +00:00
|
|
|
"github.com/evmos/ethermint/tests"
|
2022-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/x/evm/statedb"
|
2021-05-17 10:13:08 +00:00
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
2022-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/server/config"
|
|
|
|
ethermint "github.com/evmos/ethermint/types"
|
|
|
|
"github.com/evmos/ethermint/x/evm/types"
|
2021-05-17 10:13:08 +00:00
|
|
|
)
|
|
|
|
|
2021-09-05 11:03:06 +00:00
|
|
|
// Not valid Ethereum address
|
2021-06-29 15:08:07 +00:00
|
|
|
const invalidAddress = "0x0000"
|
|
|
|
|
2021-05-17 10:13:08 +00:00
|
|
|
func (suite *KeeperTestSuite) TestQueryAccount() {
|
|
|
|
var (
|
|
|
|
req *types.QueryAccountRequest
|
|
|
|
expAccount *types.QueryAccountResponse
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
}{
|
2021-06-30 15:28:38 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2021-05-17 10:13:08 +00:00
|
|
|
func() {
|
|
|
|
expAccount = &types.QueryAccountResponse{
|
2021-07-02 09:29:47 +00:00
|
|
|
Balance: "0",
|
2021-09-03 18:06:36 +00:00
|
|
|
CodeHash: common.BytesToHash(crypto.Keccak256(nil)).Hex(),
|
2021-05-17 10:13:08 +00:00
|
|
|
Nonce: 0,
|
|
|
|
}
|
|
|
|
req = &types.QueryAccountRequest{
|
2021-06-29 15:08:07 +00:00
|
|
|
Address: invalidAddress,
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
|
|
|
func() {
|
2021-06-29 17:02:21 +00:00
|
|
|
amt := sdk.Coins{ethermint.NewPhotonCoinInt64(100)}
|
2021-06-30 15:28:38 +00:00
|
|
|
err := suite.app.BankKeeper.MintCoins(suite.ctx, types.ModuleName, amt)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
err = suite.app.BankKeeper.SendCoinsFromModuleToAccount(suite.ctx, types.ModuleName, suite.address.Bytes(), amt)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
2021-05-17 10:13:08 +00:00
|
|
|
expAccount = &types.QueryAccountResponse{
|
2021-07-02 09:29:47 +00:00
|
|
|
Balance: "100",
|
2021-09-03 18:06:36 +00:00
|
|
|
CodeHash: common.BytesToHash(crypto.Keccak256(nil)).Hex(),
|
2021-05-17 10:13:08 +00:00
|
|
|
Nonce: 0,
|
|
|
|
}
|
|
|
|
req = &types.QueryAccountRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.Account(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expAccount, res)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryCosmosAccount() {
|
|
|
|
var (
|
|
|
|
req *types.QueryCosmosAccountRequest
|
|
|
|
expAccount *types.QueryCosmosAccountResponse
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2021-05-17 10:13:08 +00:00
|
|
|
func() {
|
|
|
|
expAccount = &types.QueryCosmosAccountResponse{
|
2021-09-03 18:06:36 +00:00
|
|
|
CosmosAddress: sdk.AccAddress(common.Address{}.Bytes()).String(),
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
req = &types.QueryCosmosAccountRequest{
|
2021-06-29 15:08:07 +00:00
|
|
|
Address: invalidAddress,
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
|
|
|
func() {
|
|
|
|
expAccount = &types.QueryCosmosAccountResponse{
|
|
|
|
CosmosAddress: sdk.AccAddress(suite.address.Bytes()).String(),
|
|
|
|
Sequence: 0,
|
|
|
|
AccountNumber: 0,
|
|
|
|
}
|
|
|
|
req = &types.QueryCosmosAccountRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success with seq and account number",
|
|
|
|
func() {
|
|
|
|
acc := suite.app.AccountKeeper.GetAccount(suite.ctx, suite.address.Bytes())
|
|
|
|
suite.Require().NoError(acc.SetSequence(10))
|
|
|
|
suite.Require().NoError(acc.SetAccountNumber(1))
|
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
|
|
|
|
|
|
expAccount = &types.QueryCosmosAccountResponse{
|
|
|
|
CosmosAddress: sdk.AccAddress(suite.address.Bytes()).String(),
|
|
|
|
Sequence: 10,
|
|
|
|
AccountNumber: 1,
|
|
|
|
}
|
|
|
|
req = &types.QueryCosmosAccountRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.CosmosAccount(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expAccount, res)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryBalance() {
|
|
|
|
var (
|
|
|
|
req *types.QueryBalanceRequest
|
2021-07-02 09:29:47 +00:00
|
|
|
expBalance string
|
2021-05-17 10:13:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2021-05-17 10:13:08 +00:00
|
|
|
func() {
|
2021-07-02 09:29:47 +00:00
|
|
|
expBalance = "0"
|
2021-05-17 10:13:08 +00:00
|
|
|
req = &types.QueryBalanceRequest{
|
2021-06-29 15:08:07 +00:00
|
|
|
Address: invalidAddress,
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
|
|
|
func() {
|
2021-06-29 17:02:21 +00:00
|
|
|
amt := sdk.Coins{ethermint.NewPhotonCoinInt64(100)}
|
2021-06-30 15:28:38 +00:00
|
|
|
err := suite.app.BankKeeper.MintCoins(suite.ctx, types.ModuleName, amt)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
err = suite.app.BankKeeper.SendCoinsFromModuleToAccount(suite.ctx, types.ModuleName, suite.address.Bytes(), amt)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
2021-07-02 09:29:47 +00:00
|
|
|
expBalance = "100"
|
2021-05-17 10:13:08 +00:00
|
|
|
req = &types.QueryBalanceRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.Balance(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expBalance, res.Balance)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryStorage() {
|
|
|
|
var (
|
|
|
|
req *types.QueryStorageRequest
|
|
|
|
expValue string
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
2022-01-05 07:28:27 +00:00
|
|
|
malleate func(vm.StateDB)
|
2021-05-17 10:13:08 +00:00
|
|
|
expPass bool
|
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vm.StateDB) {
|
2021-05-17 10:13:08 +00:00
|
|
|
req = &types.QueryStorageRequest{
|
2021-06-29 15:08:07 +00:00
|
|
|
Address: invalidAddress,
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vmdb vm.StateDB) {
|
2021-09-03 18:06:36 +00:00
|
|
|
key := common.BytesToHash([]byte("key"))
|
|
|
|
value := common.BytesToHash([]byte("value"))
|
2021-05-17 10:13:08 +00:00
|
|
|
expValue = value.String()
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb.SetState(suite.address, key, value)
|
2021-05-17 10:13:08 +00:00
|
|
|
req = &types.QueryStorageRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
Key: key.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb := suite.StateDB()
|
|
|
|
tc.malleate(vmdb)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
|
|
|
|
2021-05-17 10:13:08 +00:00
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.Storage(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expValue, res.Value)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryCode() {
|
|
|
|
var (
|
|
|
|
req *types.QueryCodeRequest
|
|
|
|
expCode []byte
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
2022-01-05 07:28:27 +00:00
|
|
|
malleate func(vm.StateDB)
|
2021-05-17 10:13:08 +00:00
|
|
|
expPass bool
|
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vm.StateDB) {
|
2021-05-17 10:13:08 +00:00
|
|
|
req = &types.QueryCodeRequest{
|
2021-06-29 15:08:07 +00:00
|
|
|
Address: invalidAddress,
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
exp := &types.QueryCodeResponse{}
|
|
|
|
expCode = exp.Code
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vmdb vm.StateDB) {
|
2021-05-17 10:13:08 +00:00
|
|
|
expCode = []byte("code")
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb.SetCode(suite.address, expCode)
|
2021-05-17 10:13:08 +00:00
|
|
|
|
|
|
|
req = &types.QueryCodeRequest{
|
|
|
|
Address: suite.address.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb := suite.StateDB()
|
|
|
|
tc.malleate(vmdb)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
|
|
|
|
2021-05-17 10:13:08 +00:00
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.Code(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expCode, res.Code)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryTxLogs() {
|
2022-01-05 18:18:02 +00:00
|
|
|
var expLogs []*types.Log
|
2022-01-05 07:28:27 +00:00
|
|
|
txHash := common.BytesToHash([]byte("tx_hash"))
|
|
|
|
txIndex := uint(1)
|
|
|
|
logIndex := uint(1)
|
2021-05-17 10:13:08 +00:00
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
2022-01-05 07:28:27 +00:00
|
|
|
malleate func(vm.StateDB)
|
2021-05-17 10:13:08 +00:00
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
2021-09-15 09:45:03 +00:00
|
|
|
"empty logs",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vm.StateDB) {
|
2021-09-15 09:45:03 +00:00
|
|
|
expLogs = nil
|
2021-05-17 10:13:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
2022-01-05 07:28:27 +00:00
|
|
|
func(vmdb vm.StateDB) {
|
2021-05-17 10:13:08 +00:00
|
|
|
expLogs = []*types.Log{
|
|
|
|
{
|
|
|
|
Address: suite.address.String(),
|
2021-09-03 18:06:36 +00:00
|
|
|
Topics: []string{common.BytesToHash([]byte("topic")).String()},
|
2021-05-17 10:13:08 +00:00
|
|
|
Data: []byte("data"),
|
|
|
|
BlockNumber: 1,
|
2021-09-15 09:45:03 +00:00
|
|
|
TxHash: txHash.String(),
|
2022-01-05 07:28:27 +00:00
|
|
|
TxIndex: uint64(txIndex),
|
2021-09-15 09:45:03 +00:00
|
|
|
BlockHash: common.BytesToHash(suite.ctx.HeaderHash()).Hex(),
|
2022-01-05 07:28:27 +00:00
|
|
|
Index: uint64(logIndex),
|
2021-05-17 10:13:08 +00:00
|
|
|
Removed: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-09-15 09:45:03 +00:00
|
|
|
for _, log := range types.LogsToEthereum(expLogs) {
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb.AddLog(log)
|
2021-05-17 10:13:08 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb := statedb.New(suite.ctx, suite.app.EvmKeeper, statedb.NewTxConfig(common.BytesToHash(suite.ctx.HeaderHash().Bytes()), txHash, txIndex, logIndex))
|
|
|
|
tc.malleate(vmdb)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
|
|
|
|
|
|
|
logs := vmdb.Logs()
|
2021-09-15 09:45:03 +00:00
|
|
|
suite.Require().Equal(expLogs, types.NewLogsFromEth(logs))
|
2021-05-17 10:13:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryParams() {
|
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
expParams := types.DefaultParams()
|
|
|
|
|
|
|
|
res, err := suite.queryClient.Params(ctx, &types.QueryParamsRequest{})
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().Equal(expParams, res.Params)
|
|
|
|
}
|
2021-06-22 10:14:40 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryValidatorAccount() {
|
|
|
|
var (
|
|
|
|
req *types.QueryValidatorAccountRequest
|
|
|
|
expAccount *types.QueryValidatorAccountResponse
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
}{
|
2021-09-05 11:03:06 +00:00
|
|
|
{
|
|
|
|
"invalid address",
|
2021-06-22 10:14:40 +00:00
|
|
|
func() {
|
|
|
|
expAccount = &types.QueryValidatorAccountResponse{
|
2021-09-03 18:06:36 +00:00
|
|
|
AccountAddress: sdk.AccAddress(common.Address{}.Bytes()).String(),
|
2021-06-22 10:14:40 +00:00
|
|
|
}
|
|
|
|
req = &types.QueryValidatorAccountRequest{
|
|
|
|
ConsAddress: "",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success",
|
|
|
|
func() {
|
|
|
|
expAccount = &types.QueryValidatorAccountResponse{
|
|
|
|
AccountAddress: sdk.AccAddress(suite.address.Bytes()).String(),
|
2021-06-22 10:49:18 +00:00
|
|
|
Sequence: 0,
|
|
|
|
AccountNumber: 0,
|
2021-06-22 10:14:40 +00:00
|
|
|
}
|
|
|
|
req = &types.QueryValidatorAccountRequest{
|
|
|
|
ConsAddress: suite.consAddress.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"success with seq and account number",
|
|
|
|
func() {
|
|
|
|
acc := suite.app.AccountKeeper.GetAccount(suite.ctx, suite.address.Bytes())
|
|
|
|
suite.Require().NoError(acc.SetSequence(10))
|
|
|
|
suite.Require().NoError(acc.SetAccountNumber(1))
|
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
|
|
|
|
|
|
expAccount = &types.QueryValidatorAccountResponse{
|
|
|
|
AccountAddress: sdk.AccAddress(suite.address.Bytes()).String(),
|
2021-06-22 10:49:18 +00:00
|
|
|
Sequence: 10,
|
|
|
|
AccountNumber: 1,
|
2021-06-22 10:14:40 +00:00
|
|
|
}
|
|
|
|
req = &types.QueryValidatorAccountRequest{
|
|
|
|
ConsAddress: suite.consAddress.String(),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
suite.SetupTest() // reset
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
ctx := sdk.WrapSDKContext(suite.ctx)
|
|
|
|
res, err := suite.queryClient.ValidatorAccount(ctx, req)
|
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
|
|
|
|
suite.Require().Equal(expAccount, res)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-06-22 10:49:18 +00:00
|
|
|
}
|
2021-07-23 14:24:36 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestEstimateGas() {
|
|
|
|
gasHelper := hexutil.Uint64(20000)
|
2022-10-21 16:59:03 +00:00
|
|
|
higherGas := hexutil.Uint64(25000)
|
|
|
|
hexBigInt := hexutil.Big(*big.NewInt(1))
|
2021-07-23 14:24:36 +00:00
|
|
|
|
|
|
|
var (
|
2022-10-21 16:59:03 +00:00
|
|
|
args interface{}
|
2021-07-23 14:24:36 +00:00
|
|
|
gasCap uint64
|
|
|
|
)
|
|
|
|
testCases := []struct {
|
2021-12-28 07:59:28 +00:00
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
expGas uint64
|
|
|
|
enableFeemarket bool
|
2021-07-23 14:24:36 +00:00
|
|
|
}{
|
|
|
|
// should success, because transfer value is zero
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"default args - special case for ErrIntrinsicGas on contract creation, raise gas limit",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGasContractCreation,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
// should success, because transfer value is zero
|
|
|
|
{
|
|
|
|
"default args with 'to' address",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
// should fail, because the default From address(zero address) don't have fund
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"not enough balance",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, Value: (*hexutil.Big)(big.NewInt(100))}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
// should success, enough balance now
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"enough balance",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, From: &suite.address, Value: (*hexutil.Big)(big.NewInt(100))}
|
|
|
|
}, false, 0, false},
|
2021-07-23 14:24:36 +00:00
|
|
|
// should success, because gas limit lower than 21000 is ignored
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"gas exceed allowance",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, Gas: &gasHelper}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
// should fail, invalid gas cap
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"gas exceed global allowance",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}}
|
|
|
|
gasCap = 20000
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
// estimate gas of an erc20 contract deployment, the exact gas number is checked with geth
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"contract deployment",
|
|
|
|
func() {
|
|
|
|
ctorArgs, err := types.ERC20Contract.ABI.Pack("", &suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
data := append(types.ERC20Contract.Bin, ctorArgs...)
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
From: &suite.address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
1186778,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
// estimate gas of an erc20 transfer, the exact gas number is checked with geth
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"erc20 transfer",
|
|
|
|
func() {
|
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
|
|
|
suite.Commit()
|
|
|
|
transferData, err := types.ERC20Contract.ABI.Pack("transfer", common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), big.NewInt(1000))
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
args = types.TransactionArgs{To: &contractAddr, From: &suite.address, Data: (*hexutil.Bytes)(&transferData)}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
51880,
|
|
|
|
false,
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
// repeated tests with enableFeemarket
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
"default args w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"not enough balance w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, Value: (*hexutil.Big)(big.NewInt(100))}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"enough balance w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, From: &suite.address, Value: (*hexutil.Big)(big.NewInt(100))}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"gas exceed allowance w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}, Gas: &gasHelper}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"gas exceed global allowance w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{To: &common.Address{}}
|
|
|
|
gasCap = 20000
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"contract deployment w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
ctorArgs, err := types.ERC20Contract.ABI.Pack("", &suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
data := append(types.ERC20Contract.Bin, ctorArgs...)
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
From: &suite.address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
1186778,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"erc20 transfer w/ enableFeemarket",
|
|
|
|
func() {
|
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
|
|
|
suite.Commit()
|
|
|
|
transferData, err := types.ERC20Contract.ABI.Pack("transfer", common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), big.NewInt(1000))
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
args = types.TransactionArgs{To: &contractAddr, From: &suite.address, Data: (*hexutil.Bytes)(&transferData)}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
51880,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"contract creation but 'create' param disabled",
|
|
|
|
func() {
|
|
|
|
ctorArgs, err := types.ERC20Contract.ABI.Pack("", &suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
data := append(types.ERC20Contract.Bin, ctorArgs...)
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
From: &suite.address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
}
|
|
|
|
params := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
|
|
params.EnableCreate = false
|
|
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"specified gas in args higher than ethparams.TxGas (21,000)",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
To: &common.Address{},
|
|
|
|
Gas: &higherGas,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"specified gas in args higher than request gasCap",
|
|
|
|
func() {
|
|
|
|
gasCap = 22_000
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
To: &common.Address{},
|
|
|
|
Gas: &higherGas,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
ethparams.TxGas,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"invalid args - specified both gasPrice and maxFeePerGas",
|
|
|
|
func() {
|
|
|
|
args = types.TransactionArgs{
|
|
|
|
To: &common.Address{},
|
|
|
|
GasPrice: &hexBigInt,
|
|
|
|
MaxFeePerGas: &hexBigInt,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
0,
|
|
|
|
false,
|
|
|
|
},
|
2021-07-23 14:24:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = tc.enableFeemarket
|
2021-07-23 14:24:36 +00:00
|
|
|
suite.SetupTest()
|
2021-08-18 14:11:51 +00:00
|
|
|
gasCap = 25_000_000
|
2021-07-23 14:24:36 +00:00
|
|
|
tc.malleate()
|
|
|
|
|
|
|
|
args, err := json.Marshal(&args)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
req := types.EthCallRequest{
|
2022-10-21 23:58:29 +00:00
|
|
|
Args: args,
|
|
|
|
GasCap: gasCap,
|
|
|
|
ProposerAddress: suite.ctx.BlockHeader().ProposerAddress,
|
2021-07-23 14:24:36 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 10:26:45 +00:00
|
|
|
rsp, err := suite.queryClient.EstimateGas(sdk.WrapSDKContext(suite.ctx), &req)
|
2021-07-23 14:24:36 +00:00
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
2022-01-05 18:18:02 +00:00
|
|
|
suite.Require().Equal(int64(tc.expGas), int64(rsp.Gas))
|
2021-07-23 14:24:36 +00:00
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = false // reset flag
|
2021-07-23 14:24:36 +00:00
|
|
|
}
|
2021-09-04 20:33:06 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestTraceTx() {
|
2021-09-05 11:03:06 +00:00
|
|
|
// TODO deploy contract that triggers internal transactions
|
2021-09-04 20:33:06 +00:00
|
|
|
var (
|
2021-11-09 18:38:22 +00:00
|
|
|
txMsg *types.MsgEthereumTx
|
|
|
|
traceConfig *types.TraceConfig
|
|
|
|
predecessors []*types.MsgEthereumTx
|
2022-11-30 17:00:19 +00:00
|
|
|
chainID *sdkmath.Int
|
2021-09-04 20:33:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
2021-12-28 07:59:28 +00:00
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse string
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket bool
|
2021-09-04 20:33:06 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
msg: "default trace",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
2021-11-09 18:38:22 +00:00
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
2021-09-04 20:33:06 +00:00
|
|
|
},
|
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PUSH1\",\"gas\":",
|
2021-11-16 08:57:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "default trace with filtered response",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
}
|
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PUSH1\",\"gas\":",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: false,
|
2021-11-17 11:58:52 +00:00
|
|
|
},
|
|
|
|
{
|
2021-09-04 20:33:06 +00:00
|
|
|
msg: "javascript tracer",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
Tracer: "{data: [], fault: function(log) {}, step: function(log) { if(log.op.toString() == \"CALL\") this.data.push(log.stack.peek(0)); }, result: function() { return this.data; }}",
|
|
|
|
}
|
2021-11-09 18:38:22 +00:00
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
2021-09-04 20:33:06 +00:00
|
|
|
},
|
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[]",
|
2021-09-04 20:33:06 +00:00
|
|
|
},
|
2021-10-19 08:49:29 +00:00
|
|
|
{
|
2021-12-28 07:59:28 +00:00
|
|
|
msg: "default trace with enableFeemarket",
|
2021-10-19 08:49:29 +00:00
|
|
|
malleate: func() {
|
2021-11-16 08:57:03 +00:00
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
}
|
2021-11-09 18:38:22 +00:00
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PUSH1\",\"gas\":",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: true,
|
2021-11-17 11:58:52 +00:00
|
|
|
},
|
|
|
|
{
|
2021-12-28 07:59:28 +00:00
|
|
|
msg: "javascript tracer with enableFeemarket",
|
2021-10-19 08:49:29 +00:00
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
Tracer: "{data: [], fault: function(log) {}, step: function(log) { if(log.op.toString() == \"CALL\") this.data.push(log.stack.peek(0)); }, result: function() { return this.data; }}",
|
|
|
|
}
|
2021-11-09 18:38:22 +00:00
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[]",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: true,
|
2021-10-19 08:49:29 +00:00
|
|
|
},
|
2021-11-09 18:38:22 +00:00
|
|
|
{
|
|
|
|
msg: "default tracer with predecessors",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
2022-01-05 07:28:27 +00:00
|
|
|
|
2021-12-16 22:35:28 +00:00
|
|
|
// increase nonce to avoid address collision
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb := suite.StateDB()
|
|
|
|
vmdb.SetNonce(suite.address, vmdb.GetNonce(suite.address)+1)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
2021-11-09 18:38:22 +00:00
|
|
|
|
2022-07-28 13:43:49 +00:00
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
// Generate token transfer transaction
|
2022-07-28 13:43:49 +00:00
|
|
|
firstTx := suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
|
|
|
txMsg = suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
|
|
|
|
predecessors = append(predecessors, firstTx)
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PUSH1\",\"gas\":",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: false,
|
2021-11-09 18:38:22 +00:00
|
|
|
},
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
msg: "invalid trace config - Negative Limit",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
Limit: -1,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "invalid trace config - Invalid Tracer",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
Tracer: "invalid_tracer",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "invalid trace config - Invalid Timeout",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
Timeout: "wrong_time",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "default tracer with contract creation tx as predecessor but 'create' param disabled",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
|
|
|
|
|
|
|
// increase nonce to avoid address collision
|
|
|
|
vmdb := suite.StateDB()
|
|
|
|
vmdb.SetNonce(suite.address, vmdb.GetNonce(suite.address)+1)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
|
|
|
|
|
|
|
chainID := suite.app.EvmKeeper.ChainID()
|
|
|
|
nonce := suite.app.EvmKeeper.GetNonce(suite.ctx, suite.address)
|
|
|
|
data := types.ERC20Contract.Bin
|
|
|
|
contractTx := types.NewTxContract(
|
|
|
|
chainID,
|
|
|
|
nonce,
|
|
|
|
nil, // amount
|
|
|
|
ethparams.TxGasContractCreation, // gasLimit
|
|
|
|
nil, // gasPrice
|
|
|
|
nil, nil,
|
|
|
|
data, // input
|
|
|
|
nil, // accesses
|
|
|
|
)
|
|
|
|
|
|
|
|
predecessors = append(predecessors, contractTx)
|
|
|
|
suite.Commit()
|
|
|
|
|
|
|
|
params := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
|
|
params.EnableCreate = false
|
|
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
|
|
},
|
|
|
|
expPass: true,
|
|
|
|
traceResponse: "{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PUSH1\",\"gas\":",
|
|
|
|
},
|
2022-11-30 17:00:19 +00:00
|
|
|
{
|
|
|
|
msg: "invalid chain id",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
|
|
|
predecessors = []*types.MsgEthereumTx{}
|
|
|
|
tmp := sdkmath.NewInt(1)
|
|
|
|
chainID = &tmp
|
|
|
|
},
|
|
|
|
expPass: false,
|
|
|
|
},
|
2021-09-04 20:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = tc.enableFeemarket
|
2021-09-04 20:33:06 +00:00
|
|
|
suite.SetupTest()
|
2021-09-05 11:03:06 +00:00
|
|
|
// Deploy contract
|
2022-07-28 13:43:49 +00:00
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
2021-09-04 20:33:06 +00:00
|
|
|
suite.Commit()
|
2021-09-05 11:03:06 +00:00
|
|
|
// Generate token transfer transaction
|
2022-07-28 13:43:49 +00:00
|
|
|
txMsg = suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
2021-09-04 20:33:06 +00:00
|
|
|
suite.Commit()
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
traceReq := types.QueryTraceTxRequest{
|
2021-11-09 18:38:22 +00:00
|
|
|
Msg: txMsg,
|
|
|
|
TraceConfig: traceConfig,
|
|
|
|
Predecessors: predecessors,
|
2021-09-04 20:33:06 +00:00
|
|
|
}
|
2022-11-30 17:00:19 +00:00
|
|
|
|
|
|
|
if chainID != nil {
|
|
|
|
traceReq.ChainId = chainID.Int64()
|
|
|
|
}
|
2021-11-16 08:57:03 +00:00
|
|
|
res, err := suite.queryClient.TraceTx(sdk.WrapSDKContext(suite.ctx), &traceReq)
|
2021-09-04 20:33:06 +00:00
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
2021-11-16 08:57:03 +00:00
|
|
|
// if data is to big, slice the result
|
|
|
|
if len(res.Data) > 150 {
|
2022-07-18 20:16:28 +00:00
|
|
|
suite.Require().Equal(tc.traceResponse, string(res.Data[:150]))
|
2021-11-16 08:57:03 +00:00
|
|
|
} else {
|
2022-07-18 20:16:28 +00:00
|
|
|
suite.Require().Equal(tc.traceResponse, string(res.Data))
|
|
|
|
}
|
|
|
|
if traceConfig == nil || traceConfig.Tracer == "" {
|
|
|
|
var result ethlogger.ExecutionResult
|
|
|
|
suite.Require().NoError(json.Unmarshal(res.Data, &result))
|
|
|
|
suite.Require().Positive(result.Gas)
|
2021-11-16 08:57:03 +00:00
|
|
|
}
|
2021-09-04 20:33:06 +00:00
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
2022-11-30 17:00:19 +00:00
|
|
|
// Reset for next test case
|
|
|
|
chainID = nil
|
2021-09-04 20:33:06 +00:00
|
|
|
})
|
|
|
|
}
|
2021-10-19 08:49:29 +00:00
|
|
|
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = false // reset flag
|
2021-09-04 20:33:06 +00:00
|
|
|
}
|
2021-11-09 18:38:22 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestTraceBlock() {
|
|
|
|
var (
|
|
|
|
txs []*types.MsgEthereumTx
|
|
|
|
traceConfig *types.TraceConfig
|
2022-11-30 17:00:19 +00:00
|
|
|
chainID *sdkmath.Int
|
2021-11-09 18:38:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
2021-12-28 07:59:28 +00:00
|
|
|
msg string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse string
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket bool
|
2021-11-09 18:38:22 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
msg: "default trace",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
|
|
|
},
|
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PU",
|
2021-11-09 18:38:22 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "filtered trace",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PU",
|
2021-11-17 11:58:52 +00:00
|
|
|
},
|
|
|
|
{
|
2021-11-09 18:38:22 +00:00
|
|
|
msg: "javascript tracer",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
Tracer: "{data: [], fault: function(log) {}, step: function(log) { if(log.op.toString() == \"CALL\") this.data.push(log.stack.peek(0)); }, result: function() { return this.data; }}",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":[]}]",
|
2021-11-09 18:38:22 +00:00
|
|
|
},
|
|
|
|
{
|
2021-12-28 07:59:28 +00:00
|
|
|
msg: "default trace with enableFeemarket and filtered return",
|
2021-11-09 18:38:22 +00:00
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
}
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PU",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: true,
|
2021-11-17 11:58:52 +00:00
|
|
|
},
|
|
|
|
{
|
2021-12-28 07:59:28 +00:00
|
|
|
msg: "javascript tracer with enableFeemarket",
|
2021-11-09 18:38:22 +00:00
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
Tracer: "{data: [], fault: function(log) {}, step: function(log) { if(log.op.toString() == \"CALL\") this.data.push(log.stack.peek(0)); }, result: function() { return this.data; }}",
|
|
|
|
}
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":[]}]",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: true,
|
2021-11-09 18:38:22 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "tracer with multiple transactions",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
2022-01-05 07:28:27 +00:00
|
|
|
|
2021-12-16 22:35:28 +00:00
|
|
|
// increase nonce to avoid address collision
|
2022-01-05 07:28:27 +00:00
|
|
|
vmdb := suite.StateDB()
|
|
|
|
vmdb.SetNonce(suite.address, vmdb.GetNonce(suite.address)+1)
|
|
|
|
suite.Require().NoError(vmdb.Commit())
|
|
|
|
|
2022-07-28 13:43:49 +00:00
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
// create multiple transactions in the same block
|
2022-07-28 13:43:49 +00:00
|
|
|
firstTx := suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
|
|
|
secondTx := suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
// overwrite txs to include only the ones on new block
|
|
|
|
txs = append([]*types.MsgEthereumTx{}, firstTx, secondTx)
|
|
|
|
},
|
2021-12-28 07:59:28 +00:00
|
|
|
expPass: true,
|
2022-07-18 20:16:28 +00:00
|
|
|
traceResponse: "[{\"result\":{\"gas\":34828,\"failed\":false,\"returnValue\":\"0000000000000000000000000000000000000000000000000000000000000001\",\"structLogs\":[{\"pc\":0,\"op\":\"PU",
|
2021-12-28 07:59:28 +00:00
|
|
|
enableFeemarket: false,
|
2021-11-09 18:38:22 +00:00
|
|
|
},
|
2022-10-21 16:59:03 +00:00
|
|
|
{
|
|
|
|
msg: "invalid trace config - Negative Limit",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
Limit: -1,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "invalid trace config - Invalid Tracer",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = &types.TraceConfig{
|
|
|
|
DisableStack: true,
|
|
|
|
DisableStorage: true,
|
|
|
|
EnableMemory: false,
|
|
|
|
Tracer: "invalid_tracer",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
expPass: true,
|
2022-11-30 17:00:19 +00:00
|
|
|
traceResponse: "[{\"error\":\"rpc error: code = Internal desc = tracer not found\"}]",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
msg: "invalid chain id",
|
|
|
|
malleate: func() {
|
|
|
|
traceConfig = nil
|
|
|
|
tmp := sdkmath.NewInt(1)
|
|
|
|
chainID = &tmp
|
|
|
|
},
|
|
|
|
expPass: true,
|
|
|
|
traceResponse: "[{\"error\":\"rpc error: code = Internal desc = invalid chain id for signer\"}]",
|
2022-10-21 16:59:03 +00:00
|
|
|
},
|
2021-11-09 18:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.msg), func() {
|
|
|
|
txs = []*types.MsgEthereumTx{}
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = tc.enableFeemarket
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.SetupTest()
|
|
|
|
// Deploy contract
|
2022-07-28 13:43:49 +00:00
|
|
|
contractAddr := suite.DeployTestContract(suite.T(), suite.address, sdkmath.NewIntWithDecimal(1000, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
// Generate token transfer transaction
|
2022-07-28 13:43:49 +00:00
|
|
|
txMsg := suite.TransferERC20Token(suite.T(), contractAddr, suite.address, common.HexToAddress("0x378c50D9264C63F3F92B806d4ee56E9D86FfB3Ec"), sdkmath.NewIntWithDecimal(1, 18).BigInt())
|
2021-11-09 18:38:22 +00:00
|
|
|
suite.Commit()
|
|
|
|
|
|
|
|
txs = append(txs, txMsg)
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
traceReq := types.QueryTraceBlockRequest{
|
|
|
|
Txs: txs,
|
|
|
|
TraceConfig: traceConfig,
|
|
|
|
}
|
2022-11-30 17:00:19 +00:00
|
|
|
|
|
|
|
if chainID != nil {
|
|
|
|
traceReq.ChainId = chainID.Int64()
|
|
|
|
}
|
|
|
|
|
2021-11-16 08:57:03 +00:00
|
|
|
res, err := suite.queryClient.TraceBlock(sdk.WrapSDKContext(suite.ctx), &traceReq)
|
2021-11-09 18:38:22 +00:00
|
|
|
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NoError(err)
|
2021-11-16 08:57:03 +00:00
|
|
|
// if data is to big, slice the result
|
|
|
|
if len(res.Data) > 150 {
|
2022-07-18 20:16:28 +00:00
|
|
|
suite.Require().Equal(tc.traceResponse, string(res.Data[:150]))
|
2021-11-16 08:57:03 +00:00
|
|
|
} else {
|
2022-07-18 20:16:28 +00:00
|
|
|
suite.Require().Equal(tc.traceResponse, string(res.Data))
|
2021-11-16 08:57:03 +00:00
|
|
|
}
|
2021-11-09 18:38:22 +00:00
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
2022-11-30 17:00:19 +00:00
|
|
|
// Reset for next case
|
|
|
|
chainID = nil
|
2021-11-09 18:38:22 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-28 07:59:28 +00:00
|
|
|
suite.enableFeemarket = false // reset flag
|
2021-11-09 18:38:22 +00:00
|
|
|
}
|
2022-01-04 10:55:30 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestNonceInQuery() {
|
2022-10-21 16:59:03 +00:00
|
|
|
address := tests.GenerateAddress()
|
2022-01-05 07:28:27 +00:00
|
|
|
suite.Require().Equal(uint64(0), suite.app.EvmKeeper.GetNonce(suite.ctx, address))
|
2022-07-28 13:43:49 +00:00
|
|
|
supply := sdkmath.NewIntWithDecimal(1000, 18).BigInt()
|
2022-01-04 10:55:30 +00:00
|
|
|
|
|
|
|
// accupy nonce 0
|
|
|
|
_ = suite.DeployTestContract(suite.T(), address, supply)
|
|
|
|
|
|
|
|
// do an EthCall/EstimateGas with nonce 0
|
|
|
|
ctorArgs, err := types.ERC20Contract.ABI.Pack("", address, supply)
|
2022-11-30 17:00:19 +00:00
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
2022-01-04 10:55:30 +00:00
|
|
|
data := append(types.ERC20Contract.Bin, ctorArgs...)
|
|
|
|
args, err := json.Marshal(&types.TransactionArgs{
|
|
|
|
From: &address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
})
|
|
|
|
suite.Require().NoError(err)
|
2022-10-21 23:58:29 +00:00
|
|
|
proposerAddress := suite.ctx.BlockHeader().ProposerAddress
|
2022-01-04 10:55:30 +00:00
|
|
|
_, err = suite.queryClient.EstimateGas(sdk.WrapSDKContext(suite.ctx), &types.EthCallRequest{
|
2022-10-21 23:58:29 +00:00
|
|
|
Args: args,
|
|
|
|
GasCap: uint64(config.DefaultGasCap),
|
|
|
|
ProposerAddress: proposerAddress,
|
2022-01-04 10:55:30 +00:00
|
|
|
})
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
_, err = suite.queryClient.EthCall(sdk.WrapSDKContext(suite.ctx), &types.EthCallRequest{
|
2022-10-21 23:58:29 +00:00
|
|
|
Args: args,
|
|
|
|
GasCap: uint64(config.DefaultGasCap),
|
|
|
|
ProposerAddress: proposerAddress,
|
2022-01-04 10:55:30 +00:00
|
|
|
})
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
}
|
2022-04-30 16:11:28 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestQueryBaseFee() {
|
|
|
|
var (
|
2022-07-28 13:43:49 +00:00
|
|
|
aux sdkmath.Int
|
2022-04-30 16:11:28 +00:00
|
|
|
expRes *types.QueryBaseFeeResponse
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
enableFeemarket bool
|
|
|
|
enableLondonHF bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"pass - default Base Fee",
|
|
|
|
func() {
|
2022-07-28 13:43:49 +00:00
|
|
|
initialBaseFee := sdkmath.NewInt(ethparams.InitialBaseFee)
|
2022-04-30 16:11:28 +00:00
|
|
|
expRes = &types.QueryBaseFeeResponse{BaseFee: &initialBaseFee}
|
|
|
|
},
|
|
|
|
true, true, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"pass - non-nil Base Fee",
|
|
|
|
func() {
|
|
|
|
baseFee := sdk.OneInt().BigInt()
|
|
|
|
suite.app.FeeMarketKeeper.SetBaseFee(suite.ctx, baseFee)
|
|
|
|
|
2022-07-28 13:43:49 +00:00
|
|
|
aux = sdkmath.NewIntFromBigInt(baseFee)
|
2022-04-30 16:11:28 +00:00
|
|
|
expRes = &types.QueryBaseFeeResponse{BaseFee: &aux}
|
|
|
|
},
|
|
|
|
true, true, true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"pass - nil Base Fee when london hardfork not activated",
|
|
|
|
func() {
|
|
|
|
baseFee := sdk.OneInt().BigInt()
|
|
|
|
suite.app.FeeMarketKeeper.SetBaseFee(suite.ctx, baseFee)
|
|
|
|
|
|
|
|
expRes = &types.QueryBaseFeeResponse{}
|
|
|
|
},
|
|
|
|
true, true, false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"pass - zero Base Fee when feemarket not activated",
|
|
|
|
func() {
|
|
|
|
baseFee := sdk.ZeroInt()
|
|
|
|
expRes = &types.QueryBaseFeeResponse{BaseFee: &baseFee}
|
|
|
|
},
|
|
|
|
true, false, true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(tc.name, func() {
|
|
|
|
suite.enableFeemarket = tc.enableFeemarket
|
|
|
|
suite.enableLondonHF = tc.enableLondonHF
|
|
|
|
suite.SetupTest()
|
|
|
|
|
|
|
|
tc.malleate()
|
|
|
|
|
|
|
|
res, err := suite.queryClient.BaseFee(suite.ctx.Context(), &types.QueryBaseFeeRequest{})
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
suite.Require().Equal(expRes, res, tc.name)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
suite.enableFeemarket = false
|
|
|
|
suite.enableLondonHF = true
|
|
|
|
}
|
2022-10-21 16:59:03 +00:00
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestEthCall() {
|
|
|
|
var (
|
|
|
|
req *types.EthCallRequest
|
|
|
|
)
|
|
|
|
|
|
|
|
address := tests.GenerateAddress()
|
|
|
|
suite.Require().Equal(uint64(0), suite.app.EvmKeeper.GetNonce(suite.ctx, address))
|
|
|
|
supply := sdkmath.NewIntWithDecimal(1000, 18).BigInt()
|
|
|
|
|
|
|
|
hexBigInt := hexutil.Big(*big.NewInt(1))
|
|
|
|
ctorArgs, err := types.ERC20Contract.ABI.Pack("", address, supply)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
data := append(types.ERC20Contract.Bin, ctorArgs...)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
malleate func()
|
|
|
|
expPass bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"invalid args",
|
|
|
|
func() {
|
|
|
|
req = &types.EthCallRequest{Args: []byte("invalid args"), GasCap: uint64(config.DefaultGasCap)}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"invalid args - specified both gasPrice and maxFeePerGas",
|
|
|
|
func() {
|
|
|
|
args, err := json.Marshal(&types.TransactionArgs{
|
|
|
|
From: &address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
GasPrice: &hexBigInt,
|
|
|
|
MaxFeePerGas: &hexBigInt,
|
|
|
|
})
|
|
|
|
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
req = &types.EthCallRequest{Args: args, GasCap: uint64(config.DefaultGasCap)}
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"set param EnableCreate = false",
|
|
|
|
func() {
|
|
|
|
args, err := json.Marshal(&types.TransactionArgs{
|
|
|
|
From: &address,
|
|
|
|
Data: (*hexutil.Bytes)(&data),
|
|
|
|
})
|
|
|
|
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
req = &types.EthCallRequest{Args: args, GasCap: uint64(config.DefaultGasCap)}
|
|
|
|
|
|
|
|
params := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
|
|
params.EnableCreate = false
|
|
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
|
|
},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(tc.name, func() {
|
|
|
|
suite.SetupTest()
|
|
|
|
tc.malleate()
|
|
|
|
|
|
|
|
res, err := suite.queryClient.EthCall(suite.ctx, req)
|
|
|
|
if tc.expPass {
|
|
|
|
suite.Require().NotNil(res)
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
} else {
|
|
|
|
suite.Require().Error(err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *KeeperTestSuite) TestEmptyRequest() {
|
|
|
|
k := suite.app.EvmKeeper
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
queryFunc func() (interface{}, error)
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"Account method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.Account(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"CosmosAccount method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.CosmosAccount(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ValidatorAccount method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.ValidatorAccount(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Balance method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.Balance(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Storage method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.Storage(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Code method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.Code(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"EthCall method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.EthCall(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"EstimateGas method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.EstimateGas(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"TraceTx method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.TraceTx(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"TraceBlock method",
|
|
|
|
func() (interface{}, error) {
|
|
|
|
return k.TraceBlock(suite.ctx, nil)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
suite.Run(fmt.Sprintf("Case %s", tc.name), func() {
|
|
|
|
suite.SetupTest()
|
|
|
|
_, err := tc.queryFunc()
|
|
|
|
suite.Require().Error(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|