-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathengine_suite_test.go
175 lines (156 loc) · 4.77 KB
/
engine_suite_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package synchronization
import (
"io"
"testing"
"github.com/rs/zerolog"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
mockconsensus "github.com/onflow/flow-go/engine/consensus/mock"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/model/flow/filter"
"github.com/onflow/flow-go/module/id"
"github.com/onflow/flow-go/module/metrics"
module "github.com/onflow/flow-go/module/mock"
netint "github.com/onflow/flow-go/network"
"github.com/onflow/flow-go/network/channels"
"github.com/onflow/flow-go/network/mocknetwork"
"github.com/onflow/flow-go/network/p2p/cache"
protocolint "github.com/onflow/flow-go/state/protocol"
protocolEvents "github.com/onflow/flow-go/state/protocol/events"
protocol "github.com/onflow/flow-go/state/protocol/mock"
storerr "github.com/onflow/flow-go/storage"
storage "github.com/onflow/flow-go/storage/mock"
"github.com/onflow/flow-go/utils/unittest"
)
func TestSyncEngine(t *testing.T) {
suite.Run(t, new(SyncSuite))
}
type SyncSuite struct {
suite.Suite
myID flow.Identifier
participants flow.IdentityList
head *flow.Header
heights map[uint64]*flow.Block
blockIDs map[flow.Identifier]*flow.Block
net *mocknetwork.Network
con *mocknetwork.Conduit
me *module.Local
state *protocol.State
snapshot *protocol.Snapshot
blocks *storage.Blocks
comp *mockconsensus.Compliance
core *module.SyncCore
e *Engine
}
func (ss *SyncSuite) SetupTest() {
// generate own ID
ss.participants = unittest.IdentityListFixture(3, unittest.WithRole(flow.RoleConsensus))
keys := unittest.NetworkingKeys(len(ss.participants))
for i, p := range ss.participants {
p.NetworkPubKey = keys[i].PublicKey()
}
ss.myID = ss.participants[0].NodeID
// generate a header for the final state
header := unittest.BlockHeaderFixture()
ss.head = header
// create maps to enable block returns
ss.heights = make(map[uint64]*flow.Block)
ss.blockIDs = make(map[flow.Identifier]*flow.Block)
// set up the network module mock
ss.net = &mocknetwork.Network{}
ss.net.On("Register", mock.Anything, mock.Anything).Return(
func(channel channels.Channel, engine netint.MessageProcessor) netint.Conduit {
return ss.con
},
nil,
)
// set up the network conduit mock
ss.con = &mocknetwork.Conduit{}
// set up the local module mock
ss.me = &module.Local{}
ss.me.On("NodeID").Return(
func() flow.Identifier {
return ss.myID
},
)
// set up the protocol state mock
ss.state = &protocol.State{}
ss.state.On("Final").Return(
func() protocolint.Snapshot {
return ss.snapshot
},
)
ss.state.On("AtBlockID", mock.Anything).Return(
func(blockID flow.Identifier) protocolint.Snapshot {
if ss.head.ID() == blockID {
return ss.snapshot
} else {
return unittest.StateSnapshotForUnknownBlock()
}
},
).Maybe()
// set up the snapshot mock
ss.snapshot = &protocol.Snapshot{}
ss.snapshot.On("Head").Return(
func() *flow.Header {
return ss.head
},
nil,
)
ss.snapshot.On("Identities", mock.Anything).Return(
func(selector flow.IdentityFilter[flow.Identity]) flow.IdentityList {
return ss.participants.Filter(selector)
},
nil,
)
// set up blocks storage mock
ss.blocks = &storage.Blocks{}
ss.blocks.On("ByHeight", mock.Anything).Return(
func(height uint64) *flow.Block {
return ss.heights[height]
},
func(height uint64) error {
_, enabled := ss.heights[height]
if !enabled {
return storerr.ErrNotFound
}
return nil
},
)
ss.blocks.On("ByID", mock.Anything).Return(
func(blockID flow.Identifier) *flow.Block {
return ss.blockIDs[blockID]
},
func(blockID flow.Identifier) error {
_, enabled := ss.blockIDs[blockID]
if !enabled {
return storerr.ErrNotFound
}
return nil
},
)
// set up compliance engine mock
ss.comp = mockconsensus.NewCompliance(ss.T())
ss.comp.On("Process", mock.Anything, mock.Anything, mock.Anything).Return(nil).Maybe()
// set up sync core
ss.core = &module.SyncCore{}
// initialize the engine
log := zerolog.New(io.Discard)
metrics := metrics.NewNoopCollector()
idCache, err := cache.NewProtocolStateIDCache(log, ss.state, protocolEvents.NewDistributor())
require.NoError(ss.T(), err, "could not create protocol state identity cache")
spamConfig, err := NewSpamDetectionConfig()
require.NoError(ss.T(), err, "could not create spam detection config")
e, err := New(log, metrics, ss.net, ss.me, ss.state, ss.blocks, ss.comp, ss.core,
id.NewIdentityFilterIdentifierProvider(
filter.And(
filter.HasRole[flow.Identity](flow.RoleConsensus),
filter.Not(filter.HasNodeID[flow.Identity](ss.me.NodeID())),
),
idCache,
),
spamConfig)
require.NoError(ss.T(), err, "should pass engine initialization")
ss.e = e
}