2020-03-15 05:09:23 +00:00
|
|
|
package endtoend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
ev "github.com/prysmaticlabs/prysm/endtoend/evaluators"
|
2020-03-22 23:04:23 +00:00
|
|
|
e2eParams "github.com/prysmaticlabs/prysm/endtoend/params"
|
|
|
|
"github.com/prysmaticlabs/prysm/endtoend/types"
|
2020-03-15 05:09:23 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
2020-08-25 15:23:06 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
2020-03-15 05:09:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEndToEnd_Slashing_MinimalConfig(t *testing.T) {
|
2021-03-31 17:22:23 +00:00
|
|
|
t.Skip("To be replaced with the new slasher implementation")
|
2020-03-15 05:09:23 +00:00
|
|
|
testutil.ResetCache()
|
2020-05-26 19:04:42 +00:00
|
|
|
params.UseE2EConfig()
|
2020-08-25 15:23:06 +00:00
|
|
|
require.NoError(t, e2eParams.Init(e2eParams.StandardBeaconCount))
|
2020-03-15 05:09:23 +00:00
|
|
|
|
2021-03-26 03:15:58 +00:00
|
|
|
testConfig := &types.E2EConfig{
|
2020-05-26 19:04:42 +00:00
|
|
|
BeaconFlags: []string{},
|
|
|
|
ValidatorFlags: []string{},
|
2020-08-02 21:30:59 +00:00
|
|
|
EpochsToRun: 4,
|
2020-03-22 23:04:23 +00:00
|
|
|
TestSync: false,
|
|
|
|
TestSlasher: true,
|
2020-06-03 18:44:13 +00:00
|
|
|
TestDeposits: false,
|
2020-03-22 23:04:23 +00:00
|
|
|
Evaluators: []types.Evaluator{
|
2020-03-15 05:09:23 +00:00
|
|
|
ev.PeersConnect,
|
2020-04-15 21:20:58 +00:00
|
|
|
ev.HealthzCheck,
|
2020-03-15 05:09:23 +00:00
|
|
|
ev.ValidatorsSlashed,
|
|
|
|
ev.SlashedValidatorsLoseBalance,
|
|
|
|
ev.InjectDoubleVote,
|
2020-05-21 06:02:40 +00:00
|
|
|
ev.ProposeDoubleBlock,
|
2020-03-15 05:09:23 +00:00
|
|
|
},
|
|
|
|
}
|
2020-03-31 15:15:33 +00:00
|
|
|
|
2021-03-26 03:15:58 +00:00
|
|
|
newTestRunner(t, testConfig).run()
|
2020-03-15 05:09:23 +00:00
|
|
|
}
|