mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
96fecf8c57
* testing out fee-recipient evaluator * fixing bazel linter * adjusting comparison * typo on file rolling back * adding fee recipient is present to minimal e2e * fixing gofmt * fixing gofmt * fixing flag usage name * adding in log to help debug * fixing log build * trying to figure out why suggested fee recipient isn't working in e2e, adding more logging temporarily * rolling back logs * making e2e test more dynamic * fixing deepsource issue * fixing bazel * adding in condition for latest release * duplicate condtion check. * fixing gofmt * rolling back changes * adding fee recipient evaluator in new file * fixing validator component logic * testing rpc client addition * testing fee recipient evaluator * fixing bazel: * testing casting * test casting * reverting * testing casting * testing casting * testing log * adding bazel fix * switching mixed case and adding temp logging * fixing gofmt * rolling back changes * removing fee recipient evaluator when web3signer is used * test only minimal config * reverting changes * adding fee recipient evaluator to mainnet * current version uses wrong flag name * optimizing key usage * making mining address a variable * moving from global to local variable * removing unneeded log * removing redundant check * make proposer settings mroe deterministic and also have the evaluator compare the wanting values * fixing err return * fixing bazel * checking file too much moving it out * fixing gosec * trying to fix gosec error * trying to fix address * fixing linting * trying to gerenate key and random address * fixing linting * fixing check for proposer config * trying with multi config files * fixing is dir check * testing for older previous balance * adding logging to help debug * changing how i get the block numbers * fixing missed error check * adding gasused check * adding log for current gas used * taking suggestion to make fee recipient more deterministic * fixing linting * fixing check * fixing the address check * fixing format error * logic to differentiate recipients * fixing linting
211 lines
6.5 KiB
Go
211 lines
6.5 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
ev "github.com/prysmaticlabs/prysm/testing/endtoend/evaluators"
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/helpers"
|
|
e2eParams "github.com/prysmaticlabs/prysm/testing/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func e2eMinimal(t *testing.T, cfgo ...types.E2EConfigOpt) *testRunner {
|
|
params.SetupTestConfigCleanup(t)
|
|
params.OverrideBeaconConfig(params.E2ETestConfig().Copy())
|
|
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 := 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,
|
|
//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),
|
|
}
|
|
for _, o := range cfgo {
|
|
o(testConfig)
|
|
}
|
|
//TODO: web3signer does not currently support validator registration signing so evaluator will break code
|
|
if !testConfig.UseWeb3RemoteSigner {
|
|
testConfig.Evaluators = append(testConfig.Evaluators, ev.FeeRecipientIsPresent)
|
|
}
|
|
|
|
return newTestRunner(t, testConfig)
|
|
}
|
|
|
|
func e2eMainnet(t *testing.T, usePrysmSh, useMultiClient bool, cfgo ...types.E2EConfigOpt) *testRunner {
|
|
params.SetupTestConfigCleanup(t)
|
|
params.OverrideBeaconConfig(params.E2EMainnetTestConfig())
|
|
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 := 10
|
|
epochStr, longRunning := os.LookupEnv("E2E_EPOCHS")
|
|
if longRunning {
|
|
epochsToRun, err = strconv.Atoi(epochStr)
|
|
require.NoError(t, err)
|
|
}
|
|
_, crossClient := os.LookupEnv("RUN_CROSS_CLIENT")
|
|
if usePrysmSh {
|
|
// If using prysm.sh, run for only 6 epochs.
|
|
// TODO(#9166): remove this block once v2 changes are live.
|
|
epochsToRun = helpers.AltairE2EForkEpoch - 1
|
|
}
|
|
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,
|
|
//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),
|
|
}
|
|
for _, o := range cfgo {
|
|
o(testConfig)
|
|
}
|
|
//TODO: web3signer does not currently support validator registration signing so evaluator will break code
|
|
if !testConfig.UseWeb3RemoteSigner {
|
|
testConfig.Evaluators = append(testConfig.Evaluators, ev.FeeRecipientIsPresent)
|
|
}
|
|
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,
|
|
}
|
|
}
|
|
|
|
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,
|
|
}
|
|
}
|