forked from cerc-io/laconicd-deprecated
5879750b30
* evm.InitGenesis skip codehash check when the code has been deleted in the evm state * fix lint * just ignore all the codehash check when the evm account code is empty * update changelog * nit * add test * add test Co-authored-by: Daniel Burckhardt <daniel.m.burckhardt@gmail.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
165 lines
3.5 KiB
Go
165 lines
3.5 KiB
Go
package evm_test
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
"github.com/evmos/ethermint/crypto/ethsecp256k1"
|
|
etherminttypes "github.com/evmos/ethermint/types"
|
|
"github.com/evmos/ethermint/x/evm"
|
|
"github.com/evmos/ethermint/x/evm/statedb"
|
|
"github.com/evmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
func (suite *EvmTestSuite) TestInitGenesis() {
|
|
privkey, err := ethsecp256k1.GenerateKey()
|
|
suite.Require().NoError(err)
|
|
|
|
address := common.HexToAddress(privkey.PubKey().Address().String())
|
|
|
|
var vmdb *statedb.StateDB
|
|
|
|
testCases := []struct {
|
|
name string
|
|
malleate func()
|
|
genState *types.GenesisState
|
|
expPanic bool
|
|
}{
|
|
{
|
|
"default",
|
|
func() {},
|
|
types.DefaultGenesisState(),
|
|
false,
|
|
},
|
|
{
|
|
"valid account",
|
|
func() {
|
|
vmdb.AddBalance(address, big.NewInt(1))
|
|
},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
Storage: types.Storage{
|
|
{Key: common.BytesToHash([]byte("key")).String(), Value: common.BytesToHash([]byte("value")).String()},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
"account not found",
|
|
func() {},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid account type",
|
|
func() {
|
|
acc := authtypes.NewBaseAccountWithAddress(address.Bytes())
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"invalid code hash",
|
|
func() {
|
|
acc := suite.app.AccountKeeper.NewAccountWithAddress(suite.ctx, address.Bytes())
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
Code: "ffffffff",
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"ignore empty account code checking",
|
|
func() {
|
|
acc := suite.app.AccountKeeper.NewAccountWithAddress(suite.ctx, address.Bytes())
|
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, acc)
|
|
},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
Code: "",
|
|
},
|
|
},
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
"ignore empty account code checking with non-empty codehash",
|
|
func() {
|
|
ethAcc := ðerminttypes.EthAccount{
|
|
BaseAccount: authtypes.NewBaseAccount(address.Bytes(), nil, 0, 0),
|
|
CodeHash: common.BytesToHash([]byte{1, 2, 3}).Hex(),
|
|
}
|
|
|
|
suite.app.AccountKeeper.SetAccount(suite.ctx, ethAcc)
|
|
},
|
|
&types.GenesisState{
|
|
Params: types.DefaultParams(),
|
|
Accounts: []types.GenesisAccount{
|
|
{
|
|
Address: address.String(),
|
|
Code: "",
|
|
},
|
|
},
|
|
},
|
|
false,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(tc.name, func() {
|
|
suite.SetupTest() // reset values
|
|
vmdb = suite.StateDB()
|
|
|
|
tc.malleate()
|
|
vmdb.Commit()
|
|
|
|
if tc.expPanic {
|
|
suite.Require().Panics(
|
|
func() {
|
|
_ = evm.InitGenesis(suite.ctx, suite.app.EvmKeeper, suite.app.AccountKeeper, *tc.genState)
|
|
},
|
|
)
|
|
} else {
|
|
suite.Require().NotPanics(
|
|
func() {
|
|
_ = evm.InitGenesis(suite.ctx, suite.app.EvmKeeper, suite.app.AccountKeeper, *tc.genState)
|
|
},
|
|
)
|
|
}
|
|
})
|
|
}
|
|
}
|