forked from cerc-io/laconicd-deprecated
9e5f4aaa73
* test: add preliminary unit tests and additional mocks for chain_info, account_info and filters * tests: added additional mocked client calls * tests: bumped coverage of call_tx to 56% and chain_info to 77% * tests: bumped call_tx coverage to 70.2% and added additional mock client calls * tests: tx_info preliminary tests added for debugging. * tests: added test coverage for sign_tx and additional mocks * tests: tx_info test coverage bumped to 60.3% * test: coverage for tracing_tests now at 72% * tests: added fee makert query client mocks and bumped chain_info to 87.6% coverage. * tests: failing Cosmos auth module account query. * tests: added FeeMarket Params mock to call_tx_test * cleanup some unused code * tests: added helper function to test suite for signing a Tx and bumped coverage of tx_info to 71.2% * test: commented GetAccount error case and bumped chain_info to 90.3% coverage * test: cleanup of tests in node_info, sign_tx and account_info * Clean up print Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * Apply suggestions from code review * fix import issues Co-authored-by: Vladislav Varadinov <vlad@evmos.org> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Freddy Caceres <facs95@gmail.com>
356 lines
8.7 KiB
Go
356 lines
8.7 KiB
Go
package backend
|
|
|
|
import (
|
|
"fmt"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"github.com/evmos/ethermint/crypto/ethsecp256k1"
|
|
"github.com/evmos/ethermint/rpc/backend/mocks"
|
|
ethermint "github.com/evmos/ethermint/types"
|
|
"github.com/spf13/viper"
|
|
tmrpcclient "github.com/tendermint/tendermint/rpc/client"
|
|
"math/big"
|
|
)
|
|
|
|
func (suite *BackendTestSuite) TestRPCMinGasPrice() {
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
expMinGasPrice int64
|
|
expPass bool
|
|
}{
|
|
{
|
|
"pass - default gas price",
|
|
func() {
|
|
queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient)
|
|
RegisterParamsWithoutHeaderError(queryClient, 1)
|
|
},
|
|
ethermint.DefaultGasPrice,
|
|
true,
|
|
},
|
|
{
|
|
"pass - min gas price is 0",
|
|
func() {
|
|
queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient)
|
|
RegisterParamsWithoutHeader(queryClient, 1)
|
|
},
|
|
ethermint.DefaultGasPrice,
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
minPrice := suite.backend.RPCMinGasPrice()
|
|
if tc.expPass {
|
|
suite.Require().Equal(tc.expMinGasPrice, minPrice)
|
|
} else {
|
|
suite.Require().NotEqual(tc.expMinGasPrice, minPrice)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *BackendTestSuite) TestSetGasPrice() {
|
|
defaultGasPrice := (*hexutil.Big)(big.NewInt(1))
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
gasPrice hexutil.Big
|
|
expOutput bool
|
|
}{
|
|
{
|
|
"pass - cannot get server config",
|
|
func() {
|
|
suite.backend.clientCtx.Viper = viper.New()
|
|
},
|
|
*defaultGasPrice,
|
|
false,
|
|
},
|
|
{
|
|
"pass - cannot find coin denom",
|
|
func() {
|
|
suite.backend.clientCtx.Viper = viper.New()
|
|
suite.backend.clientCtx.Viper.Set("telemetry.global-labels", []interface{}{})
|
|
},
|
|
*defaultGasPrice,
|
|
false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
output := suite.backend.SetGasPrice(tc.gasPrice)
|
|
suite.Require().Equal(tc.expOutput, output)
|
|
})
|
|
}
|
|
}
|
|
|
|
// TODO: Combine these 2 into one test since the code is identical
|
|
func (suite *BackendTestSuite) TestListAccounts() {
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
expAddr []common.Address
|
|
expPass bool
|
|
}{
|
|
{
|
|
"pass - returns empty address",
|
|
func() {},
|
|
[]common.Address{},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
output, err := suite.backend.ListAccounts()
|
|
|
|
if tc.expPass {
|
|
suite.Require().NoError(err)
|
|
suite.Require().Equal(tc.expAddr, output)
|
|
} else {
|
|
suite.Require().Error(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *BackendTestSuite) TestAccounts() {
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
expAddr []common.Address
|
|
expPass bool
|
|
}{
|
|
{
|
|
"pass - returns empty address",
|
|
func() {},
|
|
[]common.Address{},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
output, err := suite.backend.Accounts()
|
|
|
|
if tc.expPass {
|
|
suite.Require().NoError(err)
|
|
suite.Require().Equal(tc.expAddr, output)
|
|
} else {
|
|
suite.Require().Error(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *BackendTestSuite) TestSyncing() {
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
expResponse interface{}
|
|
expPass bool
|
|
}{
|
|
{
|
|
"fail - Can't get status",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
RegisterStatusError(client)
|
|
},
|
|
false,
|
|
false,
|
|
},
|
|
{
|
|
"pass - Node not catching up",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
RegisterStatus(client)
|
|
},
|
|
false,
|
|
true,
|
|
},
|
|
{
|
|
"pass - Node is catching up",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
RegisterStatus(client)
|
|
status, _ := client.Status(suite.backend.ctx)
|
|
status.SyncInfo.CatchingUp = true
|
|
|
|
},
|
|
map[string]interface{}{
|
|
"startingBlock": hexutil.Uint64(0),
|
|
"currentBlock": hexutil.Uint64(0),
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
output, err := suite.backend.Syncing()
|
|
|
|
if tc.expPass {
|
|
suite.Require().NoError(err)
|
|
suite.Require().Equal(tc.expResponse, output)
|
|
} else {
|
|
suite.Require().Error(err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *BackendTestSuite) TestSetEtherbase() {
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
etherbase common.Address
|
|
expResult bool
|
|
}{
|
|
{
|
|
"pass - Failed to get coinbase address",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
RegisterStatusError(client)
|
|
},
|
|
common.Address{},
|
|
false,
|
|
},
|
|
{
|
|
"pass - the minimum fee is not set",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient)
|
|
RegisterStatus(client)
|
|
RegisterValidatorAccount(queryClient, suite.acc)
|
|
},
|
|
common.Address{},
|
|
false,
|
|
},
|
|
{
|
|
"fail - error querying for account ",
|
|
func() {
|
|
client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient)
|
|
RegisterStatus(client)
|
|
RegisterValidatorAccount(queryClient, suite.acc)
|
|
c := sdk.NewDecCoin("aphoton", sdk.NewIntFromBigInt(big.NewInt(1)))
|
|
suite.backend.cfg.SetMinGasPrices(sdk.DecCoins{c})
|
|
delAddr, _ := suite.backend.GetCoinbase()
|
|
//account, _ := suite.backend.clientCtx.AccountRetriever.GetAccount(suite.backend.clientCtx, delAddr)
|
|
delCommonAddr := common.BytesToAddress(delAddr.Bytes())
|
|
request := &authtypes.QueryAccountRequest{Address: sdk.AccAddress(delCommonAddr.Bytes()).String()}
|
|
requestMarshal, _ := request.Marshal()
|
|
RegisterABCIQueryWithOptionsError(
|
|
client,
|
|
"/cosmos.auth.v1beta1.Query/Account",
|
|
requestMarshal,
|
|
tmrpcclient.ABCIQueryOptions{Height: int64(1), Prove: false},
|
|
)
|
|
},
|
|
common.Address{},
|
|
false,
|
|
},
|
|
// TODO: Finish this test case once ABCIQuery GetAccount is fixed
|
|
//{
|
|
// "pass - set the etherbase for the miner",
|
|
// func() {
|
|
// client := suite.backend.clientCtx.Client.(*mocks.Client)
|
|
// queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient)
|
|
// RegisterStatus(client)
|
|
// RegisterValidatorAccount(queryClient, suite.acc)
|
|
// c := sdk.NewDecCoin("aphoton", sdk.NewIntFromBigInt(big.NewInt(1)))
|
|
// suite.backend.cfg.SetMinGasPrices(sdk.DecCoins{c})
|
|
// delAddr, _ := suite.backend.GetCoinbase()
|
|
// account, _ := suite.backend.clientCtx.AccountRetriever.GetAccount(suite.backend.clientCtx, delAddr)
|
|
// delCommonAddr := common.BytesToAddress(delAddr.Bytes())
|
|
// request := &authtypes.QueryAccountRequest{Address: sdk.AccAddress(delCommonAddr.Bytes()).String()}
|
|
// requestMarshal, _ := request.Marshal()
|
|
// RegisterABCIQueryAccount(
|
|
// client,
|
|
// requestMarshal,
|
|
// tmrpcclient.ABCIQueryOptions{Height: int64(1), Prove: false},
|
|
// account,
|
|
// )
|
|
// },
|
|
// common.Address{},
|
|
// false,
|
|
//},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
output := suite.backend.SetEtherbase(tc.etherbase)
|
|
|
|
suite.Require().Equal(tc.expResult, output)
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *BackendTestSuite) TestImportRawKey() {
|
|
priv, _ := ethsecp256k1.GenerateKey()
|
|
privHex := common.Bytes2Hex(priv.Bytes())
|
|
pubAddr := common.BytesToAddress(priv.PubKey().Address().Bytes())
|
|
|
|
testCases := []struct {
|
|
name string
|
|
registerMock func()
|
|
privKey string
|
|
password string
|
|
expAddr common.Address
|
|
expPass bool
|
|
}{
|
|
{
|
|
"fail - not a valid private key",
|
|
func() {},
|
|
"",
|
|
"",
|
|
common.Address{},
|
|
false,
|
|
},
|
|
{
|
|
"pass - returning correct address",
|
|
func() {},
|
|
privHex,
|
|
"",
|
|
pubAddr,
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(fmt.Sprintf("case %s", tc.name), func() {
|
|
suite.SetupTest() // reset test and queries
|
|
tc.registerMock()
|
|
|
|
output, err := suite.backend.ImportRawKey(tc.privKey, tc.password)
|
|
if tc.expPass {
|
|
suite.Require().NoError(err)
|
|
suite.Require().Equal(tc.expAddr, output)
|
|
} else {
|
|
suite.Require().Error(err)
|
|
}
|
|
})
|
|
}
|
|
}
|