-
Notifications
You must be signed in to change notification settings - Fork 179
/
collections.go
162 lines (131 loc) · 3.83 KB
/
collections.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
// Code generated by mockery v2.21.4. DO NOT EDIT.
package mock
import (
flow "github.com/onflow/flow-go/model/flow"
mock "github.com/stretchr/testify/mock"
)
// Collections is an autogenerated mock type for the Collections type
type Collections struct {
mock.Mock
}
// ByID provides a mock function with given fields: collID
func (_m *Collections) ByID(collID flow.Identifier) (*flow.Collection, error) {
ret := _m.Called(collID)
var r0 *flow.Collection
var r1 error
if rf, ok := ret.Get(0).(func(flow.Identifier) (*flow.Collection, error)); ok {
return rf(collID)
}
if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.Collection); ok {
r0 = rf(collID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*flow.Collection)
}
}
if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok {
r1 = rf(collID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// LightByID provides a mock function with given fields: collID
func (_m *Collections) LightByID(collID flow.Identifier) (*flow.LightCollection, error) {
ret := _m.Called(collID)
var r0 *flow.LightCollection
var r1 error
if rf, ok := ret.Get(0).(func(flow.Identifier) (*flow.LightCollection, error)); ok {
return rf(collID)
}
if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.LightCollection); ok {
r0 = rf(collID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*flow.LightCollection)
}
}
if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok {
r1 = rf(collID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// LightByTransactionID provides a mock function with given fields: txID
func (_m *Collections) LightByTransactionID(txID flow.Identifier) (*flow.LightCollection, error) {
ret := _m.Called(txID)
var r0 *flow.LightCollection
var r1 error
if rf, ok := ret.Get(0).(func(flow.Identifier) (*flow.LightCollection, error)); ok {
return rf(txID)
}
if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.LightCollection); ok {
r0 = rf(txID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*flow.LightCollection)
}
}
if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok {
r1 = rf(txID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Remove provides a mock function with given fields: collID
func (_m *Collections) Remove(collID flow.Identifier) error {
ret := _m.Called(collID)
var r0 error
if rf, ok := ret.Get(0).(func(flow.Identifier) error); ok {
r0 = rf(collID)
} else {
r0 = ret.Error(0)
}
return r0
}
// Store provides a mock function with given fields: collection
func (_m *Collections) Store(collection *flow.Collection) error {
ret := _m.Called(collection)
var r0 error
if rf, ok := ret.Get(0).(func(*flow.Collection) error); ok {
r0 = rf(collection)
} else {
r0 = ret.Error(0)
}
return r0
}
// StoreLight provides a mock function with given fields: collection
func (_m *Collections) StoreLight(collection *flow.LightCollection) error {
ret := _m.Called(collection)
var r0 error
if rf, ok := ret.Get(0).(func(*flow.LightCollection) error); ok {
r0 = rf(collection)
} else {
r0 = ret.Error(0)
}
return r0
}
// StoreLightAndIndexByTransaction provides a mock function with given fields: collection
func (_m *Collections) StoreLightAndIndexByTransaction(collection *flow.LightCollection) error {
ret := _m.Called(collection)
var r0 error
if rf, ok := ret.Get(0).(func(*flow.LightCollection) error); ok {
r0 = rf(collection)
} else {
r0 = ret.Error(0)
}
return r0
}
type mockConstructorTestingTNewCollections interface {
mock.TestingT
Cleanup(func())
}
// NewCollections creates a new instance of Collections. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewCollections(t mockConstructorTestingTNewCollections) *Collections {
mock := &Collections{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}