mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
5aac06f04e
* begin move * use same import path * imports * regen protos * regen * no rename * generate ssz * gaz * fmt * edit build file * imports * modify * remove generated files * remove protos * edit imports in prysm * beacon chain all builds * edit script * add generated pbs * add replace rules * license for ethereumapis protos * change visibility * fmt * update build files to gaz ignore * use proper form * edit imports * wrap block * revert scripts * revert go mod
62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/stategen"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/interfaces"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestHeadSlot_DataRace(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
s := &Service{
|
|
cfg: &Config{BeaconDB: beaconDB},
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
s.HeadSlot()
|
|
}
|
|
|
|
func TestHeadRoot_DataRace(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
s := &Service{
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
|
head: &head{root: [32]byte{'A'}},
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
_, err := s.HeadRoot(context.Background())
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestHeadBlock_DataRace(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
s := &Service{
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
|
head: &head{block: interfaces.WrappedPhase0SignedBeaconBlock(ðpb.SignedBeaconBlock{})},
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
_, err := s.HeadBlock(context.Background())
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestHeadState_DataRace(t *testing.T) {
|
|
beaconDB := testDB.SetupDB(t)
|
|
s := &Service{
|
|
cfg: &Config{BeaconDB: beaconDB, StateGen: stategen.New(beaconDB)},
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
_, err := s.HeadState(context.Background())
|
|
require.NoError(t, err)
|
|
}
|