prysm-pulse/proto/prysm/v1alpha1/block/block_utils_test.go
Raul Jordan a9a4bb9163
Move Shared/Testutil into Testing (#9659)
* move testutil

* util pkg

* build

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-23 18:53:46 +00:00

196 lines
6.8 KiB
Go

package block_test
import (
"testing"
"github.com/prysmaticlabs/prysm/config/params"
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
eth "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
"github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/block"
"github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/wrapper"
"github.com/prysmaticlabs/prysm/testing/assert"
"github.com/prysmaticlabs/prysm/testing/require"
)
func TestBeaconBlockHeaderFromBlock(t *testing.T) {
hashLen := 32
blk := &eth.BeaconBlock{
Slot: 200,
ProposerIndex: 2,
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
Body: &eth.BeaconBlockBody{
Eth1Data: &eth.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 := &eth.BeaconBlockHeader{
Slot: blk.Slot,
ProposerIndex: blk.ProposerIndex,
ParentRoot: blk.ParentRoot,
StateRoot: blk.StateRoot,
BodyRoot: bodyRoot[:],
}
bh, err := block.BeaconBlockHeaderFromBlock(blk)
require.NoError(t, err)
assert.DeepEqual(t, want, bh)
}
func TestBeaconBlockHeaderFromBlockInterface(t *testing.T) {
hashLen := 32
blk := &eth.BeaconBlock{
Slot: 200,
ProposerIndex: 2,
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
Body: &eth.BeaconBlockBody{
Eth1Data: &eth.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 := &eth.BeaconBlockHeader{
Slot: blk.Slot,
ProposerIndex: blk.ProposerIndex,
ParentRoot: blk.ParentRoot,
StateRoot: blk.StateRoot,
BodyRoot: bodyRoot[:],
}
bh, err := block.BeaconBlockHeaderFromBlockInterface(wrapper.WrappedPhase0BeaconBlock(blk))
require.NoError(t, err)
assert.DeepEqual(t, want, bh)
}
func TestBeaconBlockHeaderFromBlock_NilBlockBody(t *testing.T) {
hashLen := 32
blk := &eth.BeaconBlock{
Slot: 200,
ProposerIndex: 2,
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
}
_, err := block.BeaconBlockHeaderFromBlock(blk)
require.ErrorContains(t, "nil block body", err)
}
func TestSignedBeaconBlockHeaderFromBlock(t *testing.T) {
hashLen := 32
blk := &eth.SignedBeaconBlock{Block: &eth.BeaconBlock{
Slot: 200,
ProposerIndex: 2,
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
Body: &eth.BeaconBlockBody{
Eth1Data: &eth.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 := &eth.SignedBeaconBlockHeader{Header: &eth.BeaconBlockHeader{
Slot: blk.Block.Slot,
ProposerIndex: blk.Block.ProposerIndex,
ParentRoot: blk.Block.ParentRoot,
StateRoot: blk.Block.StateRoot,
BodyRoot: bodyRoot[:],
},
Signature: blk.Signature,
}
bh, err := block.SignedBeaconBlockHeaderFromBlock(blk)
require.NoError(t, err)
assert.DeepEqual(t, want, bh)
}
func TestSignedBeaconBlockHeaderFromBlockInterface(t *testing.T) {
hashLen := 32
blk := &eth.SignedBeaconBlock{Block: &eth.BeaconBlock{
Slot: 200,
ProposerIndex: 2,
ParentRoot: bytesutil.PadTo([]byte("parent root"), hashLen),
StateRoot: bytesutil.PadTo([]byte("state root"), hashLen),
Body: &eth.BeaconBlockBody{
Eth1Data: &eth.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 := &eth.SignedBeaconBlockHeader{Header: &eth.BeaconBlockHeader{
Slot: blk.Block.Slot,
ProposerIndex: blk.Block.ProposerIndex,
ParentRoot: blk.Block.ParentRoot,
StateRoot: blk.Block.StateRoot,
BodyRoot: bodyRoot[:],
},
Signature: blk.Signature,
}
bh, err := block.SignedBeaconBlockHeaderFromBlockInterface(wrapper.WrappedPhase0SignedBeaconBlock(blk))
require.NoError(t, err)
assert.DeepEqual(t, want, bh)
}
func TestSignedBeaconBlockHeaderFromBlock_NilBlockBody(t *testing.T) {
hashLen := 32
blk := &eth.SignedBeaconBlock{Block: &eth.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 := block.SignedBeaconBlockHeaderFromBlock(blk)
require.ErrorContains(t, "nil block", err)
}