mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
79 lines
2.7 KiB
Go
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] = ðpb.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")
|
||
|
}
|