mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
5aac06f04e
* begin move * use same import path * imports * regen protos * regen * no rename * generate ssz * gaz * fmt * edit build file * imports * modify * remove generated files * remove protos * edit imports in prysm * beacon chain all builds * edit script * add generated pbs * add replace rules * license for ethereumapis protos * change visibility * fmt * update build files to gaz ignore * use proper form * edit imports * wrap block * revert scripts * revert go mod
116 lines
3.9 KiB
Go
116 lines
3.9 KiB
Go
package blockutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
eth "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestBeaconBlockHeaderFromBlock(t *testing.T) {
|
|
hashLen := 32
|
|
blk := ð.BeaconBlock{
|
|
Slot: 200,
|
|
ProposerIndex: 2,
|
|
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
|
|
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
|
|
Body: ð.BeaconBlockBody{
|
|
Eth1Data: ð.Eth1Data{
|
|
BlockHash: bytesutil.PadTo([]byte("block hash"), hashLen),
|
|
DepositRoot: bytesutil.PadTo([]byte("deposit root"), hashLen),
|
|
DepositCount: 1,
|
|
},
|
|
RandaoReveal: bytesutil.PadTo([]byte("randao"), params.BeaconConfig().BLSSignatureLength),
|
|
Graffiti: bytesutil.PadTo([]byte("teehee"), hashLen),
|
|
ProposerSlashings: []*eth.ProposerSlashing{},
|
|
AttesterSlashings: []*eth.AttesterSlashing{},
|
|
Attestations: []*eth.Attestation{},
|
|
Deposits: []*eth.Deposit{},
|
|
VoluntaryExits: []*eth.SignedVoluntaryExit{},
|
|
},
|
|
}
|
|
bodyRoot, err := blk.Body.HashTreeRoot()
|
|
require.NoError(t, err)
|
|
want := ð.BeaconBlockHeader{
|
|
Slot: blk.Slot,
|
|
ProposerIndex: blk.ProposerIndex,
|
|
ParentRoot: blk.ParentRoot,
|
|
StateRoot: blk.StateRoot,
|
|
BodyRoot: bodyRoot[:],
|
|
}
|
|
|
|
bh, err := BeaconBlockHeaderFromBlock(blk)
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, want, bh)
|
|
}
|
|
|
|
func TestBeaconBlockHeaderFromBlock_NilBlockBody(t *testing.T) {
|
|
hashLen := 32
|
|
blk := ð.BeaconBlock{
|
|
Slot: 200,
|
|
ProposerIndex: 2,
|
|
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
|
|
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
|
|
}
|
|
_, err := BeaconBlockHeaderFromBlock(blk)
|
|
require.ErrorContains(t, "nil block body", err)
|
|
}
|
|
|
|
func TestSignedBeaconBlockHeaderFromBlock(t *testing.T) {
|
|
hashLen := 32
|
|
blk := ð.SignedBeaconBlock{Block: ð.BeaconBlock{
|
|
Slot: 200,
|
|
ProposerIndex: 2,
|
|
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
|
|
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
|
|
Body: ð.BeaconBlockBody{
|
|
Eth1Data: ð.Eth1Data{
|
|
BlockHash: bytesutil.PadTo([]byte("block hash"), hashLen),
|
|
DepositRoot: bytesutil.PadTo([]byte("deposit root"), hashLen),
|
|
DepositCount: 1,
|
|
},
|
|
RandaoReveal: bytesutil.PadTo([]byte("randao"), params.BeaconConfig().BLSSignatureLength),
|
|
Graffiti: bytesutil.PadTo([]byte("teehee"), hashLen),
|
|
ProposerSlashings: []*eth.ProposerSlashing{},
|
|
AttesterSlashings: []*eth.AttesterSlashing{},
|
|
Attestations: []*eth.Attestation{},
|
|
Deposits: []*eth.Deposit{},
|
|
VoluntaryExits: []*eth.SignedVoluntaryExit{},
|
|
},
|
|
},
|
|
Signature: bytesutil.PadTo([]byte("signature"), params.BeaconConfig().BLSSignatureLength),
|
|
}
|
|
bodyRoot, err := blk.Block.Body.HashTreeRoot()
|
|
require.NoError(t, err)
|
|
want := ð.SignedBeaconBlockHeader{Header: ð.BeaconBlockHeader{
|
|
Slot: blk.Block.Slot,
|
|
ProposerIndex: blk.Block.ProposerIndex,
|
|
ParentRoot: blk.Block.ParentRoot,
|
|
StateRoot: blk.Block.StateRoot,
|
|
BodyRoot: bodyRoot[:],
|
|
},
|
|
Signature: blk.Signature,
|
|
}
|
|
|
|
bh, err := SignedBeaconBlockHeaderFromBlock(blk)
|
|
require.NoError(t, err)
|
|
assert.DeepEqual(t, want, bh)
|
|
}
|
|
|
|
func TestSignedBeaconBlockHeaderFromBlock_NilBlockBody(t *testing.T) {
|
|
hashLen := 32
|
|
blk := ð.SignedBeaconBlock{Block: ð.BeaconBlock{
|
|
Slot: 200,
|
|
ProposerIndex: 2,
|
|
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
|
|
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
|
|
},
|
|
Signature: bytesutil.PadTo([]byte("signature"), params.BeaconConfig().BLSSignatureLength),
|
|
}
|
|
_, err := SignedBeaconBlockHeaderFromBlock(blk)
|
|
require.ErrorContains(t, "nil block", err)
|
|
}
|