mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
d9c0e65cef
* info logs beacon node improvements * prom test fixes * info logging changes * wrapped up node info logging * changed to debug level * warn logs taken care of * Terence suggestion * warn spacing * better logging in initial sync * debug level standardized * complete debug standardization * participation at epoch end * fix archive tests * even more test fixes * prom test * ops test * powtest * rpc sync test * rem part * log formatting
117 lines
3.2 KiB
Go
117 lines
3.2 KiB
Go
package blockchain
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func TestReceiveAttestation_ProcessCorrectly(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
chainService := setupBeaconChain(t, db)
|
|
r, _ := ssz.SigningRoot(ðpb.BeaconBlock{})
|
|
chainService.forkChoiceStore = &store{headRoot: r[:]}
|
|
|
|
b := ðpb.BeaconBlock{}
|
|
if err := chainService.beaconDB.SaveBlock(ctx, b); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
root, err := ssz.SigningRoot(b)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := chainService.beaconDB.SaveState(ctx, &pb.BeaconState{}, root); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
a := ðpb.Attestation{Data: ðpb.AttestationData{
|
|
Target: ðpb.Checkpoint{Root: root[:]},
|
|
Crosslink: ðpb.Crosslink{},
|
|
}}
|
|
if err := chainService.ReceiveAttestation(ctx, a); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
testutil.AssertLogsContain(t, hook, "Saved new head info")
|
|
testutil.AssertLogsContain(t, hook, "Broadcasting attestation")
|
|
}
|
|
|
|
func TestReceiveAttestation_SameHead(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
chainService := setupBeaconChain(t, db)
|
|
r, _ := ssz.SigningRoot(ðpb.BeaconBlock{})
|
|
chainService.forkChoiceStore = &store{headRoot: r[:]}
|
|
chainService.canonicalRoots[0] = r[:]
|
|
|
|
b := ðpb.BeaconBlock{}
|
|
if err := chainService.beaconDB.SaveBlock(ctx, b); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
root, err := ssz.SigningRoot(b)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := chainService.beaconDB.SaveState(ctx, &pb.BeaconState{}, root); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
a := ðpb.Attestation{Data: ðpb.AttestationData{
|
|
Target: ðpb.Checkpoint{Root: root[:]},
|
|
Crosslink: ðpb.Crosslink{},
|
|
}}
|
|
if err := chainService.ReceiveAttestation(ctx, a); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
testutil.AssertLogsDoNotContain(t, hook, "Saved new head info")
|
|
testutil.AssertLogsContain(t, hook, "Broadcasting attestation")
|
|
}
|
|
|
|
func TestReceiveAttestationNoPubsub_ProcessCorrectly(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
chainService := setupBeaconChain(t, db)
|
|
r, _ := ssz.SigningRoot(ðpb.BeaconBlock{})
|
|
chainService.forkChoiceStore = &store{headRoot: r[:]}
|
|
|
|
b := ðpb.BeaconBlock{}
|
|
if err := chainService.beaconDB.SaveBlock(ctx, b); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
root, err := ssz.SigningRoot(b)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := chainService.beaconDB.SaveState(ctx, &pb.BeaconState{}, root); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
a := ðpb.Attestation{Data: ðpb.AttestationData{
|
|
Target: ðpb.Checkpoint{Root: root[:]},
|
|
Crosslink: ðpb.Crosslink{},
|
|
}}
|
|
if err := chainService.ReceiveAttestationNoPubsub(ctx, a); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
testutil.AssertLogsContain(t, hook, "Saved new head info")
|
|
testutil.AssertLogsDoNotContain(t, hook, "Broadcasting attestation")
|
|
}
|