mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
518 lines
19 KiB
Go
518 lines
19 KiB
Go
package validator
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
mockChain "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/altair"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed"
|
|
statefeed "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/state"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/transition"
|
|
mockPOW "github.com/prysmaticlabs/prysm/beacon-chain/powchain/testing"
|
|
mockSync "github.com/prysmaticlabs/prysm/beacon-chain/sync/initial-sync/testing"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
|
ethpbv1 "github.com/prysmaticlabs/prysm/proto/eth/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/mock"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
"github.com/prysmaticlabs/prysm/testing/util"
|
|
)
|
|
|
|
// pubKey is a helper to generate a well-formed public key.
|
|
func pubKey(i uint64) []byte {
|
|
pubKey := make([]byte, params.BeaconConfig().BLSPubkeyLength)
|
|
binary.LittleEndian.PutUint64(pubKey, i)
|
|
return pubKey
|
|
}
|
|
|
|
func TestGetDuties_OK(t *testing.T) {
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := params.BeaconConfig().MinGenesisActiveValidatorCount
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bs, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(t, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = deposits[i].Data.PublicKey
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
chain := &mockChain.ChainService{
|
|
State: bs, Root: genesisRoot[:], Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
HeadFetcher: chain,
|
|
TimeFetcher: chain,
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
}
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[0].Data.PublicKey},
|
|
}
|
|
res, err := vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
if res.CurrentEpochDuties[0].AttesterSlot > bs.Slot()+params.BeaconConfig().SlotsPerEpoch {
|
|
t.Errorf("Assigned slot %d can't be higher than %d",
|
|
res.CurrentEpochDuties[0].AttesterSlot, bs.Slot()+params.BeaconConfig().SlotsPerEpoch)
|
|
}
|
|
|
|
// Test the last validator in registry.
|
|
lastValidatorIndex := depChainStart - 1
|
|
req = ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[lastValidatorIndex].Data.PublicKey},
|
|
}
|
|
res, err = vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
if res.CurrentEpochDuties[0].AttesterSlot > bs.Slot()+params.BeaconConfig().SlotsPerEpoch {
|
|
t.Errorf("Assigned slot %d can't be higher than %d",
|
|
res.CurrentEpochDuties[0].AttesterSlot, bs.Slot()+params.BeaconConfig().SlotsPerEpoch)
|
|
}
|
|
|
|
// We request for duties for all validators.
|
|
req = ðpb.DutiesRequest{
|
|
PublicKeys: pubKeys,
|
|
Epoch: 0,
|
|
}
|
|
res, err = vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
for i := 0; i < len(res.CurrentEpochDuties); i++ {
|
|
assert.Equal(t, types.ValidatorIndex(i), res.CurrentEpochDuties[i].ValidatorIndex)
|
|
}
|
|
}
|
|
|
|
func TestGetAltairDuties_SyncCommitteeOK(t *testing.T) {
|
|
params.SetupTestConfigCleanup(t)
|
|
params.UseMainnetConfig()
|
|
cfg := params.BeaconConfig().Copy()
|
|
cfg.AltairForkEpoch = types.Epoch(0)
|
|
params.OverrideBeaconConfig(cfg)
|
|
|
|
genesis := util.NewBeaconBlock()
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(params.BeaconConfig().SyncCommitteeSize)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bs, err := util.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
h := ðpb.BeaconBlockHeader{
|
|
StateRoot: bytesutil.PadTo([]byte{'a'}, 32),
|
|
ParentRoot: bytesutil.PadTo([]byte{'b'}, 32),
|
|
BodyRoot: bytesutil.PadTo([]byte{'c'}, 32),
|
|
}
|
|
require.NoError(t, bs.SetLatestBlockHeader(h))
|
|
require.NoError(t, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
syncCommittee, err := altair.NextSyncCommittee(context.Background(), bs)
|
|
require.NoError(t, err)
|
|
require.NoError(t, bs.SetCurrentSyncCommittee(syncCommittee))
|
|
pubKeys := make([][]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = deposits[i].Data.PublicKey
|
|
indices[i] = uint64(i)
|
|
}
|
|
require.NoError(t, bs.SetSlot(params.BeaconConfig().SlotsPerEpoch*types.Slot(params.BeaconConfig().EpochsPerSyncCommitteePeriod)-1))
|
|
require.NoError(t, helpers.UpdateSyncCommitteeCache(bs))
|
|
|
|
pubkeysAs48ByteType := make([][48]byte, len(pubKeys))
|
|
for i, pk := range pubKeys {
|
|
pubkeysAs48ByteType[i] = bytesutil.ToBytes48(pk)
|
|
}
|
|
|
|
slot := uint64(params.BeaconConfig().SlotsPerEpoch) * uint64(params.BeaconConfig().EpochsPerSyncCommitteePeriod) * params.BeaconConfig().SecondsPerSlot
|
|
chain := &mockChain.ChainService{
|
|
State: bs, Root: genesisRoot[:], Genesis: time.Now().Add(time.Duration(-1*int64(slot-1)) * time.Second),
|
|
}
|
|
vs := &Server{
|
|
HeadFetcher: chain,
|
|
TimeFetcher: chain,
|
|
Eth1InfoFetcher: &mockPOW.POWChain{},
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
}
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[0].Data.PublicKey},
|
|
}
|
|
res, err := vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
if res.CurrentEpochDuties[0].AttesterSlot > bs.Slot()+params.BeaconConfig().SlotsPerEpoch {
|
|
t.Errorf("Assigned slot %d can't be higher than %d",
|
|
res.CurrentEpochDuties[0].AttesterSlot, bs.Slot()+params.BeaconConfig().SlotsPerEpoch)
|
|
}
|
|
|
|
// Test the last validator in registry.
|
|
lastValidatorIndex := params.BeaconConfig().SyncCommitteeSize - 1
|
|
req = ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[lastValidatorIndex].Data.PublicKey},
|
|
}
|
|
res, err = vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
if res.CurrentEpochDuties[0].AttesterSlot > bs.Slot()+params.BeaconConfig().SlotsPerEpoch {
|
|
t.Errorf("Assigned slot %d can't be higher than %d",
|
|
res.CurrentEpochDuties[0].AttesterSlot, bs.Slot()+params.BeaconConfig().SlotsPerEpoch)
|
|
}
|
|
|
|
// We request for duties for all validators.
|
|
req = ðpb.DutiesRequest{
|
|
PublicKeys: pubKeys,
|
|
Epoch: 0,
|
|
}
|
|
res, err = vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
for i := 0; i < len(res.CurrentEpochDuties); i++ {
|
|
assert.Equal(t, types.ValidatorIndex(i), res.CurrentEpochDuties[i].ValidatorIndex)
|
|
}
|
|
for i := 0; i < len(res.CurrentEpochDuties); i++ {
|
|
assert.Equal(t, true, res.CurrentEpochDuties[i].IsSyncCommittee)
|
|
// Current epoch and next epoch duties should be equal before the sync period epoch boundary.
|
|
assert.Equal(t, res.CurrentEpochDuties[i].IsSyncCommittee, res.NextEpochDuties[i].IsSyncCommittee)
|
|
}
|
|
|
|
// Current epoch and next epoch duties should not be equal at the sync period epoch boundary.
|
|
req = ðpb.DutiesRequest{
|
|
PublicKeys: pubKeys,
|
|
Epoch: params.BeaconConfig().EpochsPerSyncCommitteePeriod - 1,
|
|
}
|
|
res, err = vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
for i := 0; i < len(res.CurrentEpochDuties); i++ {
|
|
assert.NotEqual(t, res.CurrentEpochDuties[i].IsSyncCommittee, res.NextEpochDuties[i].IsSyncCommittee)
|
|
}
|
|
}
|
|
|
|
func TestGetDuties_SlotOutOfUpperBound(t *testing.T) {
|
|
chain := &mockChain.ChainService{
|
|
Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
TimeFetcher: chain,
|
|
}
|
|
req := ðpb.DutiesRequest{
|
|
Epoch: types.Epoch(chain.CurrentSlot()/params.BeaconConfig().SlotsPerEpoch + 2),
|
|
}
|
|
_, err := vs.duties(context.Background(), req)
|
|
require.ErrorContains(t, "can not be greater than next epoch", err)
|
|
}
|
|
|
|
func TestGetDuties_CurrentEpoch_ShouldNotFail(t *testing.T) {
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := params.BeaconConfig().MinGenesisActiveValidatorCount
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bState, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(t, err, "Could not setup genesis state")
|
|
// Set state to non-epoch start slot.
|
|
require.NoError(t, bState.SetSlot(5))
|
|
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][48]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = bytesutil.ToBytes48(deposits[i].Data.PublicKey)
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
chain := &mockChain.ChainService{
|
|
State: bState, Root: genesisRoot[:], Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
HeadFetcher: chain,
|
|
TimeFetcher: chain,
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
}
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[0].Data.PublicKey},
|
|
}
|
|
res, err := vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 1, len(res.CurrentEpochDuties), "Expected 1 assignment")
|
|
}
|
|
|
|
func TestGetDuties_MultipleKeys_OK(t *testing.T) {
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := uint64(64)
|
|
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bs, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(t, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][48]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = bytesutil.ToBytes48(deposits[i].Data.PublicKey)
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
chain := &mockChain.ChainService{
|
|
State: bs, Root: genesisRoot[:], Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
HeadFetcher: chain,
|
|
TimeFetcher: chain,
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
}
|
|
|
|
pubkey0 := deposits[0].Data.PublicKey
|
|
pubkey1 := deposits[1].Data.PublicKey
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{pubkey0, pubkey1},
|
|
}
|
|
res, err := vs.GetDuties(context.Background(), req)
|
|
require.NoError(t, err, "Could not call epoch committee assignment")
|
|
assert.Equal(t, 2, len(res.CurrentEpochDuties))
|
|
assert.Equal(t, types.Slot(4), res.CurrentEpochDuties[0].AttesterSlot)
|
|
assert.Equal(t, types.Slot(4), res.CurrentEpochDuties[1].AttesterSlot)
|
|
}
|
|
|
|
func TestGetDuties_SyncNotReady(t *testing.T) {
|
|
vs := &Server{
|
|
SyncChecker: &mockSync.Sync{IsSyncing: true},
|
|
}
|
|
_, err := vs.GetDuties(context.Background(), ðpb.DutiesRequest{})
|
|
assert.ErrorContains(t, "Syncing to latest head", err)
|
|
}
|
|
|
|
func TestStreamDuties_SyncNotReady(t *testing.T) {
|
|
vs := &Server{
|
|
SyncChecker: &mockSync.Sync{IsSyncing: true},
|
|
}
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
mockStream := mock.NewMockBeaconNodeValidator_StreamDutiesServer(ctrl)
|
|
assert.ErrorContains(t, "Syncing to latest head", vs.StreamDuties(ðpb.DutiesRequest{}, mockStream))
|
|
}
|
|
|
|
func TestStreamDuties_OK(t *testing.T) {
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := params.BeaconConfig().MinGenesisActiveValidatorCount
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bs, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(t, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = deposits[i].Data.PublicKey
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
pubkeysAs48ByteType := make([][48]byte, len(pubKeys))
|
|
for i, pk := range pubKeys {
|
|
pubkeysAs48ByteType[i] = bytesutil.ToBytes48(pk)
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
c := &mockChain.ChainService{
|
|
Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
Ctx: ctx,
|
|
HeadFetcher: &mockChain.ChainService{State: bs, Root: genesisRoot[:]},
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
TimeFetcher: c,
|
|
StateNotifier: &mockChain.MockStateNotifier{},
|
|
}
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[0].Data.PublicKey},
|
|
}
|
|
wantedRes, err := vs.duties(ctx, req)
|
|
require.NoError(t, err)
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
exitRoutine := make(chan bool)
|
|
mockStream := mock.NewMockBeaconNodeValidator_StreamDutiesServer(ctrl)
|
|
mockStream.EXPECT().Send(wantedRes).Do(func(arg0 interface{}) {
|
|
exitRoutine <- true
|
|
})
|
|
mockStream.EXPECT().Context().Return(ctx).AnyTimes()
|
|
go func(tt *testing.T) {
|
|
assert.ErrorContains(t, "context canceled", vs.StreamDuties(req, mockStream))
|
|
}(t)
|
|
<-exitRoutine
|
|
cancel()
|
|
}
|
|
|
|
func TestStreamDuties_OK_ChainReorg(t *testing.T) {
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := params.BeaconConfig().MinGenesisActiveValidatorCount
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(t, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(t, err)
|
|
bs, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(t, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(t, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = deposits[i].Data.PublicKey
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
pubkeysAs48ByteType := make([][48]byte, len(pubKeys))
|
|
for i, pk := range pubKeys {
|
|
pubkeysAs48ByteType[i] = bytesutil.ToBytes48(pk)
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
c := &mockChain.ChainService{
|
|
Genesis: time.Now(),
|
|
}
|
|
vs := &Server{
|
|
Ctx: ctx,
|
|
HeadFetcher: &mockChain.ChainService{State: bs, Root: genesisRoot[:]},
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
TimeFetcher: c,
|
|
StateNotifier: &mockChain.MockStateNotifier{},
|
|
}
|
|
|
|
// Test the first validator in registry.
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: [][]byte{deposits[0].Data.PublicKey},
|
|
}
|
|
wantedRes, err := vs.duties(ctx, req)
|
|
require.NoError(t, err)
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
exitRoutine := make(chan bool)
|
|
mockStream := mock.NewMockBeaconNodeValidator_StreamDutiesServer(ctrl)
|
|
mockStream.EXPECT().Send(wantedRes).Return(nil)
|
|
mockStream.EXPECT().Send(wantedRes).Do(func(arg0 interface{}) {
|
|
exitRoutine <- true
|
|
})
|
|
mockStream.EXPECT().Context().Return(ctx).AnyTimes()
|
|
go func(tt *testing.T) {
|
|
assert.ErrorContains(t, "context canceled", vs.StreamDuties(req, mockStream))
|
|
}(t)
|
|
// Fire a reorg event. This needs to trigger
|
|
// a recomputation and resending of duties over the stream.
|
|
for sent := 0; sent == 0; {
|
|
sent = vs.StateNotifier.StateFeed().Send(&feed.Event{
|
|
Type: statefeed.Reorg,
|
|
Data: ðpbv1.EventChainReorg{Depth: uint64(params.BeaconConfig().SlotsPerEpoch), Slot: 0},
|
|
})
|
|
}
|
|
<-exitRoutine
|
|
cancel()
|
|
}
|
|
|
|
func TestAssignValidatorToSubnet(t *testing.T) {
|
|
k := pubKey(3)
|
|
|
|
vs := Server{}
|
|
vs.AssignValidatorToSubnet(k, ethpb.ValidatorStatus_ACTIVE)
|
|
coms, ok, exp := cache.SubnetIDs.GetPersistentSubnets(k)
|
|
require.Equal(t, true, ok, "No cache entry found for validator")
|
|
assert.Equal(t, params.BeaconConfig().RandomSubnetsPerValidator, uint64(len(coms)))
|
|
epochDuration := time.Duration(params.BeaconConfig().SlotsPerEpoch.Mul(params.BeaconConfig().SecondsPerSlot))
|
|
totalTime := time.Duration(params.BeaconConfig().EpochsPerRandomSubnetSubscription) * epochDuration * time.Second
|
|
receivedTime := time.Until(exp.Round(time.Second))
|
|
if receivedTime < totalTime {
|
|
t.Fatalf("Expiration time of %f was less than expected duration of %f ", receivedTime.Seconds(), totalTime.Seconds())
|
|
}
|
|
}
|
|
|
|
func TestAssignValidatorToSyncSubnet(t *testing.T) {
|
|
k := pubKey(3)
|
|
committee := make([][]byte, 0)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
committee = append(committee, pubKey(uint64(i)))
|
|
}
|
|
sCommittee := ðpb.SyncCommittee{
|
|
Pubkeys: committee,
|
|
}
|
|
registerSyncSubnet(0, 0, k, sCommittee, ethpb.ValidatorStatus_ACTIVE)
|
|
coms, _, ok, exp := cache.SyncSubnetIDs.GetSyncCommitteeSubnets(k, 0)
|
|
require.Equal(t, true, ok, "No cache entry found for validator")
|
|
assert.Equal(t, uint64(1), uint64(len(coms)))
|
|
epochDuration := time.Duration(params.BeaconConfig().SlotsPerEpoch.Mul(params.BeaconConfig().SecondsPerSlot))
|
|
totalTime := time.Duration(params.BeaconConfig().EpochsPerSyncCommitteePeriod) * epochDuration * time.Second
|
|
receivedTime := time.Until(exp.Round(time.Second)).Round(time.Second)
|
|
if receivedTime < totalTime {
|
|
t.Fatalf("Expiration time of %f was less than expected duration of %f ", receivedTime.Seconds(), totalTime.Seconds())
|
|
}
|
|
}
|
|
|
|
func BenchmarkCommitteeAssignment(b *testing.B) {
|
|
|
|
genesis := util.NewBeaconBlock()
|
|
depChainStart := uint64(8192 * 2)
|
|
deposits, _, err := util.DeterministicDepositsAndKeys(depChainStart)
|
|
require.NoError(b, err)
|
|
eth1Data, err := util.DeterministicEth1Data(len(deposits))
|
|
require.NoError(b, err)
|
|
bs, err := transition.GenesisBeaconState(context.Background(), deposits, 0, eth1Data)
|
|
require.NoError(b, err, "Could not setup genesis bs")
|
|
genesisRoot, err := genesis.Block.HashTreeRoot()
|
|
require.NoError(b, err, "Could not get signing root")
|
|
|
|
pubKeys := make([][48]byte, len(deposits))
|
|
indices := make([]uint64, len(deposits))
|
|
for i := 0; i < len(deposits); i++ {
|
|
pubKeys[i] = bytesutil.ToBytes48(deposits[i].Data.PublicKey)
|
|
indices[i] = uint64(i)
|
|
}
|
|
|
|
vs := &Server{
|
|
HeadFetcher: &mockChain.ChainService{State: bs, Root: genesisRoot[:]},
|
|
SyncChecker: &mockSync.Sync{IsSyncing: false},
|
|
}
|
|
|
|
// Create request for all validators in the system.
|
|
pks := make([][]byte, len(deposits))
|
|
for i, deposit := range deposits {
|
|
pks[i] = deposit.Data.PublicKey
|
|
}
|
|
req := ðpb.DutiesRequest{
|
|
PublicKeys: pks,
|
|
Epoch: 0,
|
|
}
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := vs.GetDuties(context.Background(), req)
|
|
assert.NoError(b, err)
|
|
}
|
|
}
|