-
Notifications
You must be signed in to change notification settings - Fork 178
/
chunks_queue.go
93 lines (74 loc) · 1.98 KB
/
chunks_queue.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
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mock
import (
chunks "github.com/onflow/flow-go/model/chunks"
mock "github.com/stretchr/testify/mock"
)
// ChunksQueue is an autogenerated mock type for the ChunksQueue type
type ChunksQueue struct {
mock.Mock
}
// AtIndex provides a mock function with given fields: index
func (_m *ChunksQueue) AtIndex(index uint64) (*chunks.Locator, error) {
ret := _m.Called(index)
var r0 *chunks.Locator
if rf, ok := ret.Get(0).(func(uint64) *chunks.Locator); ok {
r0 = rf(index)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*chunks.Locator)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(uint64) error); ok {
r1 = rf(index)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// LatestIndex provides a mock function with given fields:
func (_m *ChunksQueue) LatestIndex() (uint64, error) {
ret := _m.Called()
var r0 uint64
if rf, ok := ret.Get(0).(func() uint64); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint64)
}
var r1 error
if rf, ok := ret.Get(1).(func() error); ok {
r1 = rf()
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// StoreChunkLocator provides a mock function with given fields: locator
func (_m *ChunksQueue) StoreChunkLocator(locator *chunks.Locator) (bool, error) {
ret := _m.Called(locator)
var r0 bool
if rf, ok := ret.Get(0).(func(*chunks.Locator) bool); ok {
r0 = rf(locator)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
if rf, ok := ret.Get(1).(func(*chunks.Locator) error); ok {
r1 = rf(locator)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTNewChunksQueue interface {
mock.TestingT
Cleanup(func())
}
// NewChunksQueue creates a new instance of ChunksQueue. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewChunksQueue(t mockConstructorTestingTNewChunksQueue) *ChunksQueue {
mock := &ChunksQueue{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}