mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
b6e0d700ec
* Check messages received from self, add them to the store * tests * fmt
120 lines
2.6 KiB
Go
120 lines
2.6 KiB
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
dbtest "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
func TestValidateBeaconAttestation_ValidBlock(t *testing.T) {
|
|
db := dbtest.SetupDB(t)
|
|
defer dbtest.TeardownDB(t, db)
|
|
p := p2ptest.NewTestP2P(t)
|
|
ctx := context.Background()
|
|
|
|
rs := &RegularSync{
|
|
db: db,
|
|
}
|
|
|
|
blk := ðpb.BeaconBlock{
|
|
Slot: 55,
|
|
}
|
|
if err := db.SaveBlock(ctx, blk); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
blockRoot, err := ssz.SigningRoot(blk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
msg := ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
BeaconBlockRoot: blockRoot[:],
|
|
},
|
|
}
|
|
|
|
if !rs.validateBeaconAttestation(ctx, msg, p, false /*fromSelf*/) {
|
|
t.Error("Beacon attestation failed validation")
|
|
}
|
|
|
|
if !p.BroadcastCalled {
|
|
t.Error("No message was broadcast")
|
|
}
|
|
|
|
// It should ignore duplicate identical attestations.
|
|
p.BroadcastCalled = false
|
|
if rs.validateBeaconAttestation(ctx, msg, p, false /*fromSelf*/) {
|
|
t.Error("Second identical beacon attestation passed validation when it should not have")
|
|
}
|
|
if p.BroadcastCalled {
|
|
t.Error("Second identcial beacon attestation was re-broadcast")
|
|
}
|
|
}
|
|
|
|
func TestValidateBeaconAttestation_InvalidBlock(t *testing.T) {
|
|
db := dbtest.SetupDB(t)
|
|
defer dbtest.TeardownDB(t, db)
|
|
p := p2ptest.NewTestP2P(t)
|
|
ctx := context.Background()
|
|
|
|
rs := &RegularSync{
|
|
db: db,
|
|
}
|
|
|
|
msg := ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
BeaconBlockRoot: testutil.Random32Bytes(t),
|
|
},
|
|
}
|
|
|
|
if rs.validateBeaconAttestation(ctx, msg, p, false /*fromSelf*/) {
|
|
t.Error("Invalid beacon attestation passed validation when it should not have")
|
|
}
|
|
if p.BroadcastCalled {
|
|
t.Error("Invalid beacon attestation was broadcast")
|
|
}
|
|
}
|
|
|
|
func TestValidateBeaconAttestation_ValidBlock_FromSelf(t *testing.T) {
|
|
db := dbtest.SetupDB(t)
|
|
defer dbtest.TeardownDB(t, db)
|
|
p := p2ptest.NewTestP2P(t)
|
|
ctx := context.Background()
|
|
|
|
rs := &RegularSync{
|
|
db: db,
|
|
}
|
|
|
|
blk := ðpb.BeaconBlock{
|
|
Slot: 55,
|
|
}
|
|
if err := db.SaveBlock(ctx, blk); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
blockRoot, err := ssz.SigningRoot(blk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
msg := ðpb.Attestation{
|
|
Data: ðpb.AttestationData{
|
|
BeaconBlockRoot: blockRoot[:],
|
|
},
|
|
}
|
|
|
|
if rs.validateBeaconAttestation(ctx, msg, p, true /*fromSelf*/) {
|
|
t.Error("Beacon attestation passed validation")
|
|
}
|
|
|
|
if p.BroadcastCalled {
|
|
t.Error("Message was broadcast")
|
|
}
|
|
}
|