-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmulti_match_query_test.go
452 lines (375 loc) · 11.9 KB
/
multi_match_query_test.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
package es_test
import (
"testing"
Operator "github.com/Trendyol/es-query-builder/es/enums/operator"
TextQueryType "github.com/Trendyol/es-query-builder/es/enums/text-query-type"
ZeroTermsQuery "github.com/Trendyol/es-query-builder/es/enums/zero-terms-query"
"github.com/Trendyol/es-query-builder/es"
"github.com/Trendyol/es-query-builder/test/assert"
)
//// Multi Match ////
func Test_Multi_Match_should_exist_on_es_package(t *testing.T) {
t.Parallel()
// Given When Then
assert.NotNil(t, es.MultiMatch[any])
}
func Test_Multi_Match_method_should_create_multiMatchType(t *testing.T) {
t.Parallel()
// Given
b := es.MultiMatch("value")
// Then
assert.NotNil(t, b)
assert.IsTypeString(t, "es.multiMatchType", b)
}
func Test_Multi_Match_should_have_Boost_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Boost)
}
func Test_Multi_Match_Boost_should_create_json_with_boost_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Boost(3.14),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"boost\":3.14,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Analyzer_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Analyzer)
}
func Test_Multi_Match_Analyzer_should_create_json_with_analyzer_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Analyzer("standard"),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"analyzer\":\"standard\",\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Operator_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Operator)
}
func Test_Multi_Match_Operator_should_create_json_with_operator_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Operator(Operator.And),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"operator\":\"and\",\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_CutoffFrequency_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.CutoffFrequency)
}
func Test_Multi_Match_CutoffFrequency_should_create_json_with_cutoff_frequency_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
CutoffFrequency(0.0001),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"cutoff_frequency\":0.0001,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Fields_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Fields)
}
func Test_Multi_Match_Fields_should_create_json_with_fields_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Fields("title", "description"),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"fields\":[\"title\",\"description\"],\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Fuzziness_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Fuzziness)
}
func Test_Multi_Match_Fuzziness_should_create_json_with_fuzziness_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Fuzziness("AUTO"),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"fuzziness\":\"AUTO\",\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Slop_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Slop)
}
func Test_Multi_Match_Slop_should_create_json_with_slop_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Slop(5),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"query\":\"Folder\",\"slop\":5}}}", bodyJSON)
}
func Test_Multi_Match_should_have_MinimumShouldMatch_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.MinimumShouldMatch)
}
func Test_Multi_Match_MinimumShouldMatch_should_create_json_with_minimum_should_match_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
MinimumShouldMatch(3),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"minimum_should_match\":3,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_FuzzyRewrite_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.FuzzyRewrite)
}
func Test_Multi_Match_FuzzyRewrite_should_create_json_with_fuzzy_rewrite_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
FuzzyRewrite("constant_score"),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"fuzzy_rewrite\":\"constant_score\",\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_FuzzyTranspositions_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.FuzzyTranspositions)
}
func Test_Multi_Match_FuzzyTranspositions_should_create_json_with_fuzzy_transpositions_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Directory").
FuzzyTranspositions(false),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"fuzzy_transpositions\":false,\"query\":\"Directory\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Lenient_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Lenient)
}
func Test_Multi_Match_Lenient_should_create_json_with_lenient_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Lenient(true),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"lenient\":true,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_MaxExpansions_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.MaxExpansions)
}
func Test_Multi_Match_MaxExpansions_should_create_json_with_max_expansions_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
MaxExpansions(99),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"max_expansions\":99,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_PrefixLength_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.PrefixLength)
}
func Test_Multi_Match_PrefixLength_should_create_json_with_prefix_length_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
PrefixLength(40),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"prefix_length\":40,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_AutoGenerateSynonymsPhraseQuery_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.AutoGenerateSynonymsPhraseQuery)
}
// nolint:golint,lll
func Test_Multi_Match_AutoGenerateSynonymsPhraseQuery_should_create_json_auto_generate_synonyms_phrase_query_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
AutoGenerateSynonymsPhraseQuery(false),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"auto_generate_synonyms_phrase_query\":false,\"query\":\"Folder\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_ZeroTermsQuery_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.ZeroTermsQuery)
}
func Test_Multi_Match_ZeroTermsQuery_should_create_json_with_zero_terms_query_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
ZeroTermsQuery(ZeroTermsQuery.All),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"query\":\"Folder\",\"zero_terms_query\":\"all\"}}}", bodyJSON)
}
func Test_Multi_Match_should_have_TieBreaker_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.TieBreaker)
}
func Test_Multi_Match_TieBreaker_should_create_json_with_tie_breaker_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
TieBreaker(8.8),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"query\":\"Folder\",\"tie_breaker\":8.8}}}", bodyJSON)
}
func Test_Multi_Match_should_have_Type_method(t *testing.T) {
t.Parallel()
// Given
match := es.MultiMatch("value")
// When Then
assert.NotNil(t, match.Type)
}
func Test_Multi_Match_Type_should_create_json_with_type_field_inside_multi_match(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("Folder").
Type(TextQueryType.Phrase),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
assert.Equal(t, "{\"query\":{\"multi_match\":{\"query\":\"Folder\",\"type\":\"phrase\"}}}", bodyJSON)
}
func Test_Multi_Match_should_create_json_with_match_field_inside_query(t *testing.T) {
t.Parallel()
// Given
query := es.NewQuery(
es.MultiMatch("this is a test").
Analyzer("standart").
Boost(2.14).
Operator(Operator.Or).
CutoffFrequency(0.241).
Fuzziness("AUTO").
FuzzyRewrite("constant_score").
FuzzyTranspositions(true).
Lenient(true).
MaxExpansions(50).
MinimumShouldMatch("50%").
PrefixLength(2).
Slop(7).
TieBreaker(4.35).
AutoGenerateSynonymsPhraseQuery(true).
Type(TextQueryType.Crossfields).
ZeroTermsQuery(ZeroTermsQuery.None),
)
// When Then
assert.NotNil(t, query)
bodyJSON := assert.MarshalWithoutError(t, query)
// nolint:golint,lll
assert.Equal(t, "{\"query\":{\"multi_match\":{\"analyzer\":\"standart\",\"auto_generate_synonyms_phrase_query\":true,\"boost\":2.14,\"cutoff_frequency\":0.241,\"fuzziness\":\"AUTO\",\"fuzzy_rewrite\":\"constant_score\",\"fuzzy_transpositions\":true,\"lenient\":true,\"max_expansions\":50,\"minimum_should_match\":\"50%\",\"operator\":\"or\",\"prefix_length\":2,\"query\":\"this is a test\",\"slop\":7,\"tie_breaker\":4.35,\"type\":\"cross_fields\",\"zero_terms_query\":\"none\"}}}", bodyJSON)
}