mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
134 lines
3.7 KiB
Go
134 lines
3.7 KiB
Go
package v2
|
|
|
|
import (
|
|
"runtime/debug"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/state"
|
|
testtmpl "github.com/prysmaticlabs/prysm/v3/beacon-chain/state/testing"
|
|
fieldparams "github.com/prysmaticlabs/prysm/v3/config/fieldparams"
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
)
|
|
|
|
func TestBeaconState_SlotDataRace(t *testing.T) {
|
|
testtmpl.VerifyBeaconStateSlotDataRace(t, func() (state.BeaconState, error) {
|
|
return InitializeFromProto(ðpb.BeaconStateAltair{Slot: 1})
|
|
})
|
|
}
|
|
|
|
func TestNilState_NoPanic(t *testing.T) {
|
|
var st *BeaconState
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
t.Errorf("Method panicked when it was not supposed to: %v\n%v\n", r, string(debug.Stack()))
|
|
}
|
|
}()
|
|
// retrieve elements from nil state
|
|
_ = st.GenesisTime()
|
|
_ = st.GenesisValidatorsRoot()
|
|
_ = st.GenesisValidatorsRoot()
|
|
_ = st.Slot()
|
|
_ = st.Fork()
|
|
_ = st.LatestBlockHeader()
|
|
_ = st.BlockRoots()
|
|
_, err := st.BlockRootAtIndex(0)
|
|
_ = err
|
|
_ = st.StateRoots()
|
|
_ = st.HistoricalRoots()
|
|
_ = st.Eth1Data()
|
|
_ = st.Eth1DataVotes()
|
|
_ = st.Eth1DepositIndex()
|
|
_, err = st.ValidatorAtIndex(0)
|
|
_ = err
|
|
_, err = st.ValidatorAtIndexReadOnly(0)
|
|
_ = err
|
|
_, _ = st.ValidatorIndexByPubkey([fieldparams.BLSPubkeyLength]byte{})
|
|
_ = st.PubkeyAtIndex(0)
|
|
_ = st.NumValidators()
|
|
_ = st.Balances()
|
|
_, err = st.BalanceAtIndex(0)
|
|
_ = err
|
|
_ = st.BalancesLength()
|
|
_ = st.RandaoMixes()
|
|
_, err = st.RandaoMixAtIndex(0)
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_ = st.RandaoMixesLength()
|
|
_ = st.Slashings()
|
|
_, err = st.CurrentEpochParticipation()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_, err = st.PreviousEpochParticipation()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_ = st.JustificationBits()
|
|
_ = err
|
|
_ = st.PreviousJustifiedCheckpoint()
|
|
_ = st.CurrentJustifiedCheckpoint()
|
|
_ = st.FinalizedCheckpoint()
|
|
_, err = st.CurrentEpochParticipation()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_, err = st.PreviousEpochParticipation()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_, err = st.InactivityScores()
|
|
_ = err
|
|
_, err = st.CurrentSyncCommittee()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_, err = st.NextSyncCommittee()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
_, _, _, err = st.UnrealizedCheckpointBalances()
|
|
require.ErrorIs(t, ErrNilInnerState, err)
|
|
}
|
|
|
|
func TestBeaconState_MatchCurrentJustifiedCheckpt(t *testing.T) {
|
|
testtmpl.VerifyBeaconStateMatchCurrentJustifiedCheckpt(
|
|
t,
|
|
func(cp *ethpb.Checkpoint) (state.BeaconState, error) {
|
|
return InitializeFromProto(ðpb.BeaconStateAltair{CurrentJustifiedCheckpoint: cp})
|
|
},
|
|
func(i state.BeaconState) {
|
|
s, ok := i.(*BeaconState)
|
|
if !ok {
|
|
panic("error in type assertion in test template")
|
|
}
|
|
s.state = nil
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestBeaconState_MatchPreviousJustifiedCheckpt(t *testing.T) {
|
|
testtmpl.VerifyBeaconStateMatchPreviousJustifiedCheckpt(
|
|
t,
|
|
func(cp *ethpb.Checkpoint) (state.BeaconState, error) {
|
|
return InitializeFromProto(ðpb.BeaconStateAltair{PreviousJustifiedCheckpoint: cp})
|
|
},
|
|
func(i state.BeaconState) {
|
|
s, ok := i.(*BeaconState)
|
|
if !ok {
|
|
panic("error in type assertion in test template")
|
|
}
|
|
s.state = nil
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestBeaconState_MarshalSSZ_NilState(t *testing.T) {
|
|
testtmpl.VerifyBeaconStateMarshalSSZNilState(
|
|
t,
|
|
func() (state.BeaconState, error) {
|
|
return InitializeFromProto(ðpb.BeaconStateAltair{})
|
|
},
|
|
func(i state.BeaconState) {
|
|
s, ok := i.(*BeaconState)
|
|
if !ok {
|
|
panic("error in type assertion in test template")
|
|
}
|
|
s.state = nil
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestBeaconState_ValidatorByPubkey(t *testing.T) {
|
|
testtmpl.VerifyBeaconStateValidatorByPubkey(t, func() (state.BeaconState, error) {
|
|
return InitializeFromProto(ðpb.BeaconStateAltair{})
|
|
})
|
|
}
|