mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
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)
|
||
|
}
|