mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
105 lines
3.3 KiB
Go
105 lines
3.3 KiB
Go
|
package blockutil
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
eth "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
||
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stateutil"
|
||
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
)
|
||
|
|
||
|
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 := stateutil.BlockBodyRoot(blk.Body)
|
||
|
if err != nil {
|
||
|
t.Fatal(errors.Wrap(err, "failed to get body root of block"))
|
||
|
}
|
||
|
want := ð.BeaconBlockHeader{
|
||
|
Slot: blk.Slot,
|
||
|
ProposerIndex: blk.ProposerIndex,
|
||
|
ParentRoot: blk.ParentRoot,
|
||
|
StateRoot: blk.StateRoot,
|
||
|
BodyRoot: bodyRoot[:],
|
||
|
}
|
||
|
|
||
|
bh, err := BeaconBlockHeaderFromBlock(blk)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !reflect.DeepEqual(want, bh) {
|
||
|
t.Errorf("BeaconBlockHeaderFromBlock() got = %v, want %v", bh, want)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
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 := stateutil.BlockBodyRoot(blk.Block.Body)
|
||
|
if err != nil {
|
||
|
t.Fatal(errors.Wrap(err, "failed to get body root of block"))
|
||
|
}
|
||
|
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)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !reflect.DeepEqual(want, bh) {
|
||
|
t.Errorf("SignedBeaconBlockHeaderFromBlock() got = %v, want %v", bh, want)
|
||
|
}
|
||
|
|
||
|
}
|