mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
beacon/light/sync: fix head sync test and add finality test cases
This commit is contained in:
parent
eb6762084f
commit
a966dcbe7d
3 changed files with 46 additions and 15 deletions
|
|
@ -73,6 +73,12 @@ func NewHeadSync(headTracker headTracker, chain committeeChain) *HeadSync {
|
||||||
|
|
||||||
// Process implements request.Module.
|
// Process implements request.Module.
|
||||||
func (s *HeadSync) Process(requester request.Requester, events []request.Event) {
|
func (s *HeadSync) Process(requester request.Requester, events []request.Event) {
|
||||||
|
nextPeriod, chainInit := s.chain.NextSyncPeriod()
|
||||||
|
if nextPeriod != s.nextSyncPeriod || chainInit != s.chainInit {
|
||||||
|
s.nextSyncPeriod, s.chainInit = nextPeriod, chainInit
|
||||||
|
s.processUnvalidatedUpdates()
|
||||||
|
}
|
||||||
|
|
||||||
for _, event := range events {
|
for _, event := range events {
|
||||||
switch event.Type {
|
switch event.Type {
|
||||||
case EvNewHead:
|
case EvNewHead:
|
||||||
|
|
@ -101,12 +107,6 @@ func (s *HeadSync) Process(requester request.Requester, events []request.Event)
|
||||||
delete(s.unvalidatedFinality, event.Server)
|
delete(s.unvalidatedFinality, event.Server)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nextPeriod, chainInit := s.chain.NextSyncPeriod()
|
|
||||||
if nextPeriod != s.nextSyncPeriod || chainInit != s.chainInit {
|
|
||||||
s.nextSyncPeriod, s.chainInit = nextPeriod, chainInit
|
|
||||||
s.processUnvalidatedUpdates()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// newOptimisticUpdate handles received optimistic update; either validates it if
|
// newOptimisticUpdate handles received optimistic update; either validates it if
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ package sync
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/beacon/light/request"
|
||||||
"github.com/ethereum/go-ethereum/beacon/types"
|
"github.com/ethereum/go-ethereum/beacon/types"
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
)
|
)
|
||||||
|
|
@ -28,6 +29,7 @@ var (
|
||||||
testServer2 = testServer("testServer2")
|
testServer2 = testServer("testServer2")
|
||||||
testServer3 = testServer("testServer3")
|
testServer3 = testServer("testServer3")
|
||||||
testServer4 = testServer("testServer4")
|
testServer4 = testServer("testServer4")
|
||||||
|
testServer5 = testServer("testServer5")
|
||||||
|
|
||||||
testHead0 = types.HeadInfo{}
|
testHead0 = types.HeadInfo{}
|
||||||
testHead1 = types.HeadInfo{Slot: 123, BlockRoot: common.Hash{1}}
|
testHead1 = types.HeadInfo{Slot: 123, BlockRoot: common.Hash{1}}
|
||||||
|
|
@ -42,6 +44,14 @@ var (
|
||||||
testOptUpdate4 = types.OptimisticUpdate{SignatureSlot: 0x6444, Attested: types.HeaderWithExecProof{Header: types.Header{Slot: 0x6443, StateRoot: common.Hash{4}}}}
|
testOptUpdate4 = types.OptimisticUpdate{SignatureSlot: 0x6444, Attested: types.HeaderWithExecProof{Header: types.Header{Slot: 0x6443, StateRoot: common.Hash{4}}}}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func finality(opt types.OptimisticUpdate) types.FinalityUpdate {
|
||||||
|
return types.FinalityUpdate{
|
||||||
|
SignatureSlot: opt.SignatureSlot,
|
||||||
|
Attested: opt.Attested,
|
||||||
|
Finalized: types.HeaderWithExecProof{Header: types.Header{Slot: (opt.Attested.Header.Slot - 64) & uint64(0xffffffffffffffe0)}},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type testServer string
|
type testServer string
|
||||||
|
|
||||||
func (t testServer) Name() string {
|
func (t testServer) Name() string {
|
||||||
|
|
@ -58,7 +68,7 @@ func TestValidatedHead(t *testing.T) {
|
||||||
|
|
||||||
ts.AddServer(testServer1, 1)
|
ts.AddServer(testServer1, 1)
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate1)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate1)
|
||||||
ts.Run(1)
|
ts.Run(1, testServer1, ReqFinality{})
|
||||||
// announced head should be queued because of uninitialized chain
|
// announced head should be queued because of uninitialized chain
|
||||||
ht.ExpValidated(t, 1, nil)
|
ht.ExpValidated(t, 1, nil)
|
||||||
|
|
||||||
|
|
@ -68,6 +78,7 @@ func TestValidatedHead(t *testing.T) {
|
||||||
ht.ExpValidated(t, 2, []types.OptimisticUpdate{testOptUpdate1})
|
ht.ExpValidated(t, 2, []types.OptimisticUpdate{testOptUpdate1})
|
||||||
|
|
||||||
chain.SetNextSyncPeriod(1)
|
chain.SetNextSyncPeriod(1)
|
||||||
|
ts.ServerEvent(EvNewFinalityUpdate, testServer1, finality(testOptUpdate2))
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate2)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate2)
|
||||||
ts.AddServer(testServer2, 1)
|
ts.AddServer(testServer2, 1)
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer2, testOptUpdate2)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer2, testOptUpdate2)
|
||||||
|
|
@ -78,7 +89,8 @@ func TestValidatedHead(t *testing.T) {
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate3)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer1, testOptUpdate3)
|
||||||
ts.AddServer(testServer3, 1)
|
ts.AddServer(testServer3, 1)
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer3, testOptUpdate4)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer3, testOptUpdate4)
|
||||||
ts.Run(4)
|
// finality should be requested from both servers
|
||||||
|
ts.Run(4, testServer1, ReqFinality{}, testServer3, ReqFinality{})
|
||||||
// future period annonced heads should be queued
|
// future period annonced heads should be queued
|
||||||
ht.ExpValidated(t, 4, nil)
|
ht.ExpValidated(t, 4, nil)
|
||||||
|
|
||||||
|
|
@ -87,20 +99,34 @@ func TestValidatedHead(t *testing.T) {
|
||||||
// testOptUpdate3 can be validated now but not testOptUpdate4
|
// testOptUpdate3 can be validated now but not testOptUpdate4
|
||||||
ht.ExpValidated(t, 5, []types.OptimisticUpdate{testOptUpdate3})
|
ht.ExpValidated(t, 5, []types.OptimisticUpdate{testOptUpdate3})
|
||||||
|
|
||||||
|
ts.AddServer(testServer4, 1)
|
||||||
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer4, testOptUpdate3)
|
||||||
|
// new server joined with recent optimistic update but still no finality; should be requested
|
||||||
|
ts.Run(6, testServer4, ReqFinality{})
|
||||||
|
ht.ExpValidated(t, 6, []types.OptimisticUpdate{testOptUpdate3})
|
||||||
|
|
||||||
|
ts.AddServer(testServer5, 1)
|
||||||
|
ts.RequestEvent(request.EvResponse, ts.Request(6, 1), finality(testOptUpdate3))
|
||||||
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer5, testOptUpdate3)
|
||||||
|
// finality update request answered; new server should not be requested
|
||||||
|
ts.Run(7)
|
||||||
|
ht.ExpValidated(t, 7, []types.OptimisticUpdate{testOptUpdate3})
|
||||||
|
|
||||||
// server 3 disconnected without proving period 3, its announced head should be dropped
|
// server 3 disconnected without proving period 3, its announced head should be dropped
|
||||||
ts.RemoveServer(testServer3)
|
ts.RemoveServer(testServer3)
|
||||||
ts.Run(6)
|
ts.Run(8)
|
||||||
ht.ExpValidated(t, 6, nil)
|
ht.ExpValidated(t, 8, nil)
|
||||||
|
|
||||||
chain.SetNextSyncPeriod(3)
|
chain.SetNextSyncPeriod(3)
|
||||||
ts.Run(7)
|
ts.Run(9)
|
||||||
// testOptUpdate4 could be validated now but it's not queued by any registered server
|
// testOptUpdate4 could be validated now but it's not queued by any registered server
|
||||||
ht.ExpValidated(t, 7, nil)
|
ht.ExpValidated(t, 9, nil)
|
||||||
|
|
||||||
|
ts.ServerEvent(EvNewFinalityUpdate, testServer2, finality(testOptUpdate4))
|
||||||
ts.ServerEvent(EvNewOptimisticUpdate, testServer2, testOptUpdate4)
|
ts.ServerEvent(EvNewOptimisticUpdate, testServer2, testOptUpdate4)
|
||||||
ts.Run(8)
|
ts.Run(10)
|
||||||
// now testOptUpdate4 should be validated
|
// now testOptUpdate4 should be validated
|
||||||
ht.ExpValidated(t, 8, []types.OptimisticUpdate{testOptUpdate4})
|
ht.ExpValidated(t, 10, []types.OptimisticUpdate{testOptUpdate4})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestPrefetchHead(t *testing.T) {
|
func TestPrefetchHead(t *testing.T) {
|
||||||
|
|
|
||||||
|
|
@ -213,6 +213,7 @@ func (tc *TestCommitteeChain) ExpNextSyncPeriod(t *testing.T, expNsp uint64) {
|
||||||
type TestHeadTracker struct {
|
type TestHeadTracker struct {
|
||||||
phead types.HeadInfo
|
phead types.HeadInfo
|
||||||
validated []types.OptimisticUpdate
|
validated []types.OptimisticUpdate
|
||||||
|
finality types.FinalityUpdate
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ht *TestHeadTracker) ValidateOptimistic(update types.OptimisticUpdate) (bool, error) {
|
func (ht *TestHeadTracker) ValidateOptimistic(update types.OptimisticUpdate) (bool, error) {
|
||||||
|
|
@ -220,11 +221,15 @@ func (ht *TestHeadTracker) ValidateOptimistic(update types.OptimisticUpdate) (bo
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO add test case for finality
|
|
||||||
func (ht *TestHeadTracker) ValidateFinality(update types.FinalityUpdate) (bool, error) {
|
func (ht *TestHeadTracker) ValidateFinality(update types.FinalityUpdate) (bool, error) {
|
||||||
|
ht.finality = update
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ht *TestHeadTracker) ValidatedFinality() (types.FinalityUpdate, bool) {
|
||||||
|
return ht.finality, ht.finality.Attested.Header != (types.Header{})
|
||||||
|
}
|
||||||
|
|
||||||
func (ht *TestHeadTracker) ExpValidated(t *testing.T, tci int, expHeads []types.OptimisticUpdate) {
|
func (ht *TestHeadTracker) ExpValidated(t *testing.T, tci int, expHeads []types.OptimisticUpdate) {
|
||||||
for i, expHead := range expHeads {
|
for i, expHead := range expHeads {
|
||||||
if i >= len(ht.validated) {
|
if i >= len(ht.validated) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue