mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
588dea83b7
* test coverage and updates to config twiddlers * LoadChainConfigFile error if SetActive conflicts * lint * wip working around test issues * more fixes, mass test updates * lint * linting * thanks deepsource! * fix undeclared vars * fixing more undefined * fix a bug, make a bug, repeat * gaz * use stock mainnet in case fork schedule matters * remove unused KnownConfigs * post-merge cleanup * eliminating OverrideBeaconConfig outside tests * more cleanup of OverrideBeaconConfig outside tests * config for interop w/ genesis gen support * improve var name * API on package instead of exported value * cleanup remainders of "registry" naming * Nishant feedback * add ropstein to configset * lint * lint #2 * ✂️ * revert accidental commented line * check if active is nil (replace called on empty) * Nishant feedback * replace OverrideBeaconConfig call * update interop instructions w/ new flag * don't let interop replace config set via cli flags Co-authored-by: kasey <kasey@users.noreply.github.com>
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
ev "github.com/prysmaticlabs/prysm/testing/endtoend/evaluators"
|
|
e2eParams "github.com/prysmaticlabs/prysm/testing/endtoend/params"
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestEndToEnd_Slasher_MinimalConfig(t *testing.T) {
|
|
params.SetupTestConfigCleanup(t)
|
|
params.OverrideBeaconConfig(params.E2ETestConfig().Copy())
|
|
require.NoError(t, e2eParams.Init(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: 4,
|
|
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),
|
|
},
|
|
TracingSinkEndpoint: tracingEndpoint,
|
|
}
|
|
|
|
newTestRunner(t, testConfig).run()
|
|
}
|