mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
cc773a1641
* Remove hash tree root implementations * Delete benchmark tests * Update existing tests * Gaz * Remove outdated ssz cache fuzz test 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 (
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/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 := 21
|
|
typ := reflect.TypeOf(pb.BeaconState{})
|
|
numFields := 0
|
|
for i := 0; i < typ.NumField(); i++ {
|
|
if strings.HasPrefix(typ.Field(i).Name, "XXX_") {
|
|
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 := ssz.HashTreeRoot(genesisState)
|
|
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 := ssz.HashTreeRoot(genesisState)
|
|
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 := ssz.HashTreeRoot(genesisState)
|
|
require.NoError(b, err)
|
|
}
|
|
}
|
|
|
|
func setupGenesisState(tb testing.TB, count uint64) *pb.BeaconState {
|
|
genesisState, _, err := interop.GenerateGenesisState(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
|
|
}
|