forked from opensearch-project/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewAddedCommandsIT.java
More file actions
492 lines (453 loc) · 16.7 KB
/
Copy pathNewAddedCommandsIT.java
File metadata and controls
492 lines (453 loc) · 16.7 KB
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
package org.opensearch.sql.ppl;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.equalTo;
import static org.opensearch.sql.common.setting.Settings.Key.CALCITE_ENGINE_ENABLED;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_BANK;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_DOG;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_MVEXPAND_EDGE_CASES;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_STRINGS;
import java.io.IOException;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.jupiter.api.Test;
import org.opensearch.client.ResponseException;
import org.opensearch.sql.util.TestUtils;
public class NewAddedCommandsIT extends PPLIntegTestCase {
@Override
public void init() throws Exception {
super.init();
loadIndex(Index.BANK);
loadIndex(Index.DOG);
loadIndex(Index.STRINGS);
loadIndex(Index.MVEXPAND_EDGE_CASES);
}
@Test
public void testJoin() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | join on firstname=holdersName %s",
TEST_INDEX_BANK, TEST_INDEX_DOG));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testLookup() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | lookup %s holdersName as firstname",
TEST_INDEX_BANK, TEST_INDEX_DOG));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
}
@Test
public void testSubsearch() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=[source=%s | where age>35 | fields age] as t", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
try {
result =
executeQuery(
String.format(
"search source=%s | where exists [ source=%s | where firstname=holdersName]",
TEST_INDEX_BANK, TEST_INDEX_DOG));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
try {
result =
executeQuery(
String.format(
"search source=%s | where firstname in [ source=%s | fields holdersName]",
TEST_INDEX_BANK, TEST_INDEX_DOG));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
try {
result =
executeQuery(
String.format(
"search source=%s | where firstname = [ source=%s | where holdersName='Hattie'"
+ " | fields holdersName | head 1]",
TEST_INDEX_BANK, TEST_INDEX_DOG));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
}
@Test
public void testAppendcol() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | stats count() by span(age, 10) | appendcol [ stats"
+ " avg(balance) by span(age, 10) ]",
TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
}
@Test
public void testRegexpMatch() throws IOException {
// Test regexp_match with pattern that matches substring
try {
executeQuery(
String.format(
"source=%s | eval f=regexp_match(name, 'ell') | fields f", TEST_INDEX_STRINGS));
} catch (ResponseException e) {
JSONObject result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testRegexpReplace() throws IOException {
// Test regexp_replace with pattern that matches substring
try {
executeQuery(
String.format(
"source=%s | eval f=regexp_replace(name, 'ell', '\1') | fields f",
TEST_INDEX_STRINGS));
} catch (ResponseException e) {
JSONObject result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testAppend() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | stats count() by span(age, 10) | append [ search source=%s |"
+ " stats avg(balance) by span(age, 10) ]",
TEST_INDEX_BANK, TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
}
@Test
public void testStrftimeFunction() throws IOException {
JSONObject result;
try {
executeQuery(
String.format(
"search source=%s | eval formatted_time = strftime(1521467703, '%s') | fields"
+ " formatted_time",
TEST_INDEX_BANK, "%Y-%m-%d"));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testAddTotalCommand() throws IOException {
JSONObject result;
try {
executeQuery(String.format("search source=%s | addtotals ", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testAddColTotalCommand() throws IOException {
JSONObject result;
try {
executeQuery(String.format("search source=%s | addcoltotals ", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testTransposeCommand() throws IOException {
JSONObject result;
try {
executeQuery(String.format("search source=%s | transpose ", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
@Test
public void testFieldFormatCommand() throws IOException {
JSONObject result;
try {
executeQuery(
String.format(
"search source=%s | fieldformat double_balance = balance * 2 ", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
verifyQuery(result);
}
}
private void verifyQuery(JSONObject result) throws IOException {
if (isCalciteEnabled()) {
assertFalse(result.getJSONArray("datarows").isEmpty());
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvCombineUnsupportedInV2() throws IOException {
JSONObject result;
try {
updateIndexSettings(
TEST_INDEX_BANK, "{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }");
result =
executeQuery(
String.format(
"source=%s | fields state, city, age | mvcombine age", TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
} finally {
updateIndexSettings(
TEST_INDEX_BANK, "{ \"index\": { \"max_inner_result_window\":" + 100 + " } }");
}
verifyQuery(result);
}
@Test
public void testNoMvUnsupportedInV2() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"source=%s | fields account_number, firstname | eval names = array(firstname) |"
+ " nomv names",
TEST_INDEX_BANK));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
verifyQuery(result);
}
@Test
public void testMvExpandCommandBasicExpansion() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills | where username='happy' | fields username,"
+ " skills.name | sort skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(3));
JSONArray datarows = result.getJSONArray("datarows");
assertThat(datarows.getJSONArray(0).getString(0), equalTo("happy"));
assertThat(datarows.getJSONArray(0).getString(1), equalTo("java"));
assertThat(datarows.getJSONArray(1).getString(1), equalTo("python"));
assertThat(datarows.getJSONArray(2).getString(1), equalTo("sql"));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandCommandNullInput() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills | where username='nullskills' | fields"
+ " username, skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(0));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandCommandEmptyArray() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills | where username='empty' | fields username,"
+ " skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(0));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandCommandNonArrayField() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills_not_array | where username='u1' | fields"
+ " username, skills_not_array",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(1));
assertThat(result.getJSONArray("datarows").getJSONArray(0).getString(1), equalTo("scala"));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandCommandLimitBoundary() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills limit=3 | where username='limituser' | fields"
+ " username, skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(3));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandCommandMultiDocument() throws IOException {
JSONObject result;
try {
result =
executeQuery(
String.format(
"search source=%s | mvexpand skills | where username='happy' OR username='single'"
+ " | fields username, skills.name | sort username, skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
} catch (ResponseException e) {
result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
}
if (isCalciteEnabled()) {
assertThat(result.getJSONArray("datarows").length(), equalTo(4));
JSONArray datarows = result.getJSONArray("datarows");
assertThat(datarows.getJSONArray(0).getString(0), equalTo("happy"));
assertThat(datarows.getJSONArray(3).getString(0), equalTo("single"));
} else {
JSONObject error = result.getJSONObject("error");
assertThat(
error.getString("details"),
containsString(
"is supported only when " + CALCITE_ENGINE_ENABLED.getKeyValue() + "=true"));
assertThat(error.getString("type"), equalTo("UnsupportedOperationException"));
}
}
@Test
public void testMvExpandInvalidLimitZero() throws IOException {
if (!isCalciteEnabled()) {
return; // Skip test when Calcite is disabled
}
try {
executeQuery(
String.format(
"search source=%s | mvexpand skills limit=0 | fields username, skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
fail("Expected IllegalArgumentException for limit=0");
} catch (ResponseException e) {
JSONObject result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
JSONObject error = result.getJSONObject("error");
String details = error.getString("details");
assertThat(
"Error message should mention limit or positive",
details.toLowerCase(),
containsString("limit"));
assertThat(error.getString("type"), equalTo("IllegalArgumentException"));
}
}
@Test
public void testMvExpandInvalidLimitNegative() throws IOException {
if (!isCalciteEnabled()) {
return; // Skip test when Calcite is disabled
}
try {
executeQuery(
String.format(
"search source=%s | mvexpand skills limit=-1 | fields username, skills.name",
TEST_INDEX_MVEXPAND_EDGE_CASES));
fail("Expected SyntaxCheckException for negative limit");
} catch (ResponseException e) {
JSONObject result = new JSONObject(TestUtils.getResponseBody(e.getResponse()));
JSONObject error = result.getJSONObject("error");
String details = error.getString("details");
assertThat(
"Error message should mention parsing error",
details.toLowerCase(),
containsString("extraneous"));
assertThat(error.getString("type"), equalTo("SyntaxCheckException"));
}
}
}