mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
77 lines
2.9 KiB
Go
77 lines
2.9 KiB
Go
package state_native
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/state/state-native/types"
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
|
)
|
|
|
|
func TestBeaconState_RotateAttestations(t *testing.T) {
|
|
st, err := InitializeFromProtoPhase0(ðpb.BeaconState{
|
|
Slot: 1,
|
|
CurrentEpochAttestations: []*ethpb.PendingAttestation{{Data: ðpb.AttestationData{Slot: 456}}},
|
|
PreviousEpochAttestations: []*ethpb.PendingAttestation{{Data: ðpb.AttestationData{Slot: 123}}},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, st.RotateAttestations())
|
|
s, ok := st.(*BeaconState)
|
|
require.Equal(t, true, ok)
|
|
require.Equal(t, 0, len(s.currentEpochAttestationsVal()))
|
|
require.Equal(t, primitives.Slot(456), s.previousEpochAttestationsVal()[0].Data.Slot)
|
|
}
|
|
|
|
func TestAppendBeyondIndicesLimit(t *testing.T) {
|
|
zeroHash := params.BeaconConfig().ZeroHash
|
|
mockblockRoots := make([][]byte, params.BeaconConfig().SlotsPerHistoricalRoot)
|
|
for i := 0; i < len(mockblockRoots); i++ {
|
|
mockblockRoots[i] = zeroHash[:]
|
|
}
|
|
|
|
mockstateRoots := make([][]byte, params.BeaconConfig().SlotsPerHistoricalRoot)
|
|
for i := 0; i < len(mockstateRoots); i++ {
|
|
mockstateRoots[i] = zeroHash[:]
|
|
}
|
|
mockrandaoMixes := make([][]byte, params.BeaconConfig().EpochsPerHistoricalVector)
|
|
for i := 0; i < len(mockrandaoMixes); i++ {
|
|
mockrandaoMixes[i] = zeroHash[:]
|
|
}
|
|
st, err := InitializeFromProtoPhase0(ðpb.BeaconState{
|
|
Slot: 1,
|
|
CurrentEpochAttestations: []*ethpb.PendingAttestation{{Data: ðpb.AttestationData{Slot: 456}}},
|
|
PreviousEpochAttestations: []*ethpb.PendingAttestation{{Data: ðpb.AttestationData{Slot: 123}}},
|
|
Validators: []*ethpb.Validator{},
|
|
Eth1Data: ðpb.Eth1Data{},
|
|
BlockRoots: mockblockRoots,
|
|
StateRoots: mockstateRoots,
|
|
RandaoMixes: mockrandaoMixes,
|
|
})
|
|
require.NoError(t, err)
|
|
_, err = st.HashTreeRoot(context.Background())
|
|
require.NoError(t, err)
|
|
s, ok := st.(*BeaconState)
|
|
require.Equal(t, true, ok)
|
|
for i := types.FieldIndex(0); i < types.FieldIndex(params.BeaconConfig().BeaconStateFieldCount); i++ {
|
|
s.dirtyFields[i] = true
|
|
}
|
|
_, err = st.HashTreeRoot(context.Background())
|
|
require.NoError(t, err)
|
|
for i := 0; i < 10; i++ {
|
|
assert.NoError(t, st.AppendValidator(ðpb.Validator{}))
|
|
}
|
|
assert.Equal(t, false, s.rebuildTrie[types.Validators])
|
|
assert.NotEqual(t, len(s.dirtyIndices[types.Validators]), 0)
|
|
|
|
for i := 0; i < indicesLimit; i++ {
|
|
assert.NoError(t, st.AppendValidator(ðpb.Validator{}))
|
|
}
|
|
assert.Equal(t, true, s.rebuildTrie[types.Validators])
|
|
assert.Equal(t, len(s.dirtyIndices[types.Validators]), 0)
|
|
}
|