mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
package antiquary
|
|
|
|
import (
|
|
"context"
|
|
_ "embed"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/common/datadir"
|
|
"github.com/ledgerwatch/erigon-lib/kv/memdb"
|
|
"github.com/ledgerwatch/erigon/cl/antiquary/tests"
|
|
"github.com/ledgerwatch/erigon/cl/clparams"
|
|
"github.com/ledgerwatch/erigon/cl/cltypes"
|
|
state_accessors "github.com/ledgerwatch/erigon/cl/persistence/state"
|
|
"github.com/ledgerwatch/erigon/cl/phase1/core/state"
|
|
"github.com/ledgerwatch/log/v3"
|
|
"github.com/spf13/afero"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func runTest(t *testing.T, blocks []*cltypes.SignedBeaconBlock, preState, postState *state.CachingBeaconState) {
|
|
db := memdb.NewTestDB(t)
|
|
reader, _ := tests.LoadChain(blocks, postState, db, t)
|
|
|
|
ctx := context.Background()
|
|
vt := state_accessors.NewStaticValidatorTable()
|
|
f := afero.NewMemMapFs()
|
|
a := NewAntiquary(ctx, preState, vt, &clparams.MainnetBeaconConfig, datadir.New("/tmp"), nil, db, nil, reader, nil, log.New(), true, true, f)
|
|
require.NoError(t, a.IncrementBeaconState(ctx, blocks[len(blocks)-1].Block.Slot+33))
|
|
// TODO: add more meaning here, like checking db values, will do so once i see some bugs
|
|
}
|
|
|
|
func TestStateAntiquaryCapella(t *testing.T) {
|
|
t.Skip("TODO: oom")
|
|
blocks, preState, postState := tests.GetCapellaRandom()
|
|
runTest(t, blocks, preState, postState)
|
|
}
|
|
|
|
func TestStateAntiquaryBellatrix(t *testing.T) {
|
|
blocks, preState, postState := tests.GetBellatrixRandom()
|
|
runTest(t, blocks, preState, postState)
|
|
}
|
|
|
|
func TestStateAntiquaryPhase0(t *testing.T) {
|
|
blocks, preState, postState := tests.GetPhase0Random()
|
|
runTest(t, blocks, preState, postState)
|
|
}
|