mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
165 lines
5.8 KiB
Go
165 lines
5.8 KiB
Go
package forkchoice
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/execution"
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/state"
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/interfaces"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
type Builder struct {
|
|
service *blockchain.Service
|
|
lastTick int64
|
|
execMock *engineMock
|
|
}
|
|
|
|
func NewBuilder(t testing.TB, initialState state.BeaconState, initialBlock interfaces.ReadOnlySignedBeaconBlock) *Builder {
|
|
execMock := &engineMock{
|
|
powBlocks: make(map[[32]byte]*ethpb.PowBlock),
|
|
}
|
|
service := startChainService(t, initialState, initialBlock, execMock)
|
|
return &Builder{
|
|
service: service,
|
|
execMock: execMock,
|
|
}
|
|
}
|
|
|
|
// Tick resets the genesis time to now()-tick and adjusts the slot to the appropriate value.
|
|
func (bb *Builder) Tick(t testing.TB, tick int64) {
|
|
bb.service.SetGenesisTime(time.Unix(time.Now().Unix()-tick, 0))
|
|
lastSlot := uint64(bb.lastTick) / params.BeaconConfig().SecondsPerSlot
|
|
currentSlot := uint64(tick) / params.BeaconConfig().SecondsPerSlot
|
|
for lastSlot < currentSlot {
|
|
lastSlot++
|
|
bb.service.SetForkChoiceGenesisTime(uint64(time.Now().Unix() - int64(params.BeaconConfig().SecondsPerSlot*lastSlot)))
|
|
require.NoError(t, bb.service.NewSlot(context.TODO(), primitives.Slot(lastSlot)))
|
|
}
|
|
if tick > int64(params.BeaconConfig().SecondsPerSlot*lastSlot) {
|
|
bb.service.SetForkChoiceGenesisTime(uint64(time.Now().Unix() - tick))
|
|
}
|
|
bb.lastTick = tick
|
|
}
|
|
|
|
// SetPayloadStatus sets the payload status that the engine will return
|
|
func (bb *Builder) SetPayloadStatus(resp *MockEngineResp) error {
|
|
if resp == nil {
|
|
return errors.New("invalid nil payload status")
|
|
}
|
|
if resp.LatestValidHash == nil {
|
|
bb.execMock.latestValidHash = common.FromHex("0x0000000000000000000000000000000000000000000000000000000000000000")
|
|
} else {
|
|
bb.execMock.latestValidHash = common.FromHex(*resp.LatestValidHash)
|
|
}
|
|
if resp.Status == nil {
|
|
return errors.New("invalid nil status")
|
|
}
|
|
switch *resp.Status {
|
|
case "SYNCING":
|
|
bb.execMock.payloadStatus = execution.ErrAcceptedSyncingPayloadStatus
|
|
case "VALID":
|
|
bb.execMock.payloadStatus = nil
|
|
case "INVALID":
|
|
bb.execMock.payloadStatus = execution.ErrInvalidPayloadStatus
|
|
default:
|
|
return errors.New("unknown payload status")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// block returns the block root.
|
|
func (bb *Builder) block(t testing.TB, b interfaces.ReadOnlySignedBeaconBlock) [32]byte {
|
|
r, err := b.Block().HashTreeRoot()
|
|
require.NoError(t, err)
|
|
return r
|
|
}
|
|
|
|
// InvalidBlock receives the invalid block and notifies forkchoice.
|
|
func (bb *Builder) InvalidBlock(t testing.TB, b interfaces.ReadOnlySignedBeaconBlock) {
|
|
r := bb.block(t, b)
|
|
ctx, cancel := context.WithTimeout(context.TODO(), time.Duration(params.BeaconConfig().SecondsPerSlot)*time.Second)
|
|
defer cancel()
|
|
require.Equal(t, true, bb.service.ReceiveBlock(ctx, b, r, nil) != nil)
|
|
}
|
|
|
|
// ValidBlock receives the valid block and notifies forkchoice.
|
|
func (bb *Builder) ValidBlock(t testing.TB, b interfaces.ReadOnlySignedBeaconBlock) {
|
|
r := bb.block(t, b)
|
|
ctx, cancel := context.WithTimeout(context.TODO(), time.Duration(params.BeaconConfig().SecondsPerSlot)*time.Second)
|
|
defer cancel()
|
|
require.NoError(t, bb.service.ReceiveBlock(ctx, b, r, nil))
|
|
}
|
|
|
|
// PoWBlock receives the block and notifies a mocked execution engine.
|
|
func (bb *Builder) PoWBlock(pb *ethpb.PowBlock) {
|
|
bb.execMock.powBlocks[bytesutil.ToBytes32(pb.BlockHash)] = pb
|
|
}
|
|
|
|
// Attestation receives the attestation and updates forkchoice.
|
|
func (bb *Builder) Attestation(t testing.TB, a *ethpb.Attestation) {
|
|
require.NoError(t, bb.service.OnAttestation(context.TODO(), a, params.BeaconConfig().MaximumGossipClockDisparityDuration()))
|
|
}
|
|
|
|
// AttesterSlashing receives an attester slashing and feeds it to forkchoice.
|
|
func (bb *Builder) AttesterSlashing(s *ethpb.AttesterSlashing) {
|
|
slashings := []*ethpb.AttesterSlashing{s}
|
|
bb.service.InsertSlashingsToForkChoiceStore(context.TODO(), slashings)
|
|
}
|
|
|
|
// Check evaluates the fork choice results and compares them to the expected values.
|
|
func (bb *Builder) Check(t testing.TB, c *Check) {
|
|
if c == nil {
|
|
return
|
|
}
|
|
ctx := context.TODO()
|
|
require.NoError(t, bb.service.UpdateAndSaveHeadWithBalances(ctx))
|
|
if c.Head != nil {
|
|
r, err := bb.service.HeadRoot(ctx)
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, common.FromHex(c.Head.Root), r)
|
|
require.Equal(t, primitives.Slot(c.Head.Slot), bb.service.HeadSlot())
|
|
}
|
|
if c.JustifiedCheckPoint != nil {
|
|
cp := ðpb.Checkpoint{
|
|
Epoch: primitives.Epoch(c.JustifiedCheckPoint.Epoch),
|
|
Root: common.FromHex(c.JustifiedCheckPoint.Root),
|
|
}
|
|
got := bb.service.CurrentJustifiedCheckpt()
|
|
require.DeepEqual(t, cp, got)
|
|
}
|
|
if c.FinalizedCheckPoint != nil {
|
|
cp := ðpb.Checkpoint{
|
|
Epoch: primitives.Epoch(c.FinalizedCheckPoint.Epoch),
|
|
Root: common.FromHex(c.FinalizedCheckPoint.Root),
|
|
}
|
|
got := bb.service.FinalizedCheckpt()
|
|
require.DeepSSZEqual(t, cp, got)
|
|
}
|
|
if c.ProposerBoostRoot != nil {
|
|
want := fmt.Sprintf("%#x", common.FromHex(*c.ProposerBoostRoot))
|
|
got := fmt.Sprintf("%#x", bb.service.ProposerBoost())
|
|
require.DeepEqual(t, want, got)
|
|
}
|
|
if c.GetProposerHead != nil {
|
|
want := fmt.Sprintf("%#x", common.FromHex(*c.GetProposerHead))
|
|
got := fmt.Sprintf("%#x", bb.service.GetProposerHead())
|
|
require.DeepEqual(t, want, got)
|
|
}
|
|
/* TODO: We need to mock the entire proposer system to be able to test this.
|
|
if c.ShouldOverrideFCU != nil {
|
|
require.DeepEqual(t, c.ShouldOverrideFCU.Result, bb.service.ShouldOverrideFCU())
|
|
}
|
|
*/
|
|
}
|