mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
37cba662f1
* toggle flags * Merge branch 'master' of github.com:prysmaticlabs/prysm * Merge branch 'master' of github.com:prysmaticlabs/prysm * run gofmt * Merge branch 'master' into lint-repo
79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stategen"
|
|
)
|
|
|
|
func TestHeadSlot_DataRace(t *testing.T) {
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
s := &Service{
|
|
beaconDB: db,
|
|
}
|
|
go func() {
|
|
if err := s.saveHead(context.Background(), [32]byte{}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
s.HeadSlot()
|
|
}
|
|
|
|
func TestHeadRoot_DataRace(t *testing.T) {
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
s := &Service{
|
|
beaconDB: db,
|
|
head: &head{root: [32]byte{'A'}},
|
|
stateGen: stategen.New(db, cache.NewStateSummaryCache()),
|
|
}
|
|
go func() {
|
|
if err := s.saveHead(context.Background(), [32]byte{}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
if _, err := s.HeadRoot(context.Background()); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestHeadBlock_DataRace(t *testing.T) {
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
s := &Service{
|
|
beaconDB: db,
|
|
head: &head{block: ðpb.SignedBeaconBlock{}},
|
|
stateGen: stategen.New(db, cache.NewStateSummaryCache()),
|
|
}
|
|
go func() {
|
|
if err := s.saveHead(context.Background(), [32]byte{}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
if _, err := s.HeadBlock(context.Background()); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestHeadState_DataRace(t *testing.T) {
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
s := &Service{
|
|
beaconDB: db,
|
|
stateGen: stategen.New(db, cache.NewStateSummaryCache()),
|
|
}
|
|
go func() {
|
|
if err := s.saveHead(context.Background(), [32]byte{}); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
if _, err := s.HeadState(context.Background()); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|