2021-07-26 20:55:30 +00:00
|
|
|
package v2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime/debug"
|
2021-07-27 15:47:03 +00:00
|
|
|
"sync"
|
2021-07-26 20:55:30 +00:00
|
|
|
"testing"
|
2021-07-27 15:47:03 +00:00
|
|
|
|
2021-08-19 19:33:05 +00:00
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
2021-07-29 21:45:17 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
2021-09-23 18:53:46 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
2021-07-26 20:55:30 +00:00
|
|
|
)
|
|
|
|
|
2021-07-27 15:47:03 +00:00
|
|
|
func TestBeaconState_SlotDataRace(t *testing.T) {
|
2021-07-29 21:45:17 +00:00
|
|
|
headState, err := InitializeFromProto(ðpb.BeaconStateAltair{Slot: 1})
|
2021-07-27 15:47:03 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
wg.Add(2)
|
|
|
|
go func() {
|
|
|
|
require.NoError(t, headState.SetSlot(0))
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
headState.Slot()
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2021-07-26 20:55:30 +00:00
|
|
|
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.GenesisValidatorRoot()
|
|
|
|
_ = st.GenesisUnixTime()
|
|
|
|
_ = st.GenesisValidatorRoot()
|
|
|
|
_ = st.Slot()
|
|
|
|
_ = st.Fork()
|
|
|
|
_ = st.LatestBlockHeader()
|
|
|
|
_ = st.ParentRoot()
|
|
|
|
_ = 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([48]byte{})
|
|
|
|
_ = st.PubkeyAtIndex(0)
|
|
|
|
_ = st.NumValidators()
|
|
|
|
_ = st.Balances()
|
|
|
|
_, err = st.BalanceAtIndex(0)
|
|
|
|
_ = err
|
|
|
|
_ = st.BalancesLength()
|
|
|
|
_ = st.RandaoMixes()
|
|
|
|
_, err = st.RandaoMixAtIndex(0)
|
|
|
|
_ = err
|
|
|
|
_ = st.RandaoMixesLength()
|
|
|
|
_ = st.Slashings()
|
|
|
|
_, err = st.CurrentEpochParticipation()
|
|
|
|
_ = err
|
|
|
|
_, err = st.PreviousEpochParticipation()
|
|
|
|
_ = err
|
|
|
|
_ = st.JustificationBits()
|
|
|
|
_ = st.PreviousJustifiedCheckpoint()
|
|
|
|
_ = st.CurrentJustifiedCheckpoint()
|
|
|
|
_ = st.FinalizedCheckpoint()
|
|
|
|
_, err = st.CurrentEpochParticipation()
|
|
|
|
_ = err
|
|
|
|
_, err = st.PreviousEpochParticipation()
|
|
|
|
_ = err
|
|
|
|
_, err = st.InactivityScores()
|
|
|
|
_ = err
|
|
|
|
_, err = st.CurrentSyncCommittee()
|
|
|
|
_ = err
|
|
|
|
_, err = st.NextSyncCommittee()
|
|
|
|
_ = err
|
|
|
|
}
|
2021-08-19 19:33:05 +00:00
|
|
|
|
|
|
|
func TestBeaconState_ValidatorByPubkey(t *testing.T) {
|
|
|
|
keyCreator := func(input []byte) [48]byte {
|
|
|
|
nKey := [48]byte{}
|
|
|
|
copy(nKey[:1], input)
|
|
|
|
return nKey
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
modifyFunc func(b *BeaconState, k [48]byte)
|
|
|
|
exists bool
|
|
|
|
expectedIdx types.ValidatorIndex
|
|
|
|
largestIdxInSet types.ValidatorIndex
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "retrieve validator",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
},
|
|
|
|
exists: true,
|
|
|
|
expectedIdx: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retrieve validator with multiple validators from the start",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
key1 := keyCreator([]byte{'C'})
|
|
|
|
key2 := keyCreator([]byte{'D'})
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key1[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key2[:]}))
|
|
|
|
},
|
|
|
|
exists: true,
|
|
|
|
expectedIdx: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retrieve validator with multiple validators",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
key1 := keyCreator([]byte{'C'})
|
|
|
|
key2 := keyCreator([]byte{'D'})
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key1[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key2[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
},
|
|
|
|
exists: true,
|
|
|
|
expectedIdx: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retrieve validator with multiple validators from the start with shared state",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
key1 := keyCreator([]byte{'C'})
|
|
|
|
key2 := keyCreator([]byte{'D'})
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
_ = b.Copy()
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key1[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key2[:]}))
|
|
|
|
},
|
|
|
|
exists: true,
|
|
|
|
expectedIdx: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retrieve validator with multiple validators with shared state",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
key1 := keyCreator([]byte{'C'})
|
|
|
|
key2 := keyCreator([]byte{'D'})
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key1[:]}))
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key2[:]}))
|
|
|
|
n := b.Copy()
|
|
|
|
// Append to another state
|
|
|
|
assert.NoError(t, n.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
|
|
|
|
},
|
|
|
|
exists: false,
|
|
|
|
expectedIdx: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "retrieve validator with multiple validators with shared state at boundary",
|
|
|
|
modifyFunc: func(b *BeaconState, key [48]byte) {
|
|
|
|
key1 := keyCreator([]byte{'C'})
|
|
|
|
assert.NoError(t, b.AppendValidator(ðpb.Validator{PublicKey: key1[:]}))
|
|
|
|
n := b.Copy()
|
|
|
|
// Append to another state
|
|
|
|
assert.NoError(t, n.AppendValidator(ðpb.Validator{PublicKey: key[:]}))
|
|
|
|
|
|
|
|
},
|
|
|
|
exists: false,
|
|
|
|
expectedIdx: 0,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
s, err := InitializeFromProto(ðpb.BeaconStateAltair{})
|
|
|
|
require.NoError(t, err)
|
|
|
|
nKey := keyCreator([]byte{'A'})
|
|
|
|
tt.modifyFunc(s, nKey)
|
|
|
|
idx, ok := s.ValidatorIndexByPubkey(nKey)
|
|
|
|
assert.Equal(t, tt.exists, ok)
|
|
|
|
assert.Equal(t, tt.expectedIdx, idx)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|