-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.go
350 lines (270 loc) · 11.5 KB
/
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
package elasticsteps
import (
"context"
"encoding/json"
"errors"
"fmt"
"os"
"github.com/cucumber/godog"
"github.com/swaggest/assertjson"
)
const defaultInstance = "_default"
// Manager manages the elasticsearch data.
type Manager struct {
instances map[string]Client
queries map[string]map[string]*string
}
// nolint: ireturn
func (m *Manager) client(instance string) Client {
return m.instances[instance]
}
// nolint: funlen
func (m *Manager) registerPrerequisites(sc *godog.ScenarioContext) {
sc.Step(`index "([^"]*)" is created in es "([^"]*)"$`, m.createIndex)
sc.Step(`index "([^"]*)" is created$`, func(index string) error {
return m.createIndex(index, defaultInstance)
})
sc.Step(`index "([^"]*)" is created in es "([^"]*)" with config[:]?$`, m.createIndexWithConfig)
sc.Step(`index "([^"]*)" is created with config[:]?$`, func(index string, config *godog.DocString) error {
return m.createIndexWithConfig(index, defaultInstance, config)
})
sc.Step(`index "([^"]*)" is created in es "([^"]*)" with config from file[:]?$`, m.createIndexWithConfigFromFile)
sc.Step(`index "([^"]*)" is created with config from file[:]?$`, func(index string, body *godog.DocString) error {
return m.createIndexWithConfigFromFile(index, defaultInstance, body)
})
sc.Step(`index "([^"]*)" is recreated in es "([^"]*)"$`, m.recreateIndex)
sc.Step(`index "([^"]*)" is recreated$`, func(index string) error {
return m.recreateIndex(index, defaultInstance)
})
sc.Step(`index "([^"]*)" is recreated in es "([^"]*)" with config[:]?$`, m.recreateIndexWithConfig)
sc.Step(`index "([^"]*)" is recreated with config[:]?$`, func(index string, config *godog.DocString) error {
return m.recreateIndexWithConfig(index, defaultInstance, config)
})
sc.Step(`index "([^"]*)" is recreated in es "([^"]*)" with config from file[:]?$`, m.recreateIndexWithConfigFromFile)
sc.Step(`index "([^"]*)" is recreated with config from file[:]?$`, func(index string, body *godog.DocString) error {
return m.recreateIndexWithConfigFromFile(index, defaultInstance, body)
})
sc.Step(`there is (?:an )?index "([^"]*)" in es "([^"]*)"$`, m.recreateIndex)
sc.Step(`there is (?:an )?index "([^"]*)"$`, func(index string) error {
return m.recreateIndex(index, defaultInstance)
})
sc.Step(`there is (?:an )?index "([^"]*)" in es "([^"]*)" with config[:]?$`, m.recreateIndexWithConfig)
sc.Step(`there is (?:an )?index "([^"]*)" with config[:]?$`, func(index string, config *godog.DocString) error {
return m.recreateIndexWithConfig(index, defaultInstance, config)
})
sc.Step(`there is (?:an )?index "([^"]*)" in es "([^"]*)" with config from file[:]?$`, m.recreateIndexWithConfigFromFile)
sc.Step(`there is (?:an )?index "([^"]*)" with config from file[:]?$`, func(index string, body *godog.DocString) error {
return m.recreateIndexWithConfigFromFile(index, defaultInstance, body)
})
sc.Step(`no index "([^"]*)" in es "([^"]*)"$`, m.deleteIndex)
sc.Step(`no index "([^"]*)"$`, func(index string) error {
return m.deleteIndex(index, defaultInstance)
})
sc.Step(`no docs in index "([^"]*)" of es "([^"]*)"$`, m.truncateIndex)
sc.Step(`no docs in index "([^"]*)"$`, func(index string) error {
return m.truncateIndex(index, defaultInstance)
})
sc.Step(`these docs are stored in index "([^"]*)" of es "([^"]*)"[:]?$`, m.indexDocs)
sc.Step(`these docs are stored in index "([^"]*)"[:]?$`, func(index string, docs *godog.DocString) error {
return m.indexDocs(index, defaultInstance, docs)
})
sc.Step(`docs (?:in|from) this file are stored in index "([^"]*)" of es "([^"]*)"[:]?$`, m.indexDocsFromFile)
sc.Step(`docs (?:in|from) this file are stored in index "([^"]*)"[:]?$`, func(index string, body *godog.DocString) error {
return m.indexDocsFromFile(index, defaultInstance, body)
})
}
func (m *Manager) registerActions(sc *godog.ScenarioContext) {
sc.Step(`I search in index "([^"]*)" of es "([^"]*)" with query[:]?$`, m.findDocuments)
sc.Step(`I search in index "([^"]*)" with query[:]?$`, func(index string, query *godog.DocString) error {
return m.findDocuments(index, defaultInstance, query)
})
}
func (m *Manager) registerAssertions(sc *godog.ScenarioContext) {
sc.Step(`index "([^"]*)" exists in es "([^"]*)"$`, m.assertIndexExists)
sc.Step(`index "([^"]*)" exists$`, func(index string) error {
return m.assertIndexExists(index, defaultInstance)
})
sc.Step(`index "([^"]*)" does not exist in es "([^"]*)"$`, m.assertIndexNotExists)
sc.Step(`index "([^"]*)" does not exist$`, func(index string) error {
return m.assertIndexNotExists(index, defaultInstance)
})
sc.Step(`no docs are available in index "([^"]*)" of es "([^"]*)"$`, m.assertNoDocs)
sc.Step(`no docs are available in index "([^"]*)"$`, func(index string) error {
return m.assertNoDocs(index, defaultInstance)
})
sc.Step(`only these docs are available in index "([^"]*)" of es "([^"]*)"[:]?$`, m.assertAllDocs)
sc.Step(`only these docs are available in index "([^"]*)"[:]?$`, func(index string, docs *godog.DocString) error {
return m.assertAllDocs(index, defaultInstance, docs)
})
sc.Step(`only docs (?:in|from) this file are available in index "([^"]*)" of es "([^"]*)"[:]?$`, m.assertAllDocsFromFile)
sc.Step(`only docs (?:in|from) this file are available in index "([^"]*)"[:]?$`, func(index string, body *godog.DocString) error {
return m.assertAllDocsFromFile(index, defaultInstance, body)
})
sc.Step(`these docs are found in index "([^"]*)" of es "([^"]*)"[:]?$`, m.assertFoundDocs)
sc.Step(`these docs are found in index "([^"]*)"[:]?$`, func(index string, docs *godog.DocString) error {
return m.assertFoundDocs(index, defaultInstance, docs)
})
sc.Step(`docs (?:in|from) this file are found in index "([^"]*)" of es "([^"]*)"[:]?$`, m.assertFoundDocsFromFile)
sc.Step(`docs (?:in|from) this file are found in index "([^"]*)"[:]?$`, func(index string, body *godog.DocString) error {
return m.assertFoundDocsFromFile(index, defaultInstance, body)
})
}
// RegisterContext registers the manager to the test suite.
func (m *Manager) RegisterContext(sc *godog.ScenarioContext) {
sc.Before(func(context.Context, *godog.Scenario) (context.Context, error) {
m.queries = make(map[string]map[string]*string)
return nil, nil
})
m.registerPrerequisites(sc)
m.registerActions(sc)
m.registerAssertions(sc)
}
func (m *Manager) createIndex(index, instance string) error {
return m.createIndexWithConfig(index, instance, nil)
}
func (m *Manager) createIndexWithConfig(index, instance string, body *godog.DocString) error {
var config *string
if body != nil {
config = &body.Content
}
return m.client(instance).CreateIndex(context.Background(), index, config)
}
func (m *Manager) createIndexWithConfigFromFile(index, instance string, body *godog.DocString) error {
config, err := os.ReadFile(body.Content)
if err != nil {
return fmt.Errorf("could not read config from file %q: %w", body.Content, err)
}
return m.createIndexWithConfig(index, instance, &godog.DocString{Content: string(config)})
}
func (m *Manager) recreateIndex(index, instance string) error {
return m.recreateIndexWithConfig(index, instance, nil)
}
func (m *Manager) recreateIndexWithConfig(index, instance string, body *godog.DocString) error {
var config *string
if body != nil {
config = &body.Content
}
return m.client(instance).RecreateIndex(context.Background(), index, config)
}
func (m *Manager) recreateIndexWithConfigFromFile(index, instance string, body *godog.DocString) error {
config, err := os.ReadFile(body.Content)
if err != nil {
return fmt.Errorf("could not read config from file %q: %w", body.Content, err)
}
return m.recreateIndexWithConfig(index, instance, &godog.DocString{Content: string(config)})
}
func (m *Manager) deleteIndex(index, instance string) error {
return m.client(instance).DeleteIndex(context.Background(), index)
}
func (m *Manager) truncateIndex(index, instance string) error {
return m.client(instance).DeleteAllDocuments(context.Background(), index)
}
func (m *Manager) indexDocs(index, instance string, body *godog.DocString) error {
var docs []Document
if err := json.Unmarshal([]byte(body.Content), &docs); err != nil {
return fmt.Errorf("could not read documents for indexing: %w", err)
}
return m.client(instance).IndexDocuments(context.Background(), index, docs...)
}
func (m *Manager) indexDocsFromFile(index, instance string, body *godog.DocString) error {
content, err := os.ReadFile(body.Content)
if err != nil {
return fmt.Errorf("could not read docs from file %q: %w", body.Content, err)
}
return m.indexDocs(index, instance, &godog.DocString{Content: string(content)})
}
func (m *Manager) findDocuments(index, instance string, query *godog.DocString) error {
if _, ok := m.queries[instance]; !ok {
m.queries[instance] = make(map[string]*string)
}
m.queries[instance][index] = &query.Content
return nil
}
func (m *Manager) assertIndexExists(index, instance string) error {
_, err := m.client(instance).GetIndex(context.Background(), index)
return err
}
func (m *Manager) assertIndexNotExists(index, instance string) error {
_, err := m.client(instance).GetIndex(context.Background(), index)
if errors.Is(err, ErrIndexNotFound) {
return nil
}
return err
}
func (m *Manager) assertNoDocs(index, instance string) error {
docs, err := m.client(instance).FindDocuments(context.Background(), index, nil)
numDocs := len(docs)
if numDocs > 0 {
return fmt.Errorf("there are %d docs in index %q", numDocs, index) // nolint: goerr113
}
return err
}
func (m *Manager) assertAllDocs(index, instance string, body *godog.DocString) error {
docs, err := m.client(instance).FindDocuments(context.Background(), index, nil)
if err != nil {
return err
}
actual, err := json.Marshal(docs)
if err != nil {
return err
}
expected := []byte(body.Content)
if err := assertjson.FailNotEqual(expected, actual); err != nil {
return fmt.Errorf("failed to compare docs: %w", err)
}
return nil
}
func (m *Manager) assertAllDocsFromFile(index, instance string, body *godog.DocString) error {
content, err := os.ReadFile(body.Content)
if err != nil {
return fmt.Errorf("could not read docs from file %q: %w", body.Content, err)
}
return m.assertAllDocs(index, instance, &godog.DocString{Content: string(content)})
}
func (m *Manager) assertFoundDocs(index, instance string, body *godog.DocString) error {
var query *string
if qs, ok := m.queries[instance]; ok {
query = qs[index]
}
docs, err := m.client(instance).FindDocuments(context.Background(), index, query)
if err != nil {
return err
}
actual, err := json.Marshal(docs)
if err != nil {
return err
}
expected := []byte(body.Content)
if err := assertjson.FailNotEqual(expected, actual); err != nil {
return fmt.Errorf("failed to compare docs: %w", err)
}
return nil
}
func (m *Manager) assertFoundDocsFromFile(index, instance string, body *godog.DocString) error {
content, err := os.ReadFile(body.Content)
if err != nil {
return fmt.Errorf("could not read docs from file %q: %w", body.Content, err)
}
return m.assertFoundDocs(index, instance, &godog.DocString{Content: string(content)})
}
// ManagerOption sets up the manager.
type ManagerOption func(m *Manager)
// NewManager initiates a new data manager.
func NewManager(client Client, opts ...ManagerOption) *Manager {
m := &Manager{
instances: map[string]Client{
defaultInstance: client,
},
queries: map[string]map[string]*string{},
}
for _, o := range opts {
o(m)
}
return m
}
// WithInstance adds a new es instance.
func WithInstance(name string, client Client) ManagerOption {
return func(m *Manager) {
m.instances[name] = client
}
}