mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
ev "github.com/prysmaticlabs/prysm/v5/testing/endtoend/evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/v5/testing/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestEndToEnd_Slasher_MinimalConfig(t *testing.T) {
|
|
params.SetupTestConfigCleanup(t)
|
|
params.OverrideBeaconConfig(params.E2ETestConfig().Copy())
|
|
require.NoError(t, e2eParams.Init(t, e2eParams.StandardBeaconCount))
|
|
|
|
tracingPort := e2eParams.TestParams.Ports.JaegerTracingPort
|
|
tracingEndpoint := fmt.Sprintf("127.0.0.1:%d", tracingPort)
|
|
|
|
testConfig := &types.E2EConfig{
|
|
BeaconFlags: []string{
|
|
"--slasher",
|
|
},
|
|
ValidatorFlags: []string{},
|
|
EpochsToRun: 6,
|
|
TestSync: false,
|
|
TestFeature: false,
|
|
TestDeposits: false,
|
|
Evaluators: []types.Evaluator{
|
|
ev.PeersConnect,
|
|
ev.HealthzCheck,
|
|
ev.ValidatorsSlashedAfterEpoch(4),
|
|
ev.SlashedValidatorsLoseBalanceAfterEpoch(4),
|
|
ev.InjectDoubleVoteOnEpoch(2),
|
|
ev.InjectDoubleBlockOnEpoch(2),
|
|
},
|
|
EvalInterceptor: defaultInterceptor,
|
|
TracingSinkEndpoint: tracingEndpoint,
|
|
}
|
|
|
|
newTestRunner(t, testConfig).run()
|
|
}
|