prysm-pulse/testing/endtoend/evaluators/data.go
Raul Jordan 84916672c6
Remove Eth2-Types Dependency in Prysm (#10578)
* replace eth2 types

* replace protos

* regen proto

* replace

* gaz

* deps

* amend

* regen proto

* mod

* gaz

* gaz

* ensure build

* ssz

* add dep

* no more eth2 types

* no more eth2

* remg

* all builds

* buidl

* tidy

* clean

* fmt

* val serv

* gaz

Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
2022-04-29 10:32:11 -04:00

45 lines
1.3 KiB
Go

package evaluators
import (
"context"
"errors"
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
eth "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
e2etypes "github.com/prysmaticlabs/prysm/testing/endtoend/types"
"google.golang.org/grpc"
)
const epochToCheck = 50 // must be more than 46 (32 hot states + 16 chkpt interval)
// ColdStateCheckpoint checks data from the database using cold state storage.
var ColdStateCheckpoint = e2etypes.Evaluator{
Name: "cold_state_assignments_from_epoch_%d",
Policy: func(currentEpoch types.Epoch) bool {
return currentEpoch == epochToCheck
},
Evaluation: checkColdStateCheckpoint,
}
// Checks the first node for an old checkpoint using cold state storage.
func checkColdStateCheckpoint(conns ...*grpc.ClientConn) error {
ctx := context.Background()
client := eth.NewBeaconChainClient(conns[0])
for i := types.Epoch(0); i < epochToCheck; i++ {
res, err := client.ListValidatorAssignments(ctx, &eth.ListValidatorAssignmentsRequest{
QueryFilter: &eth.ListValidatorAssignmentsRequest_Epoch{Epoch: i},
})
if err != nil {
return err
}
// A simple check to ensure we received some data.
if res == nil || res.Epoch != i {
return errors.New("failed to return a validator assignments response for an old epoch " +
"using cold state storage from the database")
}
}
return nil
}