erigon-pulse/tests/state_test.go

104 lines
3.0 KiB
Go
Raw Permalink Normal View History

// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
2015-07-07 00:54:22 +00:00
//
// The go-ethereum library is free software: you can redistribute it and/or modify
2015-07-07 00:54:22 +00:00
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
2015-07-07 00:54:22 +00:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-07-07 00:54:22 +00:00
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
2015-07-07 00:54:22 +00:00
//go:build integration
2015-06-10 16:04:56 +00:00
package tests
2015-06-10 16:34:38 +00:00
import (
"bufio"
"bytes"
"context"
"fmt"
"reflect"
2021-05-20 16:46:12 +00:00
"runtime"
2015-06-10 16:34:38 +00:00
"testing"
2023-06-14 03:01:00 +00:00
"github.com/ledgerwatch/erigon-lib/common/datadir"
2023-10-25 13:08:50 +00:00
"github.com/ledgerwatch/erigon/core/state/temporal"
2023-06-14 03:01:00 +00:00
"github.com/ledgerwatch/log/v3"
"github.com/ledgerwatch/erigon/core/vm"
"github.com/ledgerwatch/erigon/eth/tracers/logger"
2015-06-10 16:34:38 +00:00
)
func TestState(t *testing.T) {
defer log.Root().SetHandler(log.Root().GetHandler())
log.Root().SetHandler(log.LvlFilterHandler(log.LvlError, log.StderrHandler))
2023-10-25 13:08:50 +00:00
if runtime.GOOS == "windows" {
t.Skip("fix me on win please") // it's too slow on win and stops on macos, need generally improve speed of this tests
2021-05-20 16:46:12 +00:00
}
//t.Parallel()
st := new(testMatcher)
// Very time consuming
st.skipLoad(`^stTimeConsuming/`)
st.skipLoad(`.*vmPerformance/loop.*`)
2023-10-25 13:08:50 +00:00
_, db, _ := temporal.NewTestDB(t, datadir.New(t.TempDir()), nil)
st.walk(t, stateTestDir, func(t *testing.T, name string, test *StateTest) {
for _, subtest := range test.Subtests() {
subtest := subtest
key := fmt.Sprintf("%s/%d", subtest.Fork, subtest.Index)
t.Run(key, func(t *testing.T) {
withTrace(t, func(vmconfig vm.Config) error {
tx, err := db.BeginRw(context.Background())
if err != nil {
t.Fatal(err)
}
defer tx.Rollback()
_, err = test.Run(tx, subtest, vmconfig)
tx.Rollback()
if err != nil && len(test.json.Post[subtest.Fork][subtest.Index].ExpectException) > 0 {
// Ignore expected errors
return nil
}
return st.checkFailure(t, err)
})
})
}
})
2016-10-31 10:32:05 +00:00
}
func withTrace(t *testing.T, test func(vm.Config) error) {
// Use config from command line arguments.
config := vm.Config{}
err := test(config)
if err == nil {
return
2016-10-31 10:32:05 +00:00
}
// Test failed, re-run with tracing enabled.
t.Error(err)
buf := new(bytes.Buffer)
w := bufio.NewWriter(buf)
tracer := logger.NewJSONLogger(&logger.LogConfig{DisableMemory: true}, w)
config.Debug, config.Tracer = true, tracer
err2 := test(config)
if !reflect.DeepEqual(err, err2) {
t.Errorf("different error for second run: %v", err2)
2016-10-31 10:32:05 +00:00
}
w.Flush()
if buf.Len() == 0 {
t.Log("no EVM operation logs generated")
} else {
t.Log("EVM operation log:\n" + buf.String())
2016-10-31 10:32:05 +00:00
}
//t.Logf("EVM output: 0x%x", tracer.Output())
//t.Logf("EVM error: %v", tracer.Error())
2016-10-31 10:32:05 +00:00
}