tests(evm): add benchmark tests setup for params (#1623) (#1627)

* tests: add benchmark tests setup

* fix: localized benchmark tests to keeper

* update benchmark

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
(cherry picked from commit 9305788d885ed16df9ece06daef4193ecd9df1f5)

Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
This commit is contained in:
mergify[bot] 2023-01-23 18:40:27 +00:00 committed by GitHub
parent 64e80be8ee
commit 00b0d4411f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"encoding/json"
"math"
"math/big"
"os"
"testing"
"time"
@ -77,6 +78,9 @@ type KeeperTestSuite struct {
var s *KeeperTestSuite
func TestKeeperTestSuite(t *testing.T) {
if os.Getenv("benchmark") != "" {
t.Skip("Skipping Gingko Test")
}
s = new(KeeperTestSuite)
s.enableFeemarket = false
s.enableLondonHF = true

View File

@ -0,0 +1,30 @@
package keeper_test
import (
"testing"
"github.com/evmos/ethermint/x/evm/types"
)
func BenchmarkSetParams(b *testing.B) {
suite := KeeperTestSuite{}
suite.SetupTestWithT(b)
params := types.DefaultParams()
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = suite.app.EvmKeeper.SetParams(suite.ctx, params)
}
}
func BenchmarkGetParams(b *testing.B) {
suite := KeeperTestSuite{}
suite.SetupTestWithT(b)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = suite.app.EvmKeeper.GetParams(suite.ctx)
}
}