-
Notifications
You must be signed in to change notification settings - Fork 178
/
chain_suite.go
576 lines (521 loc) · 17.6 KB
/
chain_suite.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
package unittest
import (
"fmt"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/onflow/flow-go/model/chunks"
"github.com/onflow/flow-go/model/flow"
mempool "github.com/onflow/flow-go/module/mempool/mock"
module "github.com/onflow/flow-go/module/mock"
"github.com/onflow/flow-go/state"
realproto "github.com/onflow/flow-go/state/protocol"
protocol "github.com/onflow/flow-go/state/protocol/mock"
storerr "github.com/onflow/flow-go/storage"
storage "github.com/onflow/flow-go/storage/mock"
)
type BaseChainSuite struct {
suite.Suite
// IDENTITIES
ConID flow.Identifier
ExeID flow.Identifier
VerID flow.Identifier
Identities map[flow.Identifier]*flow.Identity
Approvers flow.IdentityList
// BLOCKS
RootBlock flow.Block
LatestSealedBlock flow.Block
LatestFinalizedBlock *flow.Block
UnfinalizedBlock flow.Block
LatestExecutionResult *flow.ExecutionResult
Blocks map[flow.Identifier]*flow.Block
// PROTOCOL STATE
State *protocol.State
SealedSnapshot *protocol.Snapshot
FinalSnapshot *protocol.Snapshot
// MEMPOOLS and STORAGE which are injected into Matching Engine
// mock storage.ExecutionReceipts: backed by in-memory map PersistedReceipts
ReceiptsDB *storage.ExecutionReceipts
ResultsDB *storage.ExecutionResults
PersistedResults map[flow.Identifier]*flow.ExecutionResult
// mock mempool.IncorporatedResultSeals: backed by in-memory map PendingSeals
SealsPL *mempool.IncorporatedResultSeals
PendingSeals map[flow.Identifier]*flow.IncorporatedResultSeal
// mock BLOCK STORAGE: backed by in-memory map Blocks
HeadersDB *storage.Headers // backed by map Blocks
IndexDB *storage.Index // backed by map Blocks
PayloadsDB *storage.Payloads // backed by map Blocks
SealsDB *storage.Seals // backed by map SealsIndex
SealsIndex map[flow.Identifier]*flow.Seal // last valid seal for block
// mock mempool.ReceiptsForest: used to test whether or not Matching Engine stores receipts
ReceiptsPL *mempool.ExecutionTree
Assigner *module.ChunkAssigner
Assignments map[flow.Identifier]*chunks.Assignment // index for assignments for given execution result
PendingReceipts *mempool.PendingReceipts
}
func (bc *BaseChainSuite) SetupChain() {
// ~~~~~~~~~~~~~~~~~~~~~~~~~~ SETUP IDENTITIES ~~~~~~~~~~~~~~~~~~~~~~~~~~ //
// asign node Identities
con := IdentityFixture(WithRole(flow.RoleConsensus))
exe := IdentityFixture(WithRole(flow.RoleExecution))
ver := IdentityFixture(WithRole(flow.RoleVerification))
bc.ConID = con.NodeID
bc.ExeID = exe.NodeID
bc.VerID = ver.NodeID
bc.Identities = make(map[flow.Identifier]*flow.Identity)
bc.Identities[bc.ConID] = con
bc.Identities[bc.ExeID] = exe
bc.Identities[bc.VerID] = ver
// assign 4 nodes to the verification role
bc.Approvers = IdentityListFixture(4, WithRole(flow.RoleVerification))
for _, verifier := range bc.Approvers {
bc.Identities[verifier.ID()] = verifier
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SETUP BLOCKS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
// RootBlock <- LatestSealedBlock <- LatestFinalizedBlock <- UnfinalizedBlock
bc.RootBlock = BlockFixture()
bc.LatestSealedBlock = *BlockWithParentFixture(bc.RootBlock.Header)
latestFinalizedBlock := BlockWithParentFixture(bc.LatestSealedBlock.Header)
bc.LatestFinalizedBlock = latestFinalizedBlock
bc.UnfinalizedBlock = *BlockWithParentFixture(bc.LatestFinalizedBlock.Header)
bc.Blocks = make(map[flow.Identifier]*flow.Block)
bc.Blocks[bc.RootBlock.ID()] = &bc.RootBlock
bc.Blocks[bc.LatestSealedBlock.ID()] = &bc.LatestSealedBlock
bc.Blocks[bc.LatestFinalizedBlock.ID()] = bc.LatestFinalizedBlock
bc.Blocks[bc.UnfinalizedBlock.ID()] = &bc.UnfinalizedBlock
// ~~~~~~~~~~~~~~~~~~~~~~~~ SETUP PROTOCOL STATE ~~~~~~~~~~~~~~~~~~~~~~~~ //
bc.State = &protocol.State{}
// define the protocol state snapshot of the latest finalized block
bc.State.On("Final").Return(
func() realproto.Snapshot {
return bc.FinalSnapshot
},
nil,
)
bc.FinalSnapshot = &protocol.Snapshot{}
bc.FinalSnapshot.On("Head").Return(
func() *flow.Header {
return bc.LatestFinalizedBlock.Header
},
nil,
)
bc.FinalSnapshot.On("SealedResult").Return(
func() *flow.ExecutionResult {
blockID := bc.LatestFinalizedBlock.ID()
seal, found := bc.SealsIndex[blockID]
if !found {
return nil
}
result, found := bc.PersistedResults[seal.ResultID]
if !found {
return nil
}
return result
},
func() *flow.Seal {
blockID := bc.LatestFinalizedBlock.ID()
seal, found := bc.SealsIndex[blockID]
if !found {
return nil
}
return seal
},
func() error {
blockID := bc.LatestFinalizedBlock.ID()
seal, found := bc.SealsIndex[blockID]
if !found {
return storerr.ErrNotFound
}
_, found = bc.PersistedResults[seal.ResultID]
if !found {
return storerr.ErrNotFound
}
return nil
},
)
// define the protocol state snapshot of the latest sealed block
bc.State.On("Sealed").Return(
func() realproto.Snapshot {
return bc.SealedSnapshot
},
nil,
)
bc.SealedSnapshot = &protocol.Snapshot{}
bc.SealedSnapshot.On("Head").Return(
func() *flow.Header {
return bc.LatestSealedBlock.Header
},
nil,
)
findBlockByHeight := func(blocks map[flow.Identifier]*flow.Block, height uint64) (*flow.Block, bool) {
for _, block := range blocks {
if block.Header.Height == height {
return block, true
}
}
return nil, false
}
// define the protocol state snapshot for any block in `bc.Blocks`
bc.State.On("AtBlockID", mock.Anything).Return(
func(blockID flow.Identifier) realproto.Snapshot {
block, found := bc.Blocks[blockID]
if !found {
return StateSnapshotForUnknownBlock()
}
return StateSnapshotForKnownBlock(block.Header, bc.Identities)
},
)
bc.State.On("AtHeight", mock.Anything).Return(
func(height uint64) realproto.Snapshot {
block, found := findBlockByHeight(bc.Blocks, height)
if found {
snapshot := &protocol.Snapshot{}
snapshot.On("Head").Return(
func() *flow.Header {
return block.Header
},
nil,
)
return snapshot
}
panic(fmt.Sprintf("unknown height: %v, final: %v, sealed: %v", height, bc.LatestFinalizedBlock.Header.Height, bc.LatestSealedBlock.Header.Height))
},
)
// ~~~~~~~~~~~~~~~~~~~~~~~ SETUP RESULTS STORAGE ~~~~~~~~~~~~~~~~~~~~~~~~ //
bc.PersistedResults = make(map[flow.Identifier]*flow.ExecutionResult)
bc.LatestExecutionResult = ExecutionResultFixture(WithBlock(&bc.LatestSealedBlock))
bc.PersistedResults[bc.LatestExecutionResult.ID()] = bc.LatestExecutionResult
bc.ResultsDB = &storage.ExecutionResults{}
bc.ResultsDB.On("ByID", mock.Anything).Return(
func(resultID flow.Identifier) *flow.ExecutionResult {
return bc.PersistedResults[resultID]
},
func(resultID flow.Identifier) error {
_, found := bc.PersistedResults[resultID]
if !found {
return storerr.ErrNotFound
}
return nil
},
).Maybe()
bc.ResultsDB.On("Store", mock.Anything).Return(
func(result *flow.ExecutionResult) error {
_, found := bc.PersistedResults[result.ID()]
if found {
return storerr.ErrAlreadyExists
}
return nil
},
).Maybe() // this call is optional
// ~~~~~~~~~~~~~~~~~~~~~~~ SETUP RECEIPTS STORAGE ~~~~~~~~~~~~~~~~~~~~~~~~ //
bc.ReceiptsDB = &storage.ExecutionReceipts{}
// ~~~~~~~~~~~~~~~~~~~~ SETUP BLOCK HEADER STORAGE ~~~~~~~~~~~~~~~~~~~~~ //
bc.HeadersDB = &storage.Headers{}
bc.HeadersDB.On("ByBlockID", mock.Anything).Return(
func(blockID flow.Identifier) *flow.Header {
block, found := bc.Blocks[blockID]
if !found {
return nil
}
return block.Header
},
func(blockID flow.Identifier) error {
_, found := bc.Blocks[blockID]
if !found {
return storerr.ErrNotFound
}
return nil
},
)
bc.HeadersDB.On("ByHeight", mock.Anything).Return(
func(blockHeight uint64) *flow.Header {
for _, b := range bc.Blocks {
if b.Header.Height == blockHeight {
return b.Header
}
}
return nil
},
func(blockHeight uint64) error {
for _, b := range bc.Blocks {
if b.Header.Height == blockHeight {
return nil
}
}
return storerr.ErrNotFound
},
)
// ~~~~~~~~~~~~~~~~~~~~ SETUP BLOCK PAYLOAD STORAGE ~~~~~~~~~~~~~~~~~~~~~ //
bc.IndexDB = &storage.Index{}
bc.IndexDB.On("ByBlockID", mock.Anything).Return(
func(blockID flow.Identifier) *flow.Index {
block, found := bc.Blocks[blockID]
if !found {
return nil
}
if block.Payload == nil {
return nil
}
return block.Payload.Index()
},
func(blockID flow.Identifier) error {
block, found := bc.Blocks[blockID]
if !found {
return storerr.ErrNotFound
}
if block.Payload == nil {
return storerr.ErrNotFound
}
return nil
},
)
bc.SealsIndex = make(map[flow.Identifier]*flow.Seal)
firtSeal := Seal.Fixture(Seal.WithBlock(bc.LatestSealedBlock.Header),
Seal.WithResult(bc.LatestExecutionResult))
for id, block := range bc.Blocks {
if id != bc.RootBlock.ID() {
bc.SealsIndex[block.ID()] = firtSeal
}
}
bc.PayloadsDB = &storage.Payloads{}
bc.PayloadsDB.On("ByBlockID", mock.Anything).Return(
func(blockID flow.Identifier) *flow.Payload {
block, found := bc.Blocks[blockID]
if !found {
return nil
}
if block.Payload == nil {
return nil
}
return block.Payload
},
func(blockID flow.Identifier) error {
block, found := bc.Blocks[blockID]
if !found {
return storerr.ErrNotFound
}
if block.Payload == nil {
return storerr.ErrNotFound
}
return nil
},
)
bc.SealsDB = &storage.Seals{}
bc.SealsDB.On("HighestInFork", mock.Anything).Return(
func(blockID flow.Identifier) *flow.Seal {
seal, found := bc.SealsIndex[blockID]
if !found {
return nil
}
return seal
},
func(blockID flow.Identifier) error {
seal, found := bc.SealsIndex[blockID]
if !found {
return storerr.ErrNotFound
}
if seal == nil {
return storerr.ErrNotFound
}
return nil
},
)
// ~~~~~~~~~~~~~~~~~~~~~~~ SETUP RECEIPTS MEMPOOL ~~~~~~~~~~~~~~~~~~~~~~ //
bc.ReceiptsPL = &mempool.ExecutionTree{}
bc.ReceiptsPL.On("Size").Return(uint(0)).Maybe() // only for metrics
bc.ReceiptsPL.On("HasReceipt", mock.AnythingOfType("*flow.ExecutionReceipt")).Return(false)
bc.PendingReceipts = &mempool.PendingReceipts{}
// ~~~~~~~~~~~~~~~~~~~~~~~~ SETUP SEALS MEMPOOL ~~~~~~~~~~~~~~~~~~~~~~~~ //
bc.PendingSeals = make(map[flow.Identifier]*flow.IncorporatedResultSeal)
bc.SealsPL = &mempool.IncorporatedResultSeals{}
bc.SealsPL.On("Size").Return(uint(0)).Maybe() // only for metrics
bc.SealsPL.On("Limit").Return(uint(1000)).Maybe()
bc.SealsPL.On("ByID", mock.Anything).Return(
func(sealID flow.Identifier) *flow.IncorporatedResultSeal {
return bc.PendingSeals[sealID]
},
func(sealID flow.Identifier) bool {
_, found := bc.PendingSeals[sealID]
return found
},
).Maybe()
bc.SealsPL.On("All").Return(
func() []*flow.IncorporatedResultSeal {
seals := make([]*flow.IncorporatedResultSeal, 0, len(bc.PendingSeals))
for _, seal := range bc.PendingSeals {
seals = append(seals, seal)
}
return seals
},
).Maybe()
bc.Assigner = &module.ChunkAssigner{}
bc.Assignments = make(map[flow.Identifier]*chunks.Assignment)
}
func StateSnapshotForUnknownBlock() *protocol.Snapshot {
snapshot := &protocol.Snapshot{}
snapshot.On("Identity", mock.Anything).Return(
nil, state.ErrUnknownSnapshotReference,
)
snapshot.On("Identities", mock.Anything).Return(
nil, state.ErrUnknownSnapshotReference,
)
snapshot.On("Head", mock.Anything).Return(
nil, state.ErrUnknownSnapshotReference,
)
return snapshot
}
func StateSnapshotForKnownBlock(block *flow.Header, identities map[flow.Identifier]*flow.Identity) *protocol.Snapshot {
snapshot := &protocol.Snapshot{}
snapshot.On("Identity", mock.Anything).Return(
func(nodeID flow.Identifier) *flow.Identity {
return identities[nodeID]
},
func(nodeID flow.Identifier) error {
_, found := identities[nodeID]
if !found {
return realproto.IdentityNotFoundError{NodeID: nodeID}
}
return nil
},
)
snapshot.On("Identities", mock.Anything).Return(
func(selector flow.IdentityFilter) flow.IdentityList {
var idts flow.IdentityList
for _, i := range identities {
if selector(i) {
idts = append(idts, i)
}
}
return idts
},
func(selector flow.IdentityFilter) error {
return nil
},
)
snapshot.On("Head").Return(block, nil)
return snapshot
}
func ApprovalFor(result *flow.ExecutionResult, chunkIdx uint64, approverID flow.Identifier) *flow.ResultApproval {
return ResultApprovalFixture(
WithBlockID(result.BlockID),
WithExecutionResultID(result.ID()),
WithApproverID(approverID),
WithChunk(chunkIdx),
)
}
func EntityWithID(expectedID flow.Identifier) interface{} {
return mock.MatchedBy(
func(entity flow.Entity) bool {
return expectedID == entity.ID()
})
}
// subgraphFixture represents a subgraph of the blockchain:
//
// Result -----------------------------------> Block
// | |
// | v
// | ParentBlock
// v
// PreviousResult ---> PreviousResult.BlockID
//
// Depending on validity of the subgraph:
// - valid: PreviousResult.BlockID == ParentBlock.ID()
// - invalid: PreviousResult.BlockID != ParentBlock.ID()
type subgraphFixture struct {
Block *flow.Block
ParentBlock *flow.Block
Result *flow.ExecutionResult
PreviousResult *flow.ExecutionResult
IncorporatedResult *flow.IncorporatedResult
Assignment *chunks.Assignment
Approvals map[uint64]map[flow.Identifier]*flow.ResultApproval // chunkIndex -> Verifier Node ID -> Approval
}
// Generates a valid subgraph:
// let
// - R1 be a result which pertains to blockA
// - R2 be R1's previous result,
// where R2 pertains to blockB
//
// The execution results form a valid subgraph if and only if:
//
// blockA.ParentID == blockB.ID
func (bc *BaseChainSuite) ValidSubgraphFixture() subgraphFixture {
// BLOCKS: <- previousBlock <- block
parentBlock := BlockFixture()
parentBlock.SetPayload(PayloadFixture(WithGuarantees(CollectionGuaranteesFixture(12)...)))
block := BlockWithParentFixture(parentBlock.Header)
block.SetPayload(PayloadFixture(WithGuarantees(CollectionGuaranteesFixture(12)...)))
// RESULTS for Blocks:
previousResult := ExecutionResultFixture(WithBlock(&parentBlock))
result := ExecutionResultFixture(
WithBlock(block),
WithPreviousResult(*previousResult),
)
// Exec Receipt for block with valid subgraph
incorporatedResult := IncorporatedResult.Fixture(IncorporatedResult.WithResult(result))
// assign each chunk to 50% of validation Nodes and generate respective approvals
assignment := chunks.NewAssignment()
assignedVerifiersPerChunk := uint(len(bc.Approvers) / 2)
approvals := make(map[uint64]map[flow.Identifier]*flow.ResultApproval)
for _, chunk := range incorporatedResult.Result.Chunks {
assignedVerifiers, err := bc.Approvers.Sample(assignedVerifiersPerChunk)
require.NoError(bc.T(), err)
assignment.Add(chunk, assignedVerifiers.NodeIDs())
// generate approvals
chunkApprovals := make(map[flow.Identifier]*flow.ResultApproval)
for _, approver := range assignedVerifiers {
chunkApprovals[approver.NodeID] = ApprovalFor(incorporatedResult.Result, chunk.Index, approver.NodeID)
}
approvals[chunk.Index] = chunkApprovals
}
return subgraphFixture{
Block: block,
ParentBlock: &parentBlock,
Result: result,
PreviousResult: previousResult,
IncorporatedResult: incorporatedResult,
Assignment: assignment,
Approvals: approvals,
}
}
func (bc *BaseChainSuite) Extend(block *flow.Block) {
blockID := block.ID()
bc.Blocks[blockID] = block
if seal, ok := bc.SealsIndex[block.Header.ParentID]; ok {
bc.SealsIndex[block.ID()] = seal
}
for _, result := range block.Payload.Results {
// Exec Receipt for block with valid subgraph
incorporatedResult := IncorporatedResult.Fixture(IncorporatedResult.WithResult(result),
IncorporatedResult.WithIncorporatedBlockID(blockID))
// assign each chunk to 50% of validation Nodes and generate respective approvals
assignment := chunks.NewAssignment()
assignedVerifiersPerChunk := uint(len(bc.Approvers) / 2)
approvals := make(map[uint64]map[flow.Identifier]*flow.ResultApproval)
for _, chunk := range incorporatedResult.Result.Chunks {
assignedVerifiers, err := bc.Approvers.Sample(assignedVerifiersPerChunk)
require.NoError(bc.T(), err)
assignment.Add(chunk, assignedVerifiers.NodeIDs())
// generate approvals
chunkApprovals := make(map[flow.Identifier]*flow.ResultApproval)
for _, approver := range assignedVerifiers {
chunkApprovals[approver.NodeID] = ApprovalFor(incorporatedResult.Result, chunk.Index, approver.NodeID)
}
approvals[chunk.Index] = chunkApprovals
}
bc.Assigner.On("Assign", incorporatedResult.Result, incorporatedResult.IncorporatedBlockID).Return(assignment, nil).Maybe()
bc.Assignments[incorporatedResult.Result.ID()] = assignment
bc.PersistedResults[result.ID()] = result
}
for _, seal := range block.Payload.Seals {
bc.SealsIndex[blockID] = seal
}
}
// addSubgraphFixtureToMempools adds add entities in subgraph to mempools and persistent storage mocks
func (bc *BaseChainSuite) AddSubgraphFixtureToMempools(subgraph subgraphFixture) {
bc.Blocks[subgraph.ParentBlock.ID()] = subgraph.ParentBlock
bc.Blocks[subgraph.Block.ID()] = subgraph.Block
bc.PersistedResults[subgraph.PreviousResult.ID()] = subgraph.PreviousResult
bc.PersistedResults[subgraph.Result.ID()] = subgraph.Result
bc.Assigner.On("Assign", subgraph.IncorporatedResult.Result, subgraph.IncorporatedResult.IncorporatedBlockID).Return(subgraph.Assignment, nil).Maybe()
}