mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
eebcd52ee6
* slashutil * builds * interop * viz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
83 lines
2.3 KiB
Go
83 lines
2.3 KiB
Go
package stateutil_test
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"strconv"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/runtime/interop"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestState_FieldCount(t *testing.T) {
|
|
count := params.BeaconConfig().BeaconStateFieldCount
|
|
typ := reflect.TypeOf(ethpb.BeaconState{})
|
|
numFields := 0
|
|
for i := 0; i < typ.NumField(); i++ {
|
|
if typ.Field(i).Name == "state" ||
|
|
typ.Field(i).Name == "sizeCache" ||
|
|
typ.Field(i).Name == "unknownFields" {
|
|
continue
|
|
}
|
|
numFields++
|
|
}
|
|
assert.Equal(t, count, numFields)
|
|
}
|
|
|
|
func BenchmarkHashTreeRoot_Generic_512(b *testing.B) {
|
|
b.StopTimer()
|
|
genesisState := setupGenesisState(b, 512)
|
|
b.StartTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := genesisState.HashTreeRoot()
|
|
require.NoError(b, err)
|
|
}
|
|
}
|
|
|
|
func BenchmarkHashTreeRoot_Generic_16384(b *testing.B) {
|
|
b.StopTimer()
|
|
genesisState := setupGenesisState(b, 16384)
|
|
b.StartTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := genesisState.HashTreeRoot()
|
|
require.NoError(b, err)
|
|
}
|
|
}
|
|
|
|
func BenchmarkHashTreeRoot_Generic_300000(b *testing.B) {
|
|
b.StopTimer()
|
|
genesisState := setupGenesisState(b, 300000)
|
|
b.StartTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, err := genesisState.HashTreeRoot()
|
|
require.NoError(b, err)
|
|
}
|
|
}
|
|
|
|
func setupGenesisState(tb testing.TB, count uint64) *ethpb.BeaconState {
|
|
genesisState, _, err := interop.GenerateGenesisState(context.Background(), 0, 1)
|
|
require.NoError(tb, err, "Could not generate genesis beacon state")
|
|
for i := uint64(1); i < count; i++ {
|
|
someRoot := [32]byte{}
|
|
someKey := [48]byte{}
|
|
copy(someRoot[:], strconv.Itoa(int(i)))
|
|
copy(someKey[:], strconv.Itoa(int(i)))
|
|
genesisState.Validators = append(genesisState.Validators, ðpb.Validator{
|
|
PublicKey: someKey[:],
|
|
WithdrawalCredentials: someRoot[:],
|
|
EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance,
|
|
Slashed: false,
|
|
ActivationEligibilityEpoch: 1,
|
|
ActivationEpoch: 1,
|
|
ExitEpoch: 1,
|
|
WithdrawableEpoch: 1,
|
|
})
|
|
genesisState.Balances = append(genesisState.Balances, params.BeaconConfig().MaxEffectiveBalance)
|
|
}
|
|
return genesisState
|
|
}
|