-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepository.go
217 lines (170 loc) · 4.69 KB
/
repository.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
package mocks
import (
"context"
"github.com/google/uuid"
"github.com/neuronlabs/neuron/mapping"
"github.com/neuronlabs/neuron/repository"
"github.com/stretchr/testify/mock"
"github.com/neuronlabs/neuron/query"
)
/**
Repository
*/
var (
// compile time check for the query.FullRepository implementation.
_ repository.Repository = &Repository{}
)
// Repository is an autogenerated mock type for the Repository type
type Repository struct {
id uuid.UUID
mock.Mock
}
// New creates new mock repository.
func New() *Repository {
return &Repository{
id: uuid.New(),
}
}
// Exists implements query.Exister interface.
func (_m *Repository) Exists(ctx context.Context, s *query.Scope) (bool, error) {
ret := _m.Called(ctx, s)
var r0 bool
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) bool); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *query.Scope) error); ok {
r1 = rf(ctx, s)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ID implements repository.Repository.
func (_m *Repository) ID() string {
return _m.id.String()
}
// Begin provides a mock function with given fields: ctx, s
func (_m *Repository) Begin(ctx context.Context, tx *query.Transaction) error {
ret := _m.Called(ctx, tx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Transaction) error); ok {
r0 = rf(ctx, tx)
} else {
r0 = ret.Error(0)
}
return r0
}
// Close closes the repository connection.
func (_m *Repository) Close(context.Context) error {
return nil
}
// Commit provides a mock function with given fields: ctx, m.
func (_m *Repository) Commit(ctx context.Context, tx *query.Transaction) error {
ret := _m.Called(ctx, tx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Transaction) error); ok {
r0 = rf(ctx, tx)
} else {
r0 = ret.Error(0)
}
return r0
}
// Count provides a mock function with given fields: ctx, s
func (_m *Repository) Count(ctx context.Context, s *query.Scope) (int64, error) {
ret := _m.Called(ctx, s)
var r0 int64
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) int64); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Get(0).(int64)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *query.Scope) error); ok {
r1 = rf(ctx, s)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Insert provides a mock function with given fields: ctx, s
func (_m *Repository) Insert(ctx context.Context, s *query.Scope) error {
ret := _m.Called(ctx, s)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) error); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Error(0)
}
return r0
}
// Delete provides a mock function with given fields: ctx, s
func (_m *Repository) Delete(ctx context.Context, s *query.Scope) (int64, error) {
ret := _m.Called(ctx, s)
var r0 int64
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) int64); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Get(0).(int64)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *query.Scope) error); ok {
r1 = rf(ctx, s)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Dial implements repository.Repository interface.
func (_m *Repository) Dial(context.Context) error {
return nil
}
// HealthCheck implements repository.Repository interface.
func (_m *Repository) HealthCheck(context.Context) (*repository.HealthResponse, error) {
return &repository.HealthResponse{Status: repository.StatusPass}, nil
}
// Find provides a mock function with given fields: ctx, s
func (_m *Repository) Find(ctx context.Context, s *query.Scope) error {
ret := _m.Called(ctx, s)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) error); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Error(0)
}
return r0
}
// Update provides a mock function with given fields: ctx, s
func (_m *Repository) Update(ctx context.Context, s *query.Scope) (int64, error) {
ret := _m.Called(ctx, s)
var r0 int64
if rf, ok := ret.Get(0).(func(context.Context, *query.Scope) int64); ok {
r0 = rf(ctx, s)
} else {
r0 = ret.Get(0).(int64)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *query.Scope) error); ok {
r1 = rf(ctx, s)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// RegisterModels implements repository.Repository interface.
func (_m *Repository) RegisterModels(...*mapping.ModelStruct) error {
return nil
}
// Rollback provides a mock function with given fields: ctx, s
func (_m *Repository) Rollback(ctx context.Context, tx *query.Transaction) error {
ret := _m.Called(ctx, tx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Transaction) error); ok {
r0 = rf(ctx, tx)
} else {
r0 = ret.Error(0)
}
return r0
}