mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
c69bce5d84
* Use fieldparams for pubkey length * Fix validator tests * fix more tests * fix mock validator * Fix typo * bunch of typos * Update bytes.go * Update BUILD.bazel Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
75 lines
2.4 KiB
Go
75 lines
2.4 KiB
Go
package v1_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
v1 "github.com/prysmaticlabs/prysm/beacon-chain/state/v1"
|
|
fieldparams "github.com/prysmaticlabs/prysm/config/fieldparams"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestReadOnlyValidator_ReturnsErrorOnNil(t *testing.T) {
|
|
if _, err := v1.NewValidator(nil); err != v1.ErrNilWrappedValidator {
|
|
t.Errorf("Wrong error returned. Got %v, wanted %v", err, v1.ErrNilWrappedValidator)
|
|
}
|
|
}
|
|
|
|
func TestReadOnlyValidator_EffectiveBalance(t *testing.T) {
|
|
bal := uint64(234)
|
|
v, err := v1.NewValidator(ðpb.Validator{EffectiveBalance: bal})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, bal, v.EffectiveBalance())
|
|
}
|
|
|
|
func TestReadOnlyValidator_ActivationEligibilityEpoch(t *testing.T) {
|
|
epoch := types.Epoch(234)
|
|
v, err := v1.NewValidator(ðpb.Validator{ActivationEligibilityEpoch: epoch})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, epoch, v.ActivationEligibilityEpoch())
|
|
}
|
|
|
|
func TestReadOnlyValidator_ActivationEpoch(t *testing.T) {
|
|
epoch := types.Epoch(234)
|
|
v, err := v1.NewValidator(ðpb.Validator{ActivationEpoch: epoch})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, epoch, v.ActivationEpoch())
|
|
}
|
|
|
|
func TestReadOnlyValidator_WithdrawableEpoch(t *testing.T) {
|
|
epoch := types.Epoch(234)
|
|
v, err := v1.NewValidator(ðpb.Validator{WithdrawableEpoch: epoch})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, epoch, v.WithdrawableEpoch())
|
|
}
|
|
|
|
func TestReadOnlyValidator_ExitEpoch(t *testing.T) {
|
|
epoch := types.Epoch(234)
|
|
v, err := v1.NewValidator(ðpb.Validator{ExitEpoch: epoch})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, epoch, v.ExitEpoch())
|
|
}
|
|
|
|
func TestReadOnlyValidator_PublicKey(t *testing.T) {
|
|
key := [fieldparams.BLSPubkeyLength]byte{0xFA, 0xCC}
|
|
v, err := v1.NewValidator(ðpb.Validator{PublicKey: key[:]})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, key, v.PublicKey())
|
|
}
|
|
|
|
func TestReadOnlyValidator_WithdrawalCredentials(t *testing.T) {
|
|
creds := []byte{0xFA, 0xCC}
|
|
v, err := v1.NewValidator(ðpb.Validator{WithdrawalCredentials: creds})
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, creds, v.WithdrawalCredentials())
|
|
}
|
|
|
|
func TestReadOnlyValidator_Slashed(t *testing.T) {
|
|
slashed := true
|
|
v, err := v1.NewValidator(ðpb.Validator{Slashed: slashed})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, slashed, v.Slashed())
|
|
}
|