mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
187cae8290
* Make changes to E2E to finish faster * rename * Fix * reduce slots per epoch * Remove process ID * Fix * Fix * Fix * Remove pid handling * Fix build Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
|
|
ev "github.com/prysmaticlabs/prysm/endtoend/evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
func TestEndToEnd_Long_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseE2EConfig()
|
|
if err := e2eParams.Init(e2eParams.LongRunningBeaconCount); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Run for 4 epochs if not in long-running to confirm long-running has no issues.
|
|
epochsToRun := 4
|
|
var err error
|
|
epochStr, ok := os.LookupEnv("E2E_EPOCHS")
|
|
if ok {
|
|
epochsToRun, err = strconv.Atoi(epochStr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
// Don't test sync or slashers unless long-running e2e is running.
|
|
testExtra := ok
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{
|
|
fmt.Sprintf("--slots-per-archive-point=%d", params.BeaconConfig().SlotsPerEpoch*16),
|
|
},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: uint64(epochsToRun),
|
|
TestSync: testExtra,
|
|
TestDeposits: true,
|
|
TestSlasher: testExtra,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsAreActive,
|
|
ev.ValidatorsParticipating,
|
|
ev.FinalizationOccurs,
|
|
ev.ProcessesDepositedValidators,
|
|
ev.ProposeVoluntaryExit,
|
|
ev.DepositedValidatorsAreActive,
|
|
ev.ValidatorHasExited,
|
|
ev.ColdStateCheckpoint,
|
|
},
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|