This repository has been archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 724
/
Copy pathmock_db_manager.go
770 lines (635 loc) · 20.2 KB
/
mock_db_manager.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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
// Code generated by mockery v2.32.0. DO NOT EDIT.
package sequencer
import (
context "context"
big "math/big"
common "github.com/ethereum/go-ethereum/common"
mock "github.com/stretchr/testify/mock"
pgx "github.com/jackc/pgx/v4"
pool "github.com/0xPolygonHermez/zkevm-node/pool"
state "github.com/0xPolygonHermez/zkevm-node/state"
time "time"
types "github.com/ethereum/go-ethereum/core/types"
)
// DbManagerMock is an autogenerated mock type for the dbManagerInterface type
type DbManagerMock struct {
mock.Mock
}
// BeginStateTransaction provides a mock function with given fields: ctx
func (_m *DbManagerMock) BeginStateTransaction(ctx context.Context) (pgx.Tx, error) {
ret := _m.Called(ctx)
var r0 pgx.Tx
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (pgx.Tx, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) pgx.Tx); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(pgx.Tx)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CloseBatch provides a mock function with given fields: ctx, params
func (_m *DbManagerMock) CloseBatch(ctx context.Context, params ClosingBatchParameters) error {
ret := _m.Called(ctx, params)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, ClosingBatchParameters) error); ok {
r0 = rf(ctx, params)
} else {
r0 = ret.Error(0)
}
return r0
}
// CountReorgs provides a mock function with given fields: ctx, dbTx
func (_m *DbManagerMock) CountReorgs(ctx context.Context, dbTx pgx.Tx) (uint64, error) {
ret := _m.Called(ctx, dbTx)
var r0 uint64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) (uint64, error)); ok {
return rf(ctx, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) uint64); ok {
r0 = rf(ctx, dbTx)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(context.Context, pgx.Tx) error); ok {
r1 = rf(ctx, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CreateFirstBatch provides a mock function with given fields: ctx, sequencerAddress
func (_m *DbManagerMock) CreateFirstBatch(ctx context.Context, sequencerAddress common.Address) state.ProcessingContext {
ret := _m.Called(ctx, sequencerAddress)
var r0 state.ProcessingContext
if rf, ok := ret.Get(0).(func(context.Context, common.Address) state.ProcessingContext); ok {
r0 = rf(ctx, sequencerAddress)
} else {
r0 = ret.Get(0).(state.ProcessingContext)
}
return r0
}
// DeleteTransactionFromPool provides a mock function with given fields: ctx, txHash
func (_m *DbManagerMock) DeleteTransactionFromPool(ctx context.Context, txHash common.Hash) error {
ret := _m.Called(ctx, txHash)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, common.Hash) error); ok {
r0 = rf(ctx, txHash)
} else {
r0 = ret.Error(0)
}
return r0
}
// FlushMerkleTree provides a mock function with given fields: ctx
func (_m *DbManagerMock) FlushMerkleTree(ctx context.Context) error {
ret := _m.Called(ctx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context) error); ok {
r0 = rf(ctx)
} else {
r0 = ret.Error(0)
}
return r0
}
// GetBalanceByStateRoot provides a mock function with given fields: ctx, address, root
func (_m *DbManagerMock) GetBalanceByStateRoot(ctx context.Context, address common.Address, root common.Hash) (*big.Int, error) {
ret := _m.Called(ctx, address, root)
var r0 *big.Int
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, common.Address, common.Hash) (*big.Int, error)); ok {
return rf(ctx, address, root)
}
if rf, ok := ret.Get(0).(func(context.Context, common.Address, common.Hash) *big.Int); ok {
r0 = rf(ctx, address, root)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*big.Int)
}
}
if rf, ok := ret.Get(1).(func(context.Context, common.Address, common.Hash) error); ok {
r1 = rf(ctx, address, root)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetBatchByNumber provides a mock function with given fields: ctx, batchNumber, dbTx
func (_m *DbManagerMock) GetBatchByNumber(ctx context.Context, batchNumber uint64, dbTx pgx.Tx) (*state.Batch, error) {
ret := _m.Called(ctx, batchNumber, dbTx)
var r0 *state.Batch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint64, pgx.Tx) (*state.Batch, error)); ok {
return rf(ctx, batchNumber, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64, pgx.Tx) *state.Batch); ok {
r0 = rf(ctx, batchNumber, dbTx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.Batch)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint64, pgx.Tx) error); ok {
r1 = rf(ctx, batchNumber, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetDefaultMinGasPriceAllowed provides a mock function with given fields:
func (_m *DbManagerMock) GetDefaultMinGasPriceAllowed() uint64 {
ret := _m.Called()
var r0 uint64
if rf, ok := ret.Get(0).(func() uint64); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint64)
}
return r0
}
// GetForcedBatch provides a mock function with given fields: ctx, forcedBatchNumber, dbTx
func (_m *DbManagerMock) GetForcedBatch(ctx context.Context, forcedBatchNumber uint64, dbTx pgx.Tx) (*state.ForcedBatch, error) {
ret := _m.Called(ctx, forcedBatchNumber, dbTx)
var r0 *state.ForcedBatch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint64, pgx.Tx) (*state.ForcedBatch, error)); ok {
return rf(ctx, forcedBatchNumber, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64, pgx.Tx) *state.ForcedBatch); ok {
r0 = rf(ctx, forcedBatchNumber, dbTx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.ForcedBatch)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint64, pgx.Tx) error); ok {
r1 = rf(ctx, forcedBatchNumber, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetForcedBatchesSince provides a mock function with given fields: ctx, forcedBatchNumber, maxBlockNumber, dbTx
func (_m *DbManagerMock) GetForcedBatchesSince(ctx context.Context, forcedBatchNumber uint64, maxBlockNumber uint64, dbTx pgx.Tx) ([]*state.ForcedBatch, error) {
ret := _m.Called(ctx, forcedBatchNumber, maxBlockNumber, dbTx)
var r0 []*state.ForcedBatch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint64, uint64, pgx.Tx) ([]*state.ForcedBatch, error)); ok {
return rf(ctx, forcedBatchNumber, maxBlockNumber, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64, uint64, pgx.Tx) []*state.ForcedBatch); ok {
r0 = rf(ctx, forcedBatchNumber, maxBlockNumber, dbTx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*state.ForcedBatch)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint64, uint64, pgx.Tx) error); ok {
r1 = rf(ctx, forcedBatchNumber, maxBlockNumber, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetForkIDByBatchNumber provides a mock function with given fields: batchNumber
func (_m *DbManagerMock) GetForkIDByBatchNumber(batchNumber uint64) uint64 {
ret := _m.Called(batchNumber)
var r0 uint64
if rf, ok := ret.Get(0).(func(uint64) uint64); ok {
r0 = rf(batchNumber)
} else {
r0 = ret.Get(0).(uint64)
}
return r0
}
// GetGasPrices provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetGasPrices(ctx context.Context) (pool.GasPrices, error) {
ret := _m.Called(ctx)
var r0 pool.GasPrices
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (pool.GasPrices, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) pool.GasPrices); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(pool.GasPrices)
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetL1AndL2GasPrice provides a mock function with given fields:
func (_m *DbManagerMock) GetL1AndL2GasPrice() (uint64, uint64) {
ret := _m.Called()
var r0 uint64
var r1 uint64
if rf, ok := ret.Get(0).(func() (uint64, uint64)); ok {
return rf()
}
if rf, ok := ret.Get(0).(func() uint64); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func() uint64); ok {
r1 = rf()
} else {
r1 = ret.Get(1).(uint64)
}
return r0, r1
}
// GetLastBatch provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetLastBatch(ctx context.Context) (*state.Batch, error) {
ret := _m.Called(ctx)
var r0 *state.Batch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (*state.Batch, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) *state.Batch); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.Batch)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastBatchNumber provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetLastBatchNumber(ctx context.Context) (uint64, error) {
ret := _m.Called(ctx)
var r0 uint64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (uint64, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) uint64); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastBlock provides a mock function with given fields: ctx, dbTx
func (_m *DbManagerMock) GetLastBlock(ctx context.Context, dbTx pgx.Tx) (*state.Block, error) {
ret := _m.Called(ctx, dbTx)
var r0 *state.Block
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) (*state.Block, error)); ok {
return rf(ctx, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) *state.Block); ok {
r0 = rf(ctx, dbTx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.Block)
}
}
if rf, ok := ret.Get(1).(func(context.Context, pgx.Tx) error); ok {
r1 = rf(ctx, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastClosedBatch provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetLastClosedBatch(ctx context.Context) (*state.Batch, error) {
ret := _m.Called(ctx)
var r0 *state.Batch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (*state.Batch, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) *state.Batch); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.Batch)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastL2BlockHeader provides a mock function with given fields: ctx, dbTx
func (_m *DbManagerMock) GetLastL2BlockHeader(ctx context.Context, dbTx pgx.Tx) (*types.Header, error) {
ret := _m.Called(ctx, dbTx)
var r0 *types.Header
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) (*types.Header, error)); ok {
return rf(ctx, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) *types.Header); ok {
r0 = rf(ctx, dbTx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*types.Header)
}
}
if rf, ok := ret.Get(1).(func(context.Context, pgx.Tx) error); ok {
r1 = rf(ctx, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastNBatches provides a mock function with given fields: ctx, numBatches
func (_m *DbManagerMock) GetLastNBatches(ctx context.Context, numBatches uint) ([]*state.Batch, error) {
ret := _m.Called(ctx, numBatches)
var r0 []*state.Batch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint) ([]*state.Batch, error)); ok {
return rf(ctx, numBatches)
}
if rf, ok := ret.Get(0).(func(context.Context, uint) []*state.Batch); ok {
r0 = rf(ctx, numBatches)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*state.Batch)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint) error); ok {
r1 = rf(ctx, numBatches)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLastTrustedForcedBatchNumber provides a mock function with given fields: ctx, dbTx
func (_m *DbManagerMock) GetLastTrustedForcedBatchNumber(ctx context.Context, dbTx pgx.Tx) (uint64, error) {
ret := _m.Called(ctx, dbTx)
var r0 uint64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) (uint64, error)); ok {
return rf(ctx, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) uint64); ok {
r0 = rf(ctx, dbTx)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(context.Context, pgx.Tx) error); ok {
r1 = rf(ctx, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetLatestGer provides a mock function with given fields: ctx, maxBlockNumber
func (_m *DbManagerMock) GetLatestGer(ctx context.Context, maxBlockNumber uint64) (state.GlobalExitRoot, time.Time, error) {
ret := _m.Called(ctx, maxBlockNumber)
var r0 state.GlobalExitRoot
var r1 time.Time
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, uint64) (state.GlobalExitRoot, time.Time, error)); ok {
return rf(ctx, maxBlockNumber)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64) state.GlobalExitRoot); ok {
r0 = rf(ctx, maxBlockNumber)
} else {
r0 = ret.Get(0).(state.GlobalExitRoot)
}
if rf, ok := ret.Get(1).(func(context.Context, uint64) time.Time); ok {
r1 = rf(ctx, maxBlockNumber)
} else {
r1 = ret.Get(1).(time.Time)
}
if rf, ok := ret.Get(2).(func(context.Context, uint64) error); ok {
r2 = rf(ctx, maxBlockNumber)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// GetLatestVirtualBatchTimestamp provides a mock function with given fields: ctx, dbTx
func (_m *DbManagerMock) GetLatestVirtualBatchTimestamp(ctx context.Context, dbTx pgx.Tx) (time.Time, error) {
ret := _m.Called(ctx, dbTx)
var r0 time.Time
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) (time.Time, error)); ok {
return rf(ctx, dbTx)
}
if rf, ok := ret.Get(0).(func(context.Context, pgx.Tx) time.Time); ok {
r0 = rf(ctx, dbTx)
} else {
r0 = ret.Get(0).(time.Time)
}
if rf, ok := ret.Get(1).(func(context.Context, pgx.Tx) error); ok {
r1 = rf(ctx, dbTx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetStorageAt provides a mock function with given fields: ctx, address, position, root
func (_m *DbManagerMock) GetStorageAt(ctx context.Context, address common.Address, position *big.Int, root common.Hash) (*big.Int, error) {
ret := _m.Called(ctx, address, position, root)
var r0 *big.Int
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, common.Address, *big.Int, common.Hash) (*big.Int, error)); ok {
return rf(ctx, address, position, root)
}
if rf, ok := ret.Get(0).(func(context.Context, common.Address, *big.Int, common.Hash) *big.Int); ok {
r0 = rf(ctx, address, position, root)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*big.Int)
}
}
if rf, ok := ret.Get(1).(func(context.Context, common.Address, *big.Int, common.Hash) error); ok {
r1 = rf(ctx, address, position, root)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetStoredFlushID provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetStoredFlushID(ctx context.Context) (uint64, string, error) {
ret := _m.Called(ctx)
var r0 uint64
var r1 string
var r2 error
if rf, ok := ret.Get(0).(func(context.Context) (uint64, string, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) uint64); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(context.Context) string); ok {
r1 = rf(ctx)
} else {
r1 = ret.Get(1).(string)
}
if rf, ok := ret.Get(2).(func(context.Context) error); ok {
r2 = rf(ctx)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// GetTransactionsByBatchNumber provides a mock function with given fields: ctx, batchNumber
func (_m *DbManagerMock) GetTransactionsByBatchNumber(ctx context.Context, batchNumber uint64) ([]types.Transaction, []uint8, error) {
ret := _m.Called(ctx, batchNumber)
var r0 []types.Transaction
var r1 []uint8
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, uint64) ([]types.Transaction, []uint8, error)); ok {
return rf(ctx, batchNumber)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64) []types.Transaction); ok {
r0 = rf(ctx, batchNumber)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]types.Transaction)
}
}
if rf, ok := ret.Get(1).(func(context.Context, uint64) []uint8); ok {
r1 = rf(ctx, batchNumber)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).([]uint8)
}
}
if rf, ok := ret.Get(2).(func(context.Context, uint64) error); ok {
r2 = rf(ctx, batchNumber)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
// GetWIPBatch provides a mock function with given fields: ctx
func (_m *DbManagerMock) GetWIPBatch(ctx context.Context) (*WipBatch, error) {
ret := _m.Called(ctx)
var r0 *WipBatch
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (*WipBatch, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) *WipBatch); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*WipBatch)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// IsBatchClosed provides a mock function with given fields: ctx, batchNum
func (_m *DbManagerMock) IsBatchClosed(ctx context.Context, batchNum uint64) (bool, error) {
ret := _m.Called(ctx, batchNum)
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint64) (bool, error)); ok {
return rf(ctx, batchNum)
}
if rf, ok := ret.Get(0).(func(context.Context, uint64) bool); ok {
r0 = rf(ctx, batchNum)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(context.Context, uint64) error); ok {
r1 = rf(ctx, batchNum)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// OpenBatch provides a mock function with given fields: ctx, processingContext, dbTx
func (_m *DbManagerMock) OpenBatch(ctx context.Context, processingContext state.ProcessingContext, dbTx pgx.Tx) error {
ret := _m.Called(ctx, processingContext, dbTx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, state.ProcessingContext, pgx.Tx) error); ok {
r0 = rf(ctx, processingContext, dbTx)
} else {
r0 = ret.Error(0)
}
return r0
}
// ProcessForcedBatch provides a mock function with given fields: ForcedBatchNumber, request
func (_m *DbManagerMock) ProcessForcedBatch(ForcedBatchNumber uint64, request state.ProcessRequest) (*state.ProcessBatchResponse, error) {
ret := _m.Called(ForcedBatchNumber, request)
var r0 *state.ProcessBatchResponse
var r1 error
if rf, ok := ret.Get(0).(func(uint64, state.ProcessRequest) (*state.ProcessBatchResponse, error)); ok {
return rf(ForcedBatchNumber, request)
}
if rf, ok := ret.Get(0).(func(uint64, state.ProcessRequest) *state.ProcessBatchResponse); ok {
r0 = rf(ForcedBatchNumber, request)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*state.ProcessBatchResponse)
}
}
if rf, ok := ret.Get(1).(func(uint64, state.ProcessRequest) error); ok {
r1 = rf(ForcedBatchNumber, request)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// StoreProcessedTxAndDeleteFromPool provides a mock function with given fields: ctx, tx
func (_m *DbManagerMock) StoreProcessedTxAndDeleteFromPool(ctx context.Context, tx transactionToStore) error {
ret := _m.Called(ctx, tx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, transactionToStore) error); ok {
r0 = rf(ctx, tx)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateTxStatus provides a mock function with given fields: ctx, hash, newStatus, isWIP, reason
func (_m *DbManagerMock) UpdateTxStatus(ctx context.Context, hash common.Hash, newStatus pool.TxStatus, isWIP bool, reason *string) error {
ret := _m.Called(ctx, hash, newStatus, isWIP, reason)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, common.Hash, pool.TxStatus, bool, *string) error); ok {
r0 = rf(ctx, hash, newStatus, isWIP, reason)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewDbManagerMock creates a new instance of DbManagerMock. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewDbManagerMock(t interface {
mock.TestingT
Cleanup(func())
}) *DbManagerMock {
mock := &DbManagerMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}