Documentation ¶
Overview ¶
Package types includes important structs used by end to end tests, such as a configuration type, an evaluator type, and more.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BeaconNodeSet ¶
type BeaconNodeSet interface { ComponentRunner // SetENR provides the relevant bootnode's enr to the beacon nodes. SetENR(enr string) }
BeaconNodeSet defines an interface for an object that fulfills the duties of a group of beacon nodes.
type ComponentRunner ¶
type ComponentRunner interface { // Start starts a component. Start(ctx context.Context) error // Started checks whether an underlying component is started and ready to be queried. Started() <-chan struct{} // Pause pauses a component. Pause() error // Resume resumes a component. Resume() error // Stop stops a component. Stop() error }
ComponentRunner defines an interface via which E2E component's configuration, execution and termination is managed.
type E2EConfig ¶
type E2EConfig struct { TestCheckpointSync bool TestSync bool TestFeature bool UsePrysmShValidator bool UsePprof bool UseWeb3RemoteSigner bool TestDeposits bool UseFixedPeerIDs bool UseValidatorCrossClient bool EpochsToRun uint64 Seed int64 TracingSinkEndpoint string Evaluators []Evaluator EvalInterceptor func(uint64, []*grpc.ClientConn) bool BeaconFlags []string ValidatorFlags []string PeerIDs []string ExtraEpochs uint64 }
E2EConfig defines the struct for all configurations needed for E2E testing.
type E2EConfigOpt ¶
type E2EConfigOpt func(*E2EConfig)
func WithCheckpointSync ¶
func WithCheckpointSync() E2EConfigOpt
func WithEpochs ¶
func WithEpochs(e uint64) E2EConfigOpt
func WithRemoteSigner ¶
func WithRemoteSigner() E2EConfigOpt
type EngineProxy ¶
type EngineProxy interface { ComponentRunner // AddRequestInterceptor adds in a json-rpc request interceptor. AddRequestInterceptor(rpcMethodName string, responseGen func() interface{}, trigger func() bool) // RemoveRequestInterceptor removes the request interceptor for the provided method. RemoveRequestInterceptor(rpcMethodName string) // ReleaseBackedUpRequests releases backed up http requests. ReleaseBackedUpRequests(rpcMethodName string) }
type Evaluator ¶
type Evaluator struct { Name string Policy func(currentEpoch types.Epoch) bool Evaluation func(conn ...*grpc.ClientConn) error // A variable amount of conns is allowed to be passed in for evaluations to check all nodes if needed. }
Evaluator defines the structure of the evaluators used to conduct the current beacon state during the E2E.
type MultipleComponentRunners ¶
type MultipleComponentRunners interface { ComponentRunner // ComponentAtIndex returns the component at index ComponentAtIndex(i int) (ComponentRunner, error) // PauseAtIndex pauses the grouped component element at the desired index. PauseAtIndex(i int) error // ResumeAtIndex resumes the grouped component element at the desired index. ResumeAtIndex(i int) error // StopAtIndex stops the grouped component element at the desired index. StopAtIndex(i int) error }
Click to show internal directories.
Click to hide internal directories.