-
Notifications
You must be signed in to change notification settings - Fork 179
/
chunk_requests.go
210 lines (168 loc) · 5.19 KB
/
chunk_requests.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
// Code generated by mockery v2.21.4. DO NOT EDIT.
package mempool
import (
chunks "github.com/onflow/flow-go/model/chunks"
flow "github.com/onflow/flow-go/model/flow"
mempool "github.com/onflow/flow-go/module/mempool"
mock "github.com/stretchr/testify/mock"
time "time"
verification "github.com/onflow/flow-go/model/verification"
)
// ChunkRequests is an autogenerated mock type for the ChunkRequests type
type ChunkRequests struct {
mock.Mock
}
// Add provides a mock function with given fields: request
func (_m *ChunkRequests) Add(request *verification.ChunkDataPackRequest) bool {
ret := _m.Called(request)
var r0 bool
if rf, ok := ret.Get(0).(func(*verification.ChunkDataPackRequest) bool); ok {
r0 = rf(request)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// All provides a mock function with given fields:
func (_m *ChunkRequests) All() verification.ChunkDataPackRequestInfoList {
ret := _m.Called()
var r0 verification.ChunkDataPackRequestInfoList
if rf, ok := ret.Get(0).(func() verification.ChunkDataPackRequestInfoList); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(verification.ChunkDataPackRequestInfoList)
}
}
return r0
}
// IncrementAttempt provides a mock function with given fields: chunkID
func (_m *ChunkRequests) IncrementAttempt(chunkID flow.Identifier) bool {
ret := _m.Called(chunkID)
var r0 bool
if rf, ok := ret.Get(0).(func(flow.Identifier) bool); ok {
r0 = rf(chunkID)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// PopAll provides a mock function with given fields: chunkID
func (_m *ChunkRequests) PopAll(chunkID flow.Identifier) (chunks.LocatorMap, bool) {
ret := _m.Called(chunkID)
var r0 chunks.LocatorMap
var r1 bool
if rf, ok := ret.Get(0).(func(flow.Identifier) (chunks.LocatorMap, bool)); ok {
return rf(chunkID)
}
if rf, ok := ret.Get(0).(func(flow.Identifier) chunks.LocatorMap); ok {
r0 = rf(chunkID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(chunks.LocatorMap)
}
}
if rf, ok := ret.Get(1).(func(flow.Identifier) bool); ok {
r1 = rf(chunkID)
} else {
r1 = ret.Get(1).(bool)
}
return r0, r1
}
// Remove provides a mock function with given fields: chunkID
func (_m *ChunkRequests) Remove(chunkID flow.Identifier) bool {
ret := _m.Called(chunkID)
var r0 bool
if rf, ok := ret.Get(0).(func(flow.Identifier) bool); ok {
r0 = rf(chunkID)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// RequestHistory provides a mock function with given fields: chunkID
func (_m *ChunkRequests) RequestHistory(chunkID flow.Identifier) (uint64, time.Time, time.Duration, bool) {
ret := _m.Called(chunkID)
var r0 uint64
var r1 time.Time
var r2 time.Duration
var r3 bool
if rf, ok := ret.Get(0).(func(flow.Identifier) (uint64, time.Time, time.Duration, bool)); ok {
return rf(chunkID)
}
if rf, ok := ret.Get(0).(func(flow.Identifier) uint64); ok {
r0 = rf(chunkID)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(flow.Identifier) time.Time); ok {
r1 = rf(chunkID)
} else {
r1 = ret.Get(1).(time.Time)
}
if rf, ok := ret.Get(2).(func(flow.Identifier) time.Duration); ok {
r2 = rf(chunkID)
} else {
r2 = ret.Get(2).(time.Duration)
}
if rf, ok := ret.Get(3).(func(flow.Identifier) bool); ok {
r3 = rf(chunkID)
} else {
r3 = ret.Get(3).(bool)
}
return r0, r1, r2, r3
}
// Size provides a mock function with given fields:
func (_m *ChunkRequests) Size() uint {
ret := _m.Called()
var r0 uint
if rf, ok := ret.Get(0).(func() uint); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint)
}
return r0
}
// UpdateRequestHistory provides a mock function with given fields: chunkID, updater
func (_m *ChunkRequests) UpdateRequestHistory(chunkID flow.Identifier, updater mempool.ChunkRequestHistoryUpdaterFunc) (uint64, time.Time, time.Duration, bool) {
ret := _m.Called(chunkID, updater)
var r0 uint64
var r1 time.Time
var r2 time.Duration
var r3 bool
if rf, ok := ret.Get(0).(func(flow.Identifier, mempool.ChunkRequestHistoryUpdaterFunc) (uint64, time.Time, time.Duration, bool)); ok {
return rf(chunkID, updater)
}
if rf, ok := ret.Get(0).(func(flow.Identifier, mempool.ChunkRequestHistoryUpdaterFunc) uint64); ok {
r0 = rf(chunkID, updater)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(flow.Identifier, mempool.ChunkRequestHistoryUpdaterFunc) time.Time); ok {
r1 = rf(chunkID, updater)
} else {
r1 = ret.Get(1).(time.Time)
}
if rf, ok := ret.Get(2).(func(flow.Identifier, mempool.ChunkRequestHistoryUpdaterFunc) time.Duration); ok {
r2 = rf(chunkID, updater)
} else {
r2 = ret.Get(2).(time.Duration)
}
if rf, ok := ret.Get(3).(func(flow.Identifier, mempool.ChunkRequestHistoryUpdaterFunc) bool); ok {
r3 = rf(chunkID, updater)
} else {
r3 = ret.Get(3).(bool)
}
return r0, r1, r2, r3
}
type mockConstructorTestingTNewChunkRequests interface {
mock.TestingT
Cleanup(func())
}
// NewChunkRequests creates a new instance of ChunkRequests. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewChunkRequests(t mockConstructorTestingTNewChunkRequests) *ChunkRequests {
mock := &ChunkRequests{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}