mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 12:10:05 +00:00
879e310332
* panic in SizeSSZ * moving slowly * adapt old code to new interfaces * return interfaces from factory functions * replace the rest of WrappedSignedBeaconBlock * WrappedBeaconBlock * WrappedBeaconBlockBody * miscellaneous * Test_BeaconBlockIsNil * replace usages of BeaconBlockIsNil * replace usages of mutator * fix all build errors * fix some more issues * mutator changes * relax assertions when initializing * revert changes in object_mapping.go * allow calling Proto on nil * Revert "allow calling Proto on nil" This reverts commit ecc84e455381b03d24aec2fa0fa17bddbec71705. * modify Copy and Proto methods * remove unused var * fix block batch tests * correct BUILD file * Error when initializing nil objects * one more error fix * add missing comma * rename alias to blocktest * add logging * error when SignedBeaconBlock is nil * fix last test * import fix * broken * working * test fixes * reduce complexity of processPendingBlocks * simplified
121 lines
3.5 KiB
Go
121 lines
3.5 KiB
Go
package sync
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
|
mock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/signing"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
"github.com/prysmaticlabs/prysm/consensus-types/blocks"
|
|
"github.com/prysmaticlabs/prysm/consensus-types/interfaces"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestExtractBlockDataType(t *testing.T) {
|
|
// Precompute digests
|
|
genDigest, err := signing.ComputeForkDigest(params.BeaconConfig().GenesisForkVersion, params.BeaconConfig().ZeroHash[:])
|
|
require.NoError(t, err)
|
|
altairDigest, err := signing.ComputeForkDigest(params.BeaconConfig().AltairForkVersion, params.BeaconConfig().ZeroHash[:])
|
|
require.NoError(t, err)
|
|
bellatrixDigest, err := signing.ComputeForkDigest(params.BeaconConfig().BellatrixForkVersion, params.BeaconConfig().ZeroHash[:])
|
|
require.NoError(t, err)
|
|
|
|
type args struct {
|
|
digest []byte
|
|
chain blockchain.ChainInfoFetcher
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want interfaces.SignedBeaconBlock
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "no digest",
|
|
args: args{
|
|
digest: []byte{},
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
|
|
want: func() interfaces.SignedBeaconBlock {
|
|
wsb, err := blocks.NewSignedBeaconBlock(ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Body: ðpb.BeaconBlockBody{}}})
|
|
require.NoError(t, err)
|
|
return wsb
|
|
}(),
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "invalid digest",
|
|
args: args{
|
|
digest: []byte{0x00, 0x01},
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
want: nil,
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "non existent digest",
|
|
args: args{
|
|
digest: []byte{0x00, 0x01, 0x02, 0x03},
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
want: nil,
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "genesis fork version",
|
|
args: args{
|
|
digest: genDigest[:],
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
want: func() interfaces.SignedBeaconBlock {
|
|
wsb, err := blocks.NewSignedBeaconBlock(ðpb.SignedBeaconBlock{Block: ðpb.BeaconBlock{Body: ðpb.BeaconBlockBody{}}})
|
|
require.NoError(t, err)
|
|
return wsb
|
|
}(),
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "altair fork version",
|
|
args: args{
|
|
digest: altairDigest[:],
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
want: func() interfaces.SignedBeaconBlock {
|
|
wsb, err := blocks.NewSignedBeaconBlock(ðpb.SignedBeaconBlockAltair{Block: ðpb.BeaconBlockAltair{Body: ðpb.BeaconBlockBodyAltair{}}})
|
|
require.NoError(t, err)
|
|
return wsb
|
|
}(),
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "bellatrix fork version",
|
|
args: args{
|
|
digest: bellatrixDigest[:],
|
|
chain: &mock.ChainService{ValidatorsRoot: [32]byte{}},
|
|
},
|
|
want: func() interfaces.SignedBeaconBlock {
|
|
wsb, err := blocks.NewSignedBeaconBlock(ðpb.SignedBeaconBlockBellatrix{Block: ðpb.BeaconBlockBellatrix{Body: ðpb.BeaconBlockBodyBellatrix{}}})
|
|
require.NoError(t, err)
|
|
return wsb
|
|
}(),
|
|
wantErr: false,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := extractBlockDataType(tt.args.digest, tt.args.chain)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("extractBlockDataType() error = %v, wantErr %v", err, tt.wantErr)
|
|
return
|
|
}
|
|
if !reflect.DeepEqual(got, tt.want) {
|
|
t.Errorf("extractBlockDataType() got = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|