prysm-pulse/testing/endtoend/evaluators/execution_engine.go
Radosław Kapka 6e0715e92a
HTTP Beacon APIs for blocks (#13048)
* handlers

* blinded block handlers and protos

* revert SSZ and register endpoints

* remove vars

* e2e

* handler for v1 endpoint

* tests

* register GetBlock

* disable security linter

* remove unused structs

* more review comments
2023-10-18 15:09:38 +00:00

126 lines
4.0 KiB
Go

package evaluators
import (
"encoding/json"
"fmt"
"net/http"
"strconv"
"github.com/pkg/errors"
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/beacon"
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared"
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
http2 "github.com/prysmaticlabs/prysm/v4/network/http"
"github.com/prysmaticlabs/prysm/v4/runtime/version"
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/params"
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/policies"
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/types"
"github.com/prysmaticlabs/prysm/v4/time/slots"
"google.golang.org/grpc"
)
// OptimisticSyncEnabled checks that the node is in an optimistic state.
var OptimisticSyncEnabled = types.Evaluator{
Name: "optimistic_sync_at_epoch_%d",
Policy: policies.AllEpochs,
Evaluation: optimisticSyncEnabled,
}
func optimisticSyncEnabled(_ *types.EvaluationContext, conns ...*grpc.ClientConn) error {
for nodeIndex := range conns {
path := fmt.Sprintf("http://localhost:%d/eth/v1/beacon/blinded_blocks/head", params.TestParams.Ports.PrysmBeaconNodeGatewayPort+nodeIndex)
resp := beacon.GetBlockV2Response{}
httpResp, err := http.Get(path) // #nosec G107 -- path can't be constant because it depends on port param and node index
if err != nil {
return err
}
if httpResp.StatusCode != http.StatusOK {
e := http2.DefaultErrorJson{}
if err = json.NewDecoder(httpResp.Body).Decode(&e); err != nil {
return err
}
return fmt.Errorf("%s (status code %d)", e.Message, e.Code)
}
if err = json.NewDecoder(httpResp.Body).Decode(&resp); err != nil {
return err
}
headSlot := uint64(0)
switch resp.Version {
case version.String(version.Phase0):
b := &shared.BeaconBlock{}
if err := json.Unmarshal(resp.Data.Message, b); err != nil {
return err
}
headSlot, err = strconv.ParseUint(b.Slot, 10, 64)
if err != nil {
return err
}
case version.String(version.Altair):
b := &shared.BeaconBlockAltair{}
if err := json.Unmarshal(resp.Data.Message, b); err != nil {
return err
}
headSlot, err = strconv.ParseUint(b.Slot, 10, 64)
if err != nil {
return err
}
case version.String(version.Bellatrix):
b := &shared.BeaconBlockBellatrix{}
if err := json.Unmarshal(resp.Data.Message, b); err != nil {
return err
}
headSlot, err = strconv.ParseUint(b.Slot, 10, 64)
if err != nil {
return err
}
case version.String(version.Capella):
b := &shared.BeaconBlockCapella{}
if err := json.Unmarshal(resp.Data.Message, b); err != nil {
return err
}
headSlot, err = strconv.ParseUint(b.Slot, 10, 64)
if err != nil {
return err
}
default:
return errors.New("no valid block type retrieved")
}
currEpoch := slots.ToEpoch(primitives.Slot(headSlot))
startSlot, err := slots.EpochStart(currEpoch)
if err != nil {
return err
}
isOptimistic := false
for i := startSlot; i <= primitives.Slot(headSlot); i++ {
path = fmt.Sprintf("http://localhost:%d/eth/v1/beacon/blinded_blocks/%d", params.TestParams.Ports.PrysmBeaconNodeGatewayPort+nodeIndex, i)
resp = beacon.GetBlockV2Response{}
httpResp, err = http.Get(path) // #nosec G107 -- path can't be constant because it depends on port param and node index
if err != nil {
return err
}
if httpResp.StatusCode == http.StatusNotFound {
// Continue in the event of non-existent blocks.
continue
}
if httpResp.StatusCode != http.StatusOK {
e := http2.DefaultErrorJson{}
if err = json.NewDecoder(httpResp.Body).Decode(&e); err != nil {
return err
}
return fmt.Errorf("%s (status code %d)", e.Message, e.Code)
}
if err = json.NewDecoder(httpResp.Body).Decode(&resp); err != nil {
return err
}
if !resp.ExecutionOptimistic {
return errors.New("expected block to be optimistic, but it is not")
}
isOptimistic = true
}
if !isOptimistic {
return errors.New("expected block to be optimistic, but it is not")
}
}
return nil
}