2022-05-20 09:34:10 +00:00
|
|
|
package endtoend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
|
|
ev "github.com/prysmaticlabs/prysm/testing/endtoend/evaluators"
|
|
|
|
e2eParams "github.com/prysmaticlabs/prysm/testing/endtoend/params"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
|
|
)
|
|
|
|
|
2022-05-25 22:52:43 +00:00
|
|
|
func e2eMinimal(t *testing.T, cfgo ...types.E2EConfigOpt) *testRunner {
|
2022-05-20 09:34:10 +00:00
|
|
|
params.SetupTestConfigCleanup(t)
|
|
|
|
params.OverrideBeaconConfig(params.E2ETestConfig().Copy())
|
2022-05-25 15:57:13 +00:00
|
|
|
require.NoError(t, e2eParams.Init(t, e2eParams.StandardBeaconCount))
|
2022-05-20 09:34:10 +00:00
|
|
|
|
|
|
|
// Run for 12 epochs if not in long-running to confirm long-running has no issues.
|
|
|
|
var err error
|
|
|
|
epochsToRun := 10
|
|
|
|
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.ValidatorHasExited,
|
|
|
|
ev.ProcessesDepositsInBlocks,
|
|
|
|
ev.ActivatesDepositedValidators,
|
|
|
|
ev.DepositedValidatorsAreActive,
|
|
|
|
ev.ValidatorsVoteWithTheMajority,
|
|
|
|
ev.ColdStateCheckpoint,
|
|
|
|
ev.AltairForkTransition,
|
|
|
|
ev.BellatrixForkTransition,
|
|
|
|
ev.APIMiddlewareVerifyIntegrity,
|
|
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
|
|
ev.FinishedSyncing,
|
|
|
|
ev.AllNodesHaveSameHead,
|
|
|
|
ev.ValidatorSyncParticipation,
|
2022-07-14 20:04:03 +00:00
|
|
|
ev.FeeRecipientIsPresent,
|
2022-05-20 09:34:10 +00:00
|
|
|
//ev.TransactionsPresent, TODO: Renable 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),
|
2022-05-25 22:52:43 +00:00
|
|
|
}
|
|
|
|
for _, o := range cfgo {
|
|
|
|
o(testConfig)
|
2022-05-20 09:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return newTestRunner(t, testConfig)
|
|
|
|
}
|
|
|
|
|
2022-06-15 08:02:31 +00:00
|
|
|
func e2eMainnet(t *testing.T, usePrysmSh, useMultiClient bool, cfgo ...types.E2EConfigOpt) *testRunner {
|
2022-05-20 09:34:10 +00:00
|
|
|
params.SetupTestConfigCleanup(t)
|
|
|
|
params.OverrideBeaconConfig(params.E2EMainnetTestConfig())
|
|
|
|
if useMultiClient {
|
2022-05-25 15:57:13 +00:00
|
|
|
require.NoError(t, e2eParams.InitMultiClient(t, e2eParams.StandardBeaconCount, e2eParams.StandardLighthouseNodeCount))
|
2022-05-20 09:34:10 +00:00
|
|
|
} else {
|
2022-05-25 15:57:13 +00:00
|
|
|
require.NoError(t, e2eParams.Init(t, e2eParams.StandardBeaconCount))
|
2022-05-20 09:34:10 +00:00
|
|
|
}
|
|
|
|
// Run for 10 epochs if not in long-running to confirm long-running has no issues.
|
|
|
|
var err error
|
|
|
|
epochsToRun := 10
|
|
|
|
epochStr, longRunning := os.LookupEnv("E2E_EPOCHS")
|
|
|
|
if longRunning {
|
|
|
|
epochsToRun, err = strconv.Atoi(epochStr)
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
_, crossClient := os.LookupEnv("RUN_CROSS_CLIENT")
|
|
|
|
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.ProposeVoluntaryExit,
|
|
|
|
ev.ValidatorHasExited,
|
|
|
|
ev.ColdStateCheckpoint,
|
|
|
|
ev.AltairForkTransition,
|
|
|
|
ev.BellatrixForkTransition,
|
|
|
|
ev.APIMiddlewareVerifyIntegrity,
|
|
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
|
|
ev.FinishedSyncing,
|
|
|
|
ev.AllNodesHaveSameHead,
|
2022-07-20 13:15:20 +00:00
|
|
|
//ev.FeeRecipientIsPresent, TODO: add back in after 2.1.4 when validator registration is no longer called.
|
2022-05-20 09:34:10 +00:00
|
|
|
//ev.TransactionsPresent, TODO: Renable 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,
|
|
|
|
UseValidatorCrossClient: crossClient,
|
|
|
|
UsePrysmShValidator: usePrysmSh,
|
|
|
|
UsePprof: !longRunning,
|
|
|
|
TracingSinkEndpoint: tracingEndpoint,
|
|
|
|
Evaluators: evals,
|
|
|
|
EvalInterceptor: defaultInterceptor,
|
|
|
|
Seed: int64(seed),
|
2022-06-15 08:02:31 +00:00
|
|
|
}
|
|
|
|
for _, o := range cfgo {
|
|
|
|
o(testConfig)
|
2022-06-30 00:24:39 +00:00
|
|
|
}
|
2022-05-20 09:34:10 +00:00
|
|
|
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.ValidatorHasExited,
|
|
|
|
ev.ColdStateCheckpoint,
|
|
|
|
ev.AltairForkTransition,
|
|
|
|
ev.BellatrixForkTransition,
|
|
|
|
ev.APIMiddlewareVerifyIntegrity,
|
|
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
|
|
ev.FinishedSyncing,
|
|
|
|
ev.AllNodesHaveSameHead,
|
|
|
|
ev.ValidatorSyncParticipation,
|
|
|
|
}
|
|
|
|
}
|
2022-05-25 03:10:51 +00:00
|
|
|
|
|
|
|
func scenarioEvalsMulti() []types.Evaluator {
|
|
|
|
return []types.Evaluator{
|
|
|
|
ev.PeersConnect,
|
|
|
|
ev.HealthzCheck,
|
|
|
|
ev.MetricsCheck,
|
|
|
|
ev.ValidatorsParticipatingAtEpoch(2),
|
|
|
|
ev.FinalizationOccurs(3),
|
|
|
|
ev.ProposeVoluntaryExit,
|
|
|
|
ev.ValidatorHasExited,
|
|
|
|
ev.ColdStateCheckpoint,
|
|
|
|
ev.AltairForkTransition,
|
|
|
|
ev.BellatrixForkTransition,
|
|
|
|
ev.APIMiddlewareVerifyIntegrity,
|
|
|
|
ev.APIGatewayV1Alpha1VerifyIntegrity,
|
|
|
|
ev.FinishedSyncing,
|
|
|
|
ev.AllNodesHaveSameHead,
|
|
|
|
}
|
|
|
|
}
|