prysm-pulse/endtoend/long_minimal_e2e_test.go
Ivan Martinez 187cae8290
Reduce E2E idle time to expedite completion (#6762)
* 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>
2020-07-29 21:58:30 -05:00

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)
}