forked from cerc-io/laconicd-deprecated
4f48176298
* refactor(params): store all params under one key in evm module (#1617) * refactor(params): store all params under one key in evm module * refactor(params): add changelog entry * refactor(params): update based on review comments. Remove params getter functions * refactor(params): refactor params store key * refactor(params): remove unnecessary store keys * refactor(params): add paramSetPairs for backwards compatibility * Update CHANGELOG.md * refactor(params): add license to params_legacy file * Apply suggestions from code review * fix(evm): handle RC1 params during migration (#1624) * fix(evm): handle RC1 params during migration * migration * fix: test case updated for RC1 * v5 migration * tests * tests pt2 * comment * execute make proto-all Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com> Co-authored-by: MalteHerrmann <malte@evmos.org> * Apply suggestions from code review * rm dup vars Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com> Co-authored-by: MalteHerrmann <malte@evmos.org> (cherry picked from commit f07b14f1c409a6b738a0fadb50c9ba47d56cb821) # Conflicts: # CHANGELOG.md * update changelog Co-authored-by: Tomas Guerra <54514587+GAtom22@users.noreply.github.com> Co-authored-by: MalteHerrmann <42640438+MalteHerrmann@users.noreply.github.com> Co-authored-by: MalteHerrmann <malte@evmos.org>
101 lines
2.6 KiB
Go
101 lines
2.6 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/evmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
func (suite *KeeperTestSuite) TestParams() {
|
|
params := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
testCases := []struct {
|
|
name string
|
|
paramsFun func() interface{}
|
|
getFun func() interface{}
|
|
expected bool
|
|
}{
|
|
{
|
|
"success - Checks if the default params are set correctly",
|
|
func() interface{} {
|
|
return types.DefaultParams()
|
|
},
|
|
func() interface{} {
|
|
return suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success - EvmDenom param is set to \"inj\" and can be retrieved correctly",
|
|
func() interface{} {
|
|
params.EvmDenom = "inj"
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
return params.EvmDenom
|
|
},
|
|
func() interface{} {
|
|
evmParams := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
return evmParams.GetEvmDenom()
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success - Check EnableCreate param is set to false and can be retrieved correctly",
|
|
func() interface{} {
|
|
params.EnableCreate = false
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
return params.EnableCreate
|
|
},
|
|
func() interface{} {
|
|
evmParams := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
return evmParams.GetEnableCreate()
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success - Check EnableCall param is set to false and can be retrieved correctly",
|
|
func() interface{} {
|
|
params.EnableCall = false
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
return params.EnableCall
|
|
},
|
|
func() interface{} {
|
|
evmParams := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
return evmParams.GetEnableCall()
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success - Check AllowUnprotectedTxs param is set to false and can be retrieved correctly",
|
|
func() interface{} {
|
|
params.AllowUnprotectedTxs = false
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
return params.AllowUnprotectedTxs
|
|
},
|
|
func() interface{} {
|
|
evmParams := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
return evmParams.GetAllowUnprotectedTxs()
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"success - Check ChainConfig param is set to the default value and can be retrieved correctly",
|
|
func() interface{} {
|
|
params.ChainConfig = types.DefaultChainConfig()
|
|
suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
return params.ChainConfig
|
|
},
|
|
func() interface{} {
|
|
evmParams := suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
return evmParams.GetChainConfig()
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
suite.Run(tc.name, func() {
|
|
outcome := reflect.DeepEqual(tc.paramsFun(), tc.getFun())
|
|
suite.Require().Equal(tc.expected, outcome)
|
|
})
|
|
}
|
|
}
|