mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 07:28:06 -05:00
* Remove gogoproto compiler * Remove more gogoproto * Improvements * Fix gengo * More scripts * Gazelle, fix deps * Fix version and errors * Fix gocast for arrays * Fix ethapis * Fixes * Fix compile errors * fix go.mod * //proto/... builds * Update for protov2 * temp fix compilation to move on * Change everything to emptypb.empty * Add grpc to proto/slashings * Fix almost all build failures * Oher build problems * FIX THIS FUCKING THING * gaz literally every .bazel * Final touches * Final final touches * Fix proto * Begin moving proto.Marshal to native * Fix site_data * Fixes * Fix duplicate gateway * Fix gateway target * Fix ethapis * Fixes from review * Update * Fix * Fix status test * Fix fuzz * Add isprotoslice to fun * Change DeepEqual to DeepSSZEqual for proto arrays * Fix build * Fix gaz * Update go * Fixes * Fixes * Add case for nil validators after copy * Fix cast * Fix test * Fix imports * Go mod * Only use extension where needed * Fixes * Split gateway from gengo * gaz * go mod * Add back hydrated state * fix hydrate * Fix proto.clone * Fies * Revert "Split gateway from gengo" This reverts commit7298bb2054. * Revert "gaz" This reverts commitca95256570. * Merge all gateway into one target * go mod * Gaz * Add generate v1_gateway files * run pb again * goimports * gaz * Fix comments * Fix protos * Fix PR * Fix protos * Update grpc-gateway and ethapis * Update ethapis and gen-go-cast * Go tidy * Reorder * Fix ethapis * fix spec tests * Fix script * Remove unused import * Fix fuzz * Fix gomod * Update version * Error if the cloned result is nil * Handle optional slots * ADd more empty checks to clone * Undo fuzz changes * Fix build.bazel * Gaz * Redo fuzz changes * Undo some eth1data changes * Update go.mod Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Undo clone beacon state * Remove gogo proto more and unused v1_gateway * Add manual fix for nil vals * Fix gaz * tidy * Tidy again * Add detailed error * Revert "Add detailed error" This reverts commit59bc053dcd. * Undo varint changes * Fix nil validators in deposit test * Commit * Undo Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
199 lines
4.9 KiB
Go
199 lines
4.9 KiB
Go
package blocks_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/blocks"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stateV0"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"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 types.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 := stateV0.InitializeFromProto(&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 := stateV0.InitializeFromProto(&pb.BeaconState{
|
|
Eth1DataVotes: []*ethpb.Eth1Data{},
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
b := testutil.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)))
|
|
var ok bool
|
|
for i := uint64(0); i < period; i++ {
|
|
processedState, err := blocks.ProcessEth1DataInBlock(context.Background(), beaconState, b.Block.Body.Eth1Data)
|
|
require.NoError(t, err)
|
|
beaconState, ok = processedState.(*stateV0.BeaconState)
|
|
require.Equal(t, true, ok)
|
|
}
|
|
|
|
newETH1DataVotes := beaconState.Eth1DataVotes()
|
|
if len(newETH1DataVotes) <= 1 {
|
|
t.Error("Expected new ETH1 data votes to have length > 1")
|
|
}
|
|
if !proto.Equal(beaconState.Eth1Data(), stateV0.CopyETH1Data(b.Block.Body.Eth1Data)) {
|
|
t.Errorf(
|
|
"Expected latest eth1 data to have been set to %v, received %v",
|
|
b.Block.Body.Eth1Data,
|
|
beaconState.Eth1Data(),
|
|
)
|
|
}
|
|
}
|