mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-19 00:04:12 +00:00
4a515c36e6
* save changes * add dep * add changes * add latest changes * push changes * hack it for mainnet * fix deps * update it * add changes * fix e2e * revert it * gaz * remove log * preston's review * clear up * add more logs * fix nonce gaps * make it better * fix blobs * set value * add support for deneb scenario paths * update to fix scenario * go mod * clean up * fix up * reduce cog complexity * lint * remove * go sec * Update testing/endtoend/evaluators/fork.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/ssz_proto_library.bzl Co-authored-by: Radosław Kapka <rkapka@wp.pl> * fix * radek's review * make it atomic * gaz * add deneb case * remove deneb activation * change e2e yaml --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl>
218 lines
6.6 KiB
Go
218 lines
6.6 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
ev "github.com/prysmaticlabs/prysm/v4/testing/endtoend/evaluators"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/evaluators/beaconapi_evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/v4/testing/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
|
)
|
|
|
|
func e2eMinimal(t *testing.T, cfg *params.BeaconChainConfig, cfgo ...types.E2EConfigOpt) *testRunner {
|
|
params.SetupTestConfigCleanup(t)
|
|
require.NoError(t, params.SetActive(cfg))
|
|
require.NoError(t, e2eParams.Init(t, e2eParams.StandardBeaconCount))
|
|
|
|
// Run for 12 epochs if not in long-running to confirm long-running has no issues.
|
|
var err error
|
|
epochsToRun := 14
|
|
epochStr, longRunning := os.LookupEnv("E2E_EPOCHS")
|
|
if longRunning {
|
|
epochsToRun, err = strconv.Atoi(epochStr)
|
|
require.NoError(t, err)
|
|
}
|
|
seed := 0
|
|
seedStr, isValid := os.LookupEnv("E2E_SEED")
|
|
if isValid {
|
|
seed, err = strconv.Atoi(seedStr)
|
|
require.NoError(t, err)
|
|
}
|
|
tracingPort := e2eParams.TestParams.Ports.JaegerTracingPort
|
|
tracingEndpoint := fmt.Sprintf("127.0.0.1:%d", tracingPort)
|
|
evals := []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsAreActive,
|
|
ev.ValidatorsParticipatingAtEpoch(2),
|
|
ev.FinalizationOccurs(3),
|
|
ev.VerifyBlockGraffiti,
|
|
ev.PeersCheck,
|
|
ev.ProposeVoluntaryExit,
|
|
ev.ValidatorsHaveExited,
|
|
ev.SubmitWithdrawal,
|
|
ev.ValidatorsHaveWithdrawn,
|
|
ev.ProcessesDepositsInBlocks,
|
|
ev.ActivatesDepositedValidators,
|
|
ev.DepositedValidatorsAreActive,
|
|
ev.ValidatorsVoteWithTheMajority,
|
|
ev.ColdStateCheckpoint,
|
|
ev.AltairForkTransition,
|
|
ev.BellatrixForkTransition,
|
|
ev.CapellaForkTransition,
|
|
ev.DenebForkTransition,
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
ev.FinishedSyncing,
|
|
ev.AllNodesHaveSameHead,
|
|
ev.ValidatorSyncParticipation,
|
|
ev.FeeRecipientIsPresent,
|
|
//ev.TransactionsPresent, TODO: Re-enable Transaction evaluator once it tx pool issues are fixed.
|
|
}
|
|
testConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{
|
|
fmt.Sprintf("--slots-per-archive-point=%d", params.BeaconConfig().SlotsPerEpoch*16),
|
|
fmt.Sprintf("--tracing-endpoint=http://%s", tracingEndpoint),
|
|
"--enable-tracing",
|
|
"--trace-sample-fraction=1.0",
|
|
},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: uint64(epochsToRun),
|
|
TestSync: true,
|
|
TestFeature: true,
|
|
TestDeposits: true,
|
|
UsePrysmShValidator: false,
|
|
UsePprof: !longRunning,
|
|
TracingSinkEndpoint: tracingEndpoint,
|
|
Evaluators: evals,
|
|
EvalInterceptor: defaultInterceptor,
|
|
Seed: int64(seed),
|
|
}
|
|
for _, o := range cfgo {
|
|
o(testConfig)
|
|
}
|
|
if testConfig.UseBuilder {
|
|
testConfig.Evaluators = append(testConfig.Evaluators, ev.BuilderIsActive)
|
|
}
|
|
|
|
return newTestRunner(t, testConfig)
|
|
}
|
|
|
|
func e2eMainnet(t *testing.T, usePrysmSh, useMultiClient bool, cfg *params.BeaconChainConfig, cfgo ...types.E2EConfigOpt) *testRunner {
|
|
params.SetupTestConfigCleanup(t)
|
|
require.NoError(t, params.SetActive(cfg))
|
|
if useMultiClient {
|
|
require.NoError(t, e2eParams.InitMultiClient(t, e2eParams.StandardBeaconCount, e2eParams.StandardLighthouseNodeCount))
|
|
} else {
|
|
require.NoError(t, e2eParams.Init(t, e2eParams.StandardBeaconCount))
|
|
}
|
|
// Run for 10 epochs if not in long-running to confirm long-running has no issues.
|
|
var err error
|
|
epochsToRun := 14
|
|
epochStr, longRunning := os.LookupEnv("E2E_EPOCHS")
|
|
if longRunning {
|
|
epochsToRun, err = strconv.Atoi(epochStr)
|
|
require.NoError(t, err)
|
|
}
|
|
seed := 0
|
|
seedStr, isValid := os.LookupEnv("E2E_SEED")
|
|
if isValid {
|
|
seed, err = strconv.Atoi(seedStr)
|
|
require.NoError(t, err)
|
|
}
|
|
tracingPort := e2eParams.TestParams.Ports.JaegerTracingPort
|
|
tracingEndpoint := fmt.Sprintf("127.0.0.1:%d", tracingPort)
|
|
evals := []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsParticipatingAtEpoch(2),
|
|
ev.FinalizationOccurs(3),
|
|
ev.ProposeVoluntaryExit,
|
|
ev.ValidatorsHaveExited,
|
|
ev.SubmitWithdrawal,
|
|
ev.ValidatorsHaveWithdrawn,
|
|
ev.DepositedValidatorsAreActive,
|
|
ev.ColdStateCheckpoint,
|
|
ev.AltairForkTransition,
|
|
ev.BellatrixForkTransition,
|
|
ev.CapellaForkTransition,
|
|
ev.DenebForkTransition,
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
ev.FinishedSyncing,
|
|
ev.AllNodesHaveSameHead,
|
|
ev.FeeRecipientIsPresent,
|
|
//ev.TransactionsPresent, TODO: Re-enable Transaction evaluator once it tx pool issues are fixed.
|
|
}
|
|
testConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{
|
|
fmt.Sprintf("--slots-per-archive-point=%d", params.BeaconConfig().SlotsPerEpoch*16),
|
|
fmt.Sprintf("--tracing-endpoint=http://%s", tracingEndpoint),
|
|
"--enable-tracing",
|
|
"--trace-sample-fraction=1.0",
|
|
},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: uint64(epochsToRun),
|
|
TestSync: true,
|
|
TestFeature: true,
|
|
TestDeposits: true,
|
|
UseFixedPeerIDs: true,
|
|
UsePrysmShValidator: usePrysmSh,
|
|
UsePprof: !longRunning,
|
|
TracingSinkEndpoint: tracingEndpoint,
|
|
Evaluators: evals,
|
|
EvalInterceptor: defaultInterceptor,
|
|
Seed: int64(seed),
|
|
}
|
|
for _, o := range cfgo {
|
|
o(testConfig)
|
|
}
|
|
|
|
// In the event we use the cross-client e2e option, we add in an additional
|
|
// evaluator for multiclient runs to verify the beacon api conformance.
|
|
if testConfig.UseValidatorCrossClient {
|
|
testConfig.Evaluators = append(testConfig.Evaluators, beaconapi_evaluators.BeaconAPIMultiClientVerifyIntegrity)
|
|
}
|
|
if testConfig.UseBuilder {
|
|
testConfig.Evaluators = append(testConfig.Evaluators, ev.BuilderIsActive)
|
|
}
|
|
return newTestRunner(t, testConfig)
|
|
}
|
|
|
|
func scenarioEvals() []types.Evaluator {
|
|
return []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsParticipatingAtEpoch(2),
|
|
ev.FinalizationOccurs(3),
|
|
ev.VerifyBlockGraffiti,
|
|
ev.ProposeVoluntaryExit,
|
|
ev.ValidatorsHaveExited,
|
|
ev.ColdStateCheckpoint,
|
|
ev.AltairForkTransition,
|
|
ev.BellatrixForkTransition,
|
|
ev.CapellaForkTransition,
|
|
ev.DenebForkTransition,
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
ev.FinishedSyncing,
|
|
ev.AllNodesHaveSameHead,
|
|
ev.ValidatorSyncParticipation,
|
|
}
|
|
}
|
|
|
|
func scenarioEvalsMulti() []types.Evaluator {
|
|
return []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsParticipatingAtEpoch(2),
|
|
ev.FinalizationOccurs(3),
|
|
ev.ProposeVoluntaryExit,
|
|
ev.ValidatorsHaveExited,
|
|
ev.ColdStateCheckpoint,
|
|
ev.AltairForkTransition,
|
|
ev.BellatrixForkTransition,
|
|
ev.CapellaForkTransition,
|
|
ev.DenebForkTransition,
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
ev.FinishedSyncing,
|
|
ev.AllNodesHaveSameHead,
|
|
}
|
|
}
|