2019-09-23 19:24:42 +00:00
|
|
|
package blockchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
2020-04-14 20:27:03 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stategen"
|
2021-06-02 23:49:52 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
2021-07-06 15:34:05 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/proto/eth/v1alpha1/wrapper"
|
2020-07-16 12:11:39 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
2019-09-23 19:24:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHeadSlot_DataRace(t *testing.T) {
|
2020-12-18 19:12:30 +00:00
|
|
|
beaconDB := testDB.SetupDB(t)
|
2019-09-23 19:24:42 +00:00
|
|
|
s := &Service{
|
2021-03-17 18:36:56 +00:00
|
|
|
cfg: &Config{BeaconDB: beaconDB},
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
go func() {
|
2020-07-16 12:11:39 +00:00
|
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
2019-09-23 19:24:42 +00:00
|
|
|
}()
|
|
|
|
s.HeadSlot()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHeadRoot_DataRace(t *testing.T) {
|
2020-12-18 19:12:30 +00:00
|
|
|
beaconDB := testDB.SetupDB(t)
|
2019-09-23 19:24:42 +00:00
|
|
|
s := &Service{
|
2021-03-17 18:36:56 +00:00
|
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
|
|
|
head: &head{root: [32]byte{'A'}},
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
go func() {
|
2020-07-16 12:11:39 +00:00
|
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
2019-09-23 19:24:42 +00:00
|
|
|
}()
|
2020-07-16 12:11:39 +00:00
|
|
|
_, err := s.HeadRoot(context.Background())
|
|
|
|
require.NoError(t, err)
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestHeadBlock_DataRace(t *testing.T) {
|
2020-12-18 19:12:30 +00:00
|
|
|
beaconDB := testDB.SetupDB(t)
|
2019-09-23 19:24:42 +00:00
|
|
|
s := &Service{
|
2021-03-17 18:36:56 +00:00
|
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
2021-07-06 15:34:05 +00:00
|
|
|
head: &head{block: wrapper.WrappedPhase0SignedBeaconBlock(ðpb.SignedBeaconBlock{})},
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
go func() {
|
2020-07-16 12:11:39 +00:00
|
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
2019-09-23 19:24:42 +00:00
|
|
|
}()
|
2020-07-16 12:11:39 +00:00
|
|
|
_, err := s.HeadBlock(context.Background())
|
|
|
|
require.NoError(t, err)
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestHeadState_DataRace(t *testing.T) {
|
2020-12-18 19:12:30 +00:00
|
|
|
beaconDB := testDB.SetupDB(t)
|
2019-09-23 19:24:42 +00:00
|
|
|
s := &Service{
|
2021-03-17 18:36:56 +00:00
|
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|
|
|
|
go func() {
|
2020-07-16 12:11:39 +00:00
|
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
2019-09-23 19:24:42 +00:00
|
|
|
}()
|
2020-07-16 12:11:39 +00:00
|
|
|
_, err := s.HeadState(context.Background())
|
|
|
|
require.NoError(t, err)
|
2019-09-23 19:24:42 +00:00
|
|
|
}
|