mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
339540274b
* add changes * fix for vectorize * fix bug * add new bench * use new algorithms * add latest updates * save progress * hack even more * add more changes * change library * go mod * fix deps * fix dumb bug * add flag and remove redundant code * clean up better * remove those ones * clean up benches * clean up benches * cleanup * gaz * revert change * potuz's review * potuz's review * potuz's review * gaz * potuz's review * remove cyclical import * revert ide changes * potuz's review * return
33 lines
863 B
Go
33 lines
863 B
Go
package stateutil
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
mathutil "github.com/prysmaticlabs/prysm/math"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
)
|
|
|
|
func TestValidatorConstants(t *testing.T) {
|
|
v := ðpb.Validator{}
|
|
refV := reflect.ValueOf(v).Elem()
|
|
numFields := refV.NumField()
|
|
numOfValFields := 0
|
|
|
|
for i := 0; i < numFields; i++ {
|
|
if strings.Contains(refV.Type().Field(i).Name, "state") ||
|
|
strings.Contains(refV.Type().Field(i).Name, "sizeCache") ||
|
|
strings.Contains(refV.Type().Field(i).Name, "unknownFields") {
|
|
continue
|
|
}
|
|
numOfValFields++
|
|
}
|
|
assert.Equal(t, validatorFieldRoots, numOfValFields)
|
|
assert.Equal(t, uint64(validatorFieldRoots), mathutil.PowerOf2(validatorTreeDepth))
|
|
|
|
_, err := ValidatorRegistryRoot([]*ethpb.Validator{v})
|
|
assert.NoError(t, err)
|
|
}
|