2018-12-10 05:26:44 +00:00
|
|
|
package sync
|
2018-11-19 01:59:11 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
2019-02-21 06:57:04 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
2018-11-19 01:59:11 +00:00
|
|
|
|
|
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/p2p"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
|
|
)
|
|
|
|
|
2019-02-21 06:57:04 +00:00
|
|
|
type genesisPowChain struct {
|
|
|
|
feed *event.Feed
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mp *genesisPowChain) HasChainStartLogOccurred() (bool, uint64, error) {
|
|
|
|
return false, 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) ChainStartFeed() *event.Feed {
|
|
|
|
return mp.feed
|
|
|
|
}
|
|
|
|
|
2019-02-22 15:11:26 +00:00
|
|
|
func TestQuerier_StartStop(t *testing.T) {
|
2018-11-19 01:59:11 +00:00
|
|
|
hook := logTest.NewGlobal()
|
2018-12-10 05:26:44 +00:00
|
|
|
cfg := &QuerierConfig{
|
2018-11-19 01:59:11 +00:00
|
|
|
P2P: &mockP2P{},
|
|
|
|
ResponseBufferSize: 100,
|
2019-02-21 06:57:04 +00:00
|
|
|
PowChain: &afterGenesisPowChain{},
|
2018-11-19 01:59:11 +00:00
|
|
|
}
|
2018-12-10 05:26:44 +00:00
|
|
|
sq := NewQuerierService(context.Background(), cfg)
|
2018-11-19 01:59:11 +00:00
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2019-02-21 06:57:04 +00:00
|
|
|
func TestListenForChainStart_ContextCancelled(t *testing.T) {
|
|
|
|
cfg := &QuerierConfig{
|
|
|
|
P2P: &mockP2P{},
|
|
|
|
ResponseBufferSize: 100,
|
|
|
|
PowChain: &afterGenesisPowChain{
|
|
|
|
feed: new(event.Feed),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
|
|
exitRoutine := make(chan bool)
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
close(exitRoutine)
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
sq.listenForChainStart()
|
|
|
|
exitRoutine <- true
|
|
|
|
}()
|
|
|
|
|
|
|
|
sq.cancel()
|
|
|
|
<-exitRoutine
|
|
|
|
|
|
|
|
if sq.ctx.Done() == nil {
|
|
|
|
t.Error("Despite context being cancelled, the done channel is nil")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestListenForChainStart(t *testing.T) {
|
|
|
|
cfg := &QuerierConfig{
|
|
|
|
P2P: &mockP2P{},
|
|
|
|
ResponseBufferSize: 100,
|
|
|
|
PowChain: &afterGenesisPowChain{
|
|
|
|
feed: new(event.Feed),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
sq := NewQuerierService(context.Background(), cfg)
|
|
|
|
|
|
|
|
sq.chainStartBuf <- time.Now()
|
|
|
|
sq.listenForChainStart()
|
|
|
|
|
|
|
|
if !sq.chainStarted {
|
|
|
|
t.Fatal("ChainStart in the querier service is not true despite the log being fired")
|
|
|
|
}
|
|
|
|
sq.cancel()
|
|
|
|
}
|
|
|
|
|
2019-02-22 15:11:26 +00:00
|
|
|
func TestQuerier_ChainReqResponse(t *testing.T) {
|
2018-11-19 01:59:11 +00:00
|
|
|
hook := logTest.NewGlobal()
|
2018-12-10 05:26:44 +00:00
|
|
|
cfg := &QuerierConfig{
|
2018-11-19 01:59:11 +00:00
|
|
|
P2P: &mockP2P{},
|
|
|
|
ResponseBufferSize: 100,
|
2019-02-21 06:57:04 +00:00
|
|
|
PowChain: &afterGenesisPowChain{},
|
2018-11-19 01:59:11 +00:00
|
|
|
}
|
2018-12-10 05:26:44 +00:00
|
|
|
sq := NewQuerierService(context.Background(), cfg)
|
2018-11-19 01:59:11 +00:00
|
|
|
|
|
|
|
exitRoutine := make(chan bool)
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
close(exitRoutine)
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
sq.run()
|
|
|
|
exitRoutine <- true
|
|
|
|
}()
|
|
|
|
|
|
|
|
response := &pb.ChainHeadResponse{
|
|
|
|
Slot: 0,
|
|
|
|
Hash: []byte{'a', 'b'},
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := p2p.Message{
|
|
|
|
Data: response,
|
|
|
|
}
|
|
|
|
|
|
|
|
sq.responseBuf <- msg
|
|
|
|
|
2018-12-01 22:09:12 +00:00
|
|
|
expMsg := fmt.Sprintf("Latest chain head is at slot: %d and hash %#x", response.Slot, response.Hash)
|
2018-11-19 01:59:11 +00:00
|
|
|
|
|
|
|
testutil.WaitForLog(t, hook, expMsg)
|
|
|
|
|
|
|
|
sq.cancel()
|
|
|
|
<-exitRoutine
|
|
|
|
|
|
|
|
hook.Reset()
|
|
|
|
}
|