mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
* Remove native state flag and use native state in spectests
* remove feature from tests
* use e2e config in slasher simulator
* use params.BeaconConfig in testutil
* use correct function
* use minimal config in go_test
* fix TestListValidators
* parameterize sync committee bits and aggregation bits
* Fix TestServer_ListIndexedAttestations_GenesisEpoch
(cherry picked from commit 254ab623dde08ae8886b152facdbbd8889ed79db)
* fix more tests
* fix even more
* moreeee
* aaaand more
* one more fix
* one more
* simplify TestGetAltairDuties_UnknownPubkey
* comment out problematic test
* one more fix
* one more
* aaaand one more
* another
* use fieldparams in HydrateBlindedBeaconBlockBodyBellatrix
* create new package for mainnet tests
* TestServer_GetBellatrixBeaconBlock
* change slashed validator index
* clear cache in reward_test.go
* deprecate flag
* create bazel mainnet target
* move attester mainnet test to mainnet target
* "fix" proposer tests
* use minimal config in TestServer_circuitBreakBuilder
* fix TestProposer_ProposeBlock_OK
* more fixes in validator package
* more fixes
* more fixes
* test code
* move TestProposer_GetBeaconBlock_BellatrixEpoch to minimal
* finally
* remove proposer_bellatrix_mainnet_test.go
* fix TestServer_GetBellatrixBeaconBlock_HappyCase
* fix TestServer_GetBellatrixBeaconBlock_BuilderCase
* Preston needs to fix this!
* Revert "Preston needs to fix this!"
This reverts commit b03d97a16e.
* remove proto state tests
* fix migration tests
* static analysis fix
* review
* remove proto state
* swap state in tests
* fix BUILD file in /proto/testing
* remove metrics test with nil state
198 lines
8.0 KiB
Go
198 lines
8.0 KiB
Go
package altair_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/altair"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/epoch"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/time"
|
|
state_native "github.com/prysmaticlabs/prysm/v3/beacon-chain/state/state-native"
|
|
"github.com/prysmaticlabs/prysm/v3/config/params"
|
|
types "github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v3/encoding/bytesutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/require"
|
|
"github.com/prysmaticlabs/prysm/v3/testing/util"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func TestProcessSyncCommitteeUpdates_CanRotate(t *testing.T) {
|
|
s, _ := util.DeterministicGenesisStateAltair(t, params.BeaconConfig().MaxValidatorsPerCommittee)
|
|
h := ðpb.BeaconBlockHeader{
|
|
StateRoot: bytesutil.PadTo([]byte{'a'}, 32),
|
|
ParentRoot: bytesutil.PadTo([]byte{'b'}, 32),
|
|
BodyRoot: bytesutil.PadTo([]byte{'c'}, 32),
|
|
}
|
|
require.NoError(t, s.SetLatestBlockHeader(h))
|
|
postState, err := altair.ProcessSyncCommitteeUpdates(context.Background(), s)
|
|
require.NoError(t, err)
|
|
current, err := postState.CurrentSyncCommittee()
|
|
require.NoError(t, err)
|
|
next, err := postState.NextSyncCommittee()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, current, next)
|
|
|
|
require.NoError(t, s.SetSlot(params.BeaconConfig().SlotsPerEpoch))
|
|
postState, err = altair.ProcessSyncCommitteeUpdates(context.Background(), s)
|
|
require.NoError(t, err)
|
|
c, err := postState.CurrentSyncCommittee()
|
|
require.NoError(t, err)
|
|
n, err := postState.NextSyncCommittee()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, current, c)
|
|
require.DeepEqual(t, next, n)
|
|
|
|
require.NoError(t, s.SetSlot(types.Slot(params.BeaconConfig().EpochsPerSyncCommitteePeriod)*params.BeaconConfig().SlotsPerEpoch-1))
|
|
postState, err = altair.ProcessSyncCommitteeUpdates(context.Background(), s)
|
|
require.NoError(t, err)
|
|
c, err = postState.CurrentSyncCommittee()
|
|
require.NoError(t, err)
|
|
n, err = postState.NextSyncCommittee()
|
|
require.NoError(t, err)
|
|
require.NotEqual(t, current, c)
|
|
require.NotEqual(t, next, n)
|
|
require.DeepEqual(t, next, c)
|
|
|
|
// Test boundary condition.
|
|
slot := params.BeaconConfig().SlotsPerEpoch * types.Slot(time.CurrentEpoch(s)+params.BeaconConfig().EpochsPerSyncCommitteePeriod)
|
|
require.NoError(t, s.SetSlot(slot))
|
|
boundaryCommittee, err := altair.NextSyncCommittee(context.Background(), s)
|
|
require.NoError(t, err)
|
|
require.DeepNotEqual(t, boundaryCommittee, n)
|
|
}
|
|
|
|
func TestProcessParticipationFlagUpdates_CanRotate(t *testing.T) {
|
|
s, _ := util.DeterministicGenesisStateAltair(t, params.BeaconConfig().MaxValidatorsPerCommittee)
|
|
c, err := s.CurrentEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, make([]byte, params.BeaconConfig().MaxValidatorsPerCommittee), c)
|
|
p, err := s.PreviousEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, make([]byte, params.BeaconConfig().MaxValidatorsPerCommittee), p)
|
|
|
|
newC := []byte{'a'}
|
|
newP := []byte{'b'}
|
|
require.NoError(t, s.SetCurrentParticipationBits(newC))
|
|
require.NoError(t, s.SetPreviousParticipationBits(newP))
|
|
c, err = s.CurrentEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, newC, c)
|
|
p, err = s.PreviousEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, newP, p)
|
|
|
|
s, err = altair.ProcessParticipationFlagUpdates(s)
|
|
require.NoError(t, err)
|
|
c, err = s.CurrentEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, make([]byte, params.BeaconConfig().MaxValidatorsPerCommittee), c)
|
|
p, err = s.PreviousEpochParticipation()
|
|
require.NoError(t, err)
|
|
require.DeepEqual(t, newC, p)
|
|
}
|
|
|
|
func TestProcessSlashings_NotSlashed(t *testing.T) {
|
|
base := ðpb.BeaconStateAltair{
|
|
Slot: 0,
|
|
Validators: []*ethpb.Validator{{Slashed: true}},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance},
|
|
Slashings: []uint64{0, 1e9},
|
|
}
|
|
s, err := state_native.InitializeFromProtoAltair(base)
|
|
require.NoError(t, err)
|
|
newState, err := epoch.ProcessSlashings(s, params.BeaconConfig().ProportionalSlashingMultiplierAltair)
|
|
require.NoError(t, err)
|
|
wanted := params.BeaconConfig().MaxEffectiveBalance
|
|
assert.Equal(t, wanted, newState.Balances()[0], "Unexpected slashed balance")
|
|
}
|
|
|
|
func TestProcessSlashings_SlashedLess(t *testing.T) {
|
|
tests := []struct {
|
|
state *ethpb.BeaconStateAltair
|
|
want uint64
|
|
}{
|
|
{
|
|
state: ðpb.BeaconStateAltair{
|
|
Validators: []*ethpb.Validator{
|
|
{Slashed: true,
|
|
WithdrawableEpoch: params.BeaconConfig().EpochsPerSlashingsVector / 2,
|
|
EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance}},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance, params.BeaconConfig().MaxEffectiveBalance},
|
|
Slashings: []uint64{0, 1e9},
|
|
},
|
|
want: uint64(30000000000),
|
|
},
|
|
{
|
|
state: ðpb.BeaconStateAltair{
|
|
Validators: []*ethpb.Validator{
|
|
{Slashed: true,
|
|
WithdrawableEpoch: params.BeaconConfig().EpochsPerSlashingsVector / 2,
|
|
EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance, params.BeaconConfig().MaxEffectiveBalance},
|
|
Slashings: []uint64{0, 1e9},
|
|
},
|
|
want: uint64(31000000000),
|
|
},
|
|
{
|
|
state: ðpb.BeaconStateAltair{
|
|
Validators: []*ethpb.Validator{
|
|
{Slashed: true,
|
|
WithdrawableEpoch: params.BeaconConfig().EpochsPerSlashingsVector / 2,
|
|
EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance},
|
|
},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance, params.BeaconConfig().MaxEffectiveBalance},
|
|
Slashings: []uint64{0, 2 * 1e9},
|
|
},
|
|
want: uint64(30000000000),
|
|
},
|
|
{
|
|
state: ðpb.BeaconStateAltair{
|
|
Validators: []*ethpb.Validator{
|
|
{Slashed: true,
|
|
WithdrawableEpoch: params.BeaconConfig().EpochsPerSlashingsVector / 2,
|
|
EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance - params.BeaconConfig().EffectiveBalanceIncrement},
|
|
{ExitEpoch: params.BeaconConfig().FarFutureEpoch, EffectiveBalance: params.BeaconConfig().MaxEffectiveBalance - params.BeaconConfig().EffectiveBalanceIncrement}},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance - params.BeaconConfig().EffectiveBalanceIncrement, params.BeaconConfig().MaxEffectiveBalance - params.BeaconConfig().EffectiveBalanceIncrement},
|
|
Slashings: []uint64{0, 1e9},
|
|
},
|
|
want: uint64(29000000000),
|
|
},
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
helpers.ClearCache()
|
|
original := proto.Clone(tt.state)
|
|
s, err := state_native.InitializeFromProtoAltair(tt.state)
|
|
require.NoError(t, err)
|
|
newState, err := epoch.ProcessSlashings(s, params.BeaconConfig().ProportionalSlashingMultiplierAltair)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, tt.want, newState.Balances()[0], "ProcessSlashings({%v}) = newState; newState.Balances[0] = %d", original, newState.Balances()[0])
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestProcessSlashings_BadValue(t *testing.T) {
|
|
base := ðpb.BeaconStateAltair{
|
|
Slot: 0,
|
|
Validators: []*ethpb.Validator{{Slashed: true}},
|
|
Balances: []uint64{params.BeaconConfig().MaxEffectiveBalance},
|
|
Slashings: []uint64{math.MaxUint64, 1e9},
|
|
}
|
|
s, err := state_native.InitializeFromProtoAltair(base)
|
|
require.NoError(t, err)
|
|
_, err = epoch.ProcessSlashings(s, params.BeaconConfig().ProportionalSlashingMultiplierAltair)
|
|
require.ErrorContains(t, "addition overflows", err)
|
|
}
|