mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
c70103bdb3
* Add healthz check to E2E * Log fixes * Merge branch 'master' of https://github.com/prysmaticlabs/prysm into e2e-healthz * Merge branch 'master' of https://github.com/prysmaticlabs/prysm into e2e-healthz * Merge branch 'master' into e2e-healthz * Merge branch 'master' into e2e-healthz * Merge branch 'master' into e2e-healthz * Merge branch 'master' into e2e-healthz
37 lines
910 B
Go
37 lines
910 B
Go
package endtoend
|
|
|
|
import (
|
|
"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_Slashing_MinimalConfig(t *testing.T) {
|
|
testutil.ResetCache()
|
|
params.UseMinimalConfig()
|
|
|
|
minimalConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{"--minimal-config", "--custom-genesis-delay=10"},
|
|
ValidatorFlags: []string{"--minimal-config"},
|
|
EpochsToRun: 2,
|
|
TestSync: false,
|
|
TestSlasher: true,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsSlashed,
|
|
ev.SlashedValidatorsLoseBalance,
|
|
ev.InjectDoubleVote,
|
|
},
|
|
}
|
|
if err := e2eParams.Init(2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
runEndToEndTest(t, minimalConfig)
|
|
}
|