mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* moving beacon block fields from cloners to individual files and adding fuzzing tests * adding missed tests * fixing tests: * removing deep not equals for now * adding clarifying comment
197 lines
4.9 KiB
Go
197 lines
4.9 KiB
Go
package blocks_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/core/blocks"
|
|
state_native "github.com/prysmaticlabs/prysm/v5/beacon-chain/state/state-native"
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v5/encoding/bytesutil"
|
|
ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v5/runtime/version"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/util"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
func FakeDeposits(n uint64) []*ethpb.Eth1Data {
|
|
deposits := make([]*ethpb.Eth1Data, n)
|
|
for i := uint64(0); i < n; i++ {
|
|
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 i := uint64(0); i < period; i++ {
|
|
processedState, err := blocks.ProcessEth1DataInBlock(context.Background(), 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(),
|
|
)
|
|
}
|
|
}
|