mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
260847e92f
* Fix long running e2e deposit processing * Merge branch 'master' of github.com:prysmaticlabs/prysm into fix-long-e2e * Remove logs * Uncomment * typing * Reorder * Add const for node count * Merge refs/heads/master into fix-long-e2e * Add trace logging * Merge branch 'fix-long-e2e' of github.com:prysmaticlabs/prysm into fix-long-e2e
42 lines
931 B
Go
42 lines
931 B
Go
package endtoend
|
|
|
|
import (
|
|
"testing"
|
|
|
|
e2eParams "github.com/prysmaticlabs/prysm/endtoend/params"
|
|
|
|
ev "github.com/prysmaticlabs/prysm/endtoend/evaluators"
|
|
"github.com/prysmaticlabs/prysm/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
func TestEndToEnd_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseE2EConfig()
|
|
if err := e2eParams.Init(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: 10,
|
|
TestSync: true,
|
|
TestSlasher: true,
|
|
TestDeposits: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.MetricsCheck,
|
|
ev.ValidatorsAreActive,
|
|
ev.ValidatorsParticipating,
|
|
ev.FinalizationOccurs,
|
|
ev.ProposeVoluntaryExit,
|
|
ev.ValidatorHasExited,
|
|
},
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|