mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Ran gopls modernize to fix everything go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./... * Override rules_go provided dependency for golang.org/x/tools to v0.38.0. To update this, checked out rules_go, then ran `bazel run //go/tools/releaser -- upgrade-dep -mirror=false org_golang_x_tools` and copied the patches. * Fix buildtag violations and ignore buildtag violations in external * Introduce modernize analyzer package. * Add modernize "any" analyzer. * Fix violations of any analyzer * Add modernize "appendclipped" analyzer. * Fix violations of appendclipped * Add modernize "bloop" analyzer. * Add modernize "fmtappendf" analyzer. * Add modernize "forvar" analyzer. * Add modernize "mapsloop" analyzer. * Add modernize "minmax" analyzer. * Fix violations of minmax analyzer * Add modernize "omitzero" analyzer. * Add modernize "rangeint" analyzer. * Fix violations of rangeint. * Add modernize "reflecttypefor" analyzer. * Fix violations of reflecttypefor analyzer. * Add modernize "slicescontains" analyzer. * Add modernize "slicessort" analyzer. * Add modernize "slicesdelete" analyzer. This is disabled by default for now. See https://go.dev/issue/73686. * Add modernize "stringscutprefix" analyzer. * Add modernize "stringsbuilder" analyzer. * Fix violations of stringsbuilder analyzer. * Add modernize "stringsseq" analyzer. * Add modernize "testingcontext" analyzer. * Add modernize "waitgroup" analyzer. * Changelog fragment * gofmt * gazelle * Add modernize "newexpr" analyzer. * Disable newexpr until go1.26 * Add more details in WORKSPACE on how to update the override * @nalepae feedback on min() * gofmt * Fix violations of forvar
196 lines
4.8 KiB
Go
196 lines
4.8 KiB
Go
package blocks_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/beacon-chain/core/blocks"
|
|
state_native "github.com/OffchainLabs/prysm/v7/beacon-chain/state/state-native"
|
|
"github.com/OffchainLabs/prysm/v7/config/params"
|
|
"github.com/OffchainLabs/prysm/v7/consensus-types/primitives"
|
|
"github.com/OffchainLabs/prysm/v7/encoding/bytesutil"
|
|
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
|
|
"github.com/OffchainLabs/prysm/v7/runtime/version"
|
|
"github.com/OffchainLabs/prysm/v7/testing/assert"
|
|
"github.com/OffchainLabs/prysm/v7/testing/require"
|
|
"github.com/OffchainLabs/prysm/v7/testing/util"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func FakeDeposits(n uint64) []*ethpb.Eth1Data {
|
|
deposits := make([]*ethpb.Eth1Data, n)
|
|
for i := range n {
|
|
deposits[i] = ðpb.Eth1Data{
|
|
DepositCount: 1,
|
|
DepositRoot: bytesutil.PadTo([]byte("root"), 32),
|
|
}
|
|
}
|
|
return deposits
|
|
}
|
|
|
|
func TestEth1DataHasEnoughSupport(t *testing.T) {
|
|
tests := []struct {
|
|
stateVotes []*ethpb.Eth1Data
|
|
data *ethpb.Eth1Data
|
|
hasSupport bool
|
|
votingPeriodLength primitives.Epoch
|
|
}{
|
|
{
|
|
stateVotes: FakeDeposits(uint64(params.BeaconConfig().SlotsPerEpoch.Mul(4))),
|
|
data: ðpb.Eth1Data{
|
|
DepositCount: 1,
|
|
DepositRoot: bytesutil.PadTo([]byte("root"), 32),
|
|
},
|
|
hasSupport: true,
|
|
votingPeriodLength: 7,
|
|
}, {
|
|
stateVotes: FakeDeposits(uint64(params.BeaconConfig().SlotsPerEpoch.Mul(4))),
|
|
data: ðpb.Eth1Data{
|
|
DepositCount: 1,
|
|
DepositRoot: bytesutil.PadTo([]byte("root"), 32),
|
|
},
|
|
hasSupport: false,
|
|
votingPeriodLength: 8,
|
|
}, {
|
|
stateVotes: FakeDeposits(uint64(params.BeaconConfig().SlotsPerEpoch.Mul(4))),
|
|
data: ðpb.Eth1Data{
|
|
DepositCount: 1,
|
|
DepositRoot: bytesutil.PadTo([]byte("root"), 32),
|
|
},
|
|
hasSupport: false,
|
|
votingPeriodLength: 10,
|
|
},
|
|
}
|
|
|
|
params.SetupTestConfigCleanup(t)
|
|
for i, tt := range tests {
|
|
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
|
|
c := params.BeaconConfig()
|
|
c.EpochsPerEth1VotingPeriod = tt.votingPeriodLength
|
|
params.OverrideBeaconConfig(c)
|
|
|
|
s, err := state_native.InitializeFromProtoPhase0(ðpb.BeaconState{
|
|
Eth1DataVotes: tt.stateVotes,
|
|
})
|
|
require.NoError(t, err)
|
|
result, err := blocks.Eth1DataHasEnoughSupport(s, tt.data)
|
|
require.NoError(t, err)
|
|
|
|
if result != tt.hasSupport {
|
|
t.Errorf(
|
|
"blocks.Eth1DataHasEnoughSupport(%+v) = %t, wanted %t",
|
|
tt.data,
|
|
result,
|
|
tt.hasSupport,
|
|
)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestAreEth1DataEqual(t *testing.T) {
|
|
type args struct {
|
|
a *ethpb.Eth1Data
|
|
b *ethpb.Eth1Data
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want bool
|
|
}{
|
|
{
|
|
name: "true when both are nil",
|
|
args: args{
|
|
a: nil,
|
|
b: nil,
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
name: "false when only one is nil",
|
|
args: args{
|
|
a: nil,
|
|
b: ðpb.Eth1Data{
|
|
DepositRoot: make([]byte, 32),
|
|
DepositCount: 0,
|
|
BlockHash: make([]byte, 32),
|
|
},
|
|
},
|
|
want: false,
|
|
},
|
|
{
|
|
name: "true when real equality",
|
|
args: args{
|
|
a: ðpb.Eth1Data{
|
|
DepositRoot: make([]byte, 32),
|
|
DepositCount: 0,
|
|
BlockHash: make([]byte, 32),
|
|
},
|
|
b: ðpb.Eth1Data{
|
|
DepositRoot: make([]byte, 32),
|
|
DepositCount: 0,
|
|
BlockHash: make([]byte, 32),
|
|
},
|
|
},
|
|
want: true,
|
|
},
|
|
{
|
|
name: "false is field value differs",
|
|
args: args{
|
|
a: ðpb.Eth1Data{
|
|
DepositRoot: make([]byte, 32),
|
|
DepositCount: 0,
|
|
BlockHash: make([]byte, 32),
|
|
},
|
|
b: ðpb.Eth1Data{
|
|
DepositRoot: make([]byte, 32),
|
|
DepositCount: 64,
|
|
BlockHash: make([]byte, 32),
|
|
},
|
|
},
|
|
want: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert.Equal(t, tt.want, blocks.AreEth1DataEqual(tt.args.a, tt.args.b))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestProcessEth1Data_SetsCorrectly(t *testing.T) {
|
|
beaconState, err := state_native.InitializeFromProtoPhase0(ðpb.BeaconState{
|
|
Eth1DataVotes: []*ethpb.Eth1Data{},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
b := util.NewBeaconBlock()
|
|
b.Block = ðpb.BeaconBlock{
|
|
Body: ðpb.BeaconBlockBody{
|
|
Eth1Data: ðpb.Eth1Data{
|
|
DepositRoot: []byte{2},
|
|
BlockHash: []byte{3},
|
|
},
|
|
},
|
|
}
|
|
|
|
period := uint64(params.BeaconConfig().SlotsPerEpoch.Mul(uint64(params.BeaconConfig().EpochsPerEth1VotingPeriod)))
|
|
for range period {
|
|
processedState, err := blocks.ProcessEth1DataInBlock(t.Context(), beaconState, b.Block.Body.Eth1Data)
|
|
require.NoError(t, err)
|
|
require.Equal(t, true, processedState.Version() == version.Phase0)
|
|
}
|
|
|
|
newETH1DataVotes := beaconState.Eth1DataVotes()
|
|
if len(newETH1DataVotes) <= 1 {
|
|
t.Error("Expected new ETH1 data votes to have length > 1")
|
|
}
|
|
if !proto.Equal(beaconState.Eth1Data(), b.Block.Body.Eth1Data.Copy()) {
|
|
t.Errorf(
|
|
"Expected latest eth1 data to have been set to %v, received %v",
|
|
b.Block.Body.Eth1Data,
|
|
beaconState.Eth1Data(),
|
|
)
|
|
}
|
|
}
|