mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
83130358a9
* Add initial test * chkpt * add failing test * add span to historical state lookup * use db.HighestBlockSlot() * fix comment * update comment * i wrote a test like a good programmer. * add test back * add assertion and unskip test, something new failing tho * trying to fix test * remove -1, not sure if i need it yet * Revert "remove -1, not sure if i need it yet" This reverts commit 2cfcbb8108b28bb3d7135a993d9053150d5f1e6e. * save historical state on every save state * fix hsitorical states * set historical state in initialize state * change to a bool * fix error with empty retrieval of states * Add missing import * fix test * lock in receive block * remove state generator * Revert "lock in receive block" This reverts commit 151b10829d70b2dad3055a8db36d0e1269a853f2. * Fix Initial Sync Not Processing Canonical Block to Produce Canonical State (#2152) * fix init sync * fatal if highest observed root does not match * proto fields * Update beacon-chain/sync/initial-sync/service.go * confirm canonical state root * fix most tests * failing test * fix PR tests * lint * no simbackend changes * logf revert * add todo * fix off by one * fix test with deleted property * merge #2157 * passing tests :)
169 lines
3.7 KiB
Go
169 lines
3.7 KiB
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/big"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/internal"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
|
"github.com/prysmaticlabs/prysm/shared/p2p"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
type genesisPowChain struct {
|
|
feed *event.Feed
|
|
}
|
|
|
|
func (mp *genesisPowChain) HasChainStartLogOccurred() (bool, uint64, error) {
|
|
return false, 0, nil
|
|
}
|
|
|
|
func (mp *genesisPowChain) BlockExists(ctx context.Context, hash common.Hash) (bool, *big.Int, error) {
|
|
return true, big.NewInt(0), nil
|
|
}
|
|
|
|
func (mp *genesisPowChain) ChainStartFeed() *event.Feed {
|
|
return mp.feed
|
|
}
|
|
|
|
type afterGenesisPowChain struct {
|
|
feed *event.Feed
|
|
}
|
|
|
|
func (mp *afterGenesisPowChain) HasChainStartLogOccurred() (bool, uint64, error) {
|
|
return true, 0, nil
|
|
}
|
|
|
|
func (mp *afterGenesisPowChain) BlockExists(ctx context.Context, hash common.Hash) (bool, *big.Int, error) {
|
|
return true, big.NewInt(0), nil
|
|
}
|
|
|
|
func (mp *afterGenesisPowChain) ChainStartFeed() *event.Feed {
|
|
return mp.feed
|
|
}
|
|
|
|
func TestQuerier_StartStop(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
db := internal.SetupDB(t)
|
|
defer internal.TeardownDB(t, db)
|
|
cfg := &QuerierConfig{
|
|
P2P: &mockP2P{},
|
|
ResponseBufferSize: 100,
|
|
PowChain: &afterGenesisPowChain{},
|
|
BeaconDB: db,
|
|
ChainService: &mockChainService{},
|
|
}
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
|
|
exitRoutine := make(chan bool)
|
|
|
|
defer func() {
|
|
close(exitRoutine)
|
|
}()
|
|
|
|
go func() {
|
|
sq.Start()
|
|
exitRoutine <- true
|
|
}()
|
|
|
|
sq.Stop()
|
|
<-exitRoutine
|
|
|
|
testutil.AssertLogsContain(t, hook, "Stopping service")
|
|
|
|
hook.Reset()
|
|
}
|
|
|
|
func TestListenForStateInitialization_ContextCancelled(t *testing.T) {
|
|
db := internal.SetupDB(t)
|
|
defer internal.TeardownDB(t, db)
|
|
cfg := &QuerierConfig{
|
|
P2P: &mockP2P{},
|
|
ResponseBufferSize: 100,
|
|
ChainService: &mockChainService{},
|
|
BeaconDB: db,
|
|
}
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
exitRoutine := make(chan bool)
|
|
|
|
defer func() {
|
|
close(exitRoutine)
|
|
}()
|
|
|
|
go func() {
|
|
sq.listenForStateInitialization()
|
|
exitRoutine <- true
|
|
}()
|
|
|
|
sq.cancel()
|
|
<-exitRoutine
|
|
|
|
if sq.ctx.Done() == nil {
|
|
t.Error("Despite context being cancelled, the done channel is nil")
|
|
}
|
|
}
|
|
|
|
func TestListenForStateInitialization(t *testing.T) {
|
|
db := internal.SetupDB(t)
|
|
defer internal.TeardownDB(t, db)
|
|
cfg := &QuerierConfig{
|
|
P2P: &mockP2P{},
|
|
ResponseBufferSize: 100,
|
|
ChainService: &mockChainService{},
|
|
BeaconDB: db,
|
|
}
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
|
|
sq.chainStartBuf <- time.Now()
|
|
sq.listenForStateInitialization()
|
|
|
|
if !sq.chainStarted {
|
|
t.Fatal("ChainStart in the querier service is not true despite the log being fired")
|
|
}
|
|
sq.cancel()
|
|
}
|
|
|
|
func TestQuerier_ChainReqResponse(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
cfg := &QuerierConfig{
|
|
P2P: &mockP2P{},
|
|
ResponseBufferSize: 100,
|
|
PowChain: &afterGenesisPowChain{},
|
|
}
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
|
|
exitRoutine := make(chan bool)
|
|
go func() {
|
|
sq.run()
|
|
exitRoutine <- true
|
|
}()
|
|
|
|
response := &pb.ChainHeadResponse{
|
|
CanonicalSlot: 0,
|
|
CanonicalStateRootHash32: []byte{'a', 'b'},
|
|
}
|
|
|
|
msg := p2p.Message{
|
|
Data: response,
|
|
}
|
|
|
|
sq.responseBuf <- msg
|
|
|
|
expMsg := fmt.Sprintf(
|
|
"Latest chain head is at slot: %d and state root: %#x",
|
|
response.CanonicalSlot-params.BeaconConfig().GenesisSlot, response.CanonicalStateRootHash32,
|
|
)
|
|
|
|
<-exitRoutine
|
|
testutil.AssertLogsContain(t, hook, expMsg)
|
|
close(exitRoutine)
|
|
hook.Reset()
|
|
}
|