prysm-pulse/testing/endtoend/slasher_simulator_e2e_test.go
Raul Jordan 4f31ba6489
Changes to E2E for Optimized Slasher (#9698)
* remaining slasher e2e changes

* testing gaz

* slash e2e

* deepsource

* gaz

* viz

* revert wait group changes

* comment

* lock around reset cache

* add slashing reason

* revert changes

* is sync

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
Co-authored-by: prestonvanloon <preston@prysmaticlabs.com>
2021-09-30 20:28:14 +00:00

79 lines
2.7 KiB
Go

package endtoend
import (
"context"
"os"
"strconv"
"testing"
types "github.com/prysmaticlabs/eth2-types"
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
dbtest "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
"github.com/prysmaticlabs/prysm/beacon-chain/operations/slashings"
"github.com/prysmaticlabs/prysm/beacon-chain/state/stategen"
"github.com/prysmaticlabs/prysm/crypto/bls"
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
"github.com/prysmaticlabs/prysm/testing/require"
slashersimulator "github.com/prysmaticlabs/prysm/testing/slasher/simulator"
"github.com/prysmaticlabs/prysm/testing/util"
logTest "github.com/sirupsen/logrus/hooks/test"
)
func TestEndToEnd_SlasherSimulator(t *testing.T) {
hook := logTest.NewGlobal()
ctx := context.Background()
// Run for 10 epochs if not in long-running to confirm long-running has no issues.
simulatorParams := slashersimulator.DefaultParams()
var err error
epochStr, longRunning := os.LookupEnv("E2E_EPOCHS")
if longRunning {
epochsToRun, err := strconv.Atoi(epochStr)
require.NoError(t, err)
simulatorParams.NumEpochs = uint64(epochsToRun)
}
slasherDB := dbtest.SetupSlasherDB(t)
beaconState, err := util.NewBeaconState()
require.NoError(t, err)
// We setup validators in the beacon state along with their
// private keys used to generate valid signatures in generated objects.
validators := make([]*ethpb.Validator, simulatorParams.NumValidators)
privKeys := make(map[types.ValidatorIndex]bls.SecretKey)
for valIdx := range validators {
privKey, err := bls.RandKey()
require.NoError(t, err)
privKeys[types.ValidatorIndex(valIdx)] = privKey
validators[valIdx] = &ethpb.Validator{
PublicKey: privKey.PublicKey().Marshal(),
WithdrawalCredentials: make([]byte, 32),
}
}
err = beaconState.SetValidators(validators)
require.NoError(t, err)
mockChain := &mock.ChainService{State: beaconState}
gen := stategen.NewMockService()
gen.AddStateForRoot(beaconState, [32]byte{})
sim, err := slashersimulator.New(ctx, &slashersimulator.ServiceConfig{
Params: simulatorParams,
Database: slasherDB,
StateNotifier: &mock.MockStateNotifier{},
HeadStateFetcher: mockChain,
AttestationStateFetcher: mockChain,
StateGen: gen,
PrivateKeysByValidatorIndex: privKeys,
SlashingsPool: &slashings.PoolMock{},
})
require.NoError(t, err)
sim.Start()
err = sim.Stop()
require.NoError(t, err)
require.LogsDoNotContain(t, hook, "ERROR")
require.LogsDoNotContain(t, hook, "Did not detect")
require.LogsContain(t, hook, "Correctly detected simulated proposer slashing")
require.LogsContain(t, hook, "Correctly detected simulated attester slashing")
}