forked from opensearch-project/anomaly-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnomalyDetectorRestApiIT.java
2264 lines (2081 loc) · 101 KB
/
AnomalyDetectorRestApiIT.java
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*/
package org.opensearch.ad.rest;
import static org.hamcrest.Matchers.containsString;
import static org.opensearch.ad.rest.handler.AbstractAnomalyDetectorActionHandler.DUPLICATE_DETECTOR_MSG;
import static org.opensearch.ad.rest.handler.AbstractAnomalyDetectorActionHandler.NO_DOCS_IN_USER_INDEX_MSG;
import java.io.IOException;
import java.time.Instant;
import java.time.temporal.ChronoUnit;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.HttpEntity;
import org.apache.hc.core5.http.io.entity.StringEntity;
import org.hamcrest.CoreMatchers;
import org.junit.Assert;
import org.opensearch.ad.AnomalyDetectorRestTestCase;
import org.opensearch.ad.constant.ADCommonMessages;
import org.opensearch.ad.constant.ADCommonName;
import org.opensearch.ad.model.AnomalyDetector;
import org.opensearch.ad.model.AnomalyDetectorExecutionInput;
import org.opensearch.ad.model.AnomalyResult;
import org.opensearch.ad.settings.ADEnabledSetting;
import org.opensearch.client.Response;
import org.opensearch.client.ResponseException;
import org.opensearch.common.UUIDs;
import org.opensearch.common.xcontent.support.XContentMapValues;
import org.opensearch.core.rest.RestStatus;
import org.opensearch.core.xcontent.ToXContentObject;
import org.opensearch.index.query.QueryBuilders;
import org.opensearch.search.builder.SearchSourceBuilder;
import org.opensearch.timeseries.TestHelpers;
import org.opensearch.timeseries.TimeSeriesAnalyticsPlugin;
import org.opensearch.timeseries.constant.CommonMessages;
import org.opensearch.timeseries.constant.CommonName;
import org.opensearch.timeseries.model.DateRange;
import org.opensearch.timeseries.model.Feature;
import org.opensearch.timeseries.model.Job;
import org.opensearch.timeseries.rest.handler.AbstractTimeSeriesActionHandler;
import org.opensearch.timeseries.settings.TimeSeriesSettings;
import org.opensearch.timeseries.util.RestHandlerUtils;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
public class AnomalyDetectorRestApiIT extends AnomalyDetectorRestTestCase {
protected static final String INDEX_NAME = "indexname";
protected static final String TIME_FIELD = "timestamp";
public void testCreateAnomalyDetectorWithNotExistingIndices() throws Exception {
AnomalyDetector detector = TestHelpers.randomAnomalyDetector(TestHelpers.randomUiMetadata(), null);
TestHelpers
.assertFailWith(
ResponseException.class,
"index_not_found_exception",
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detector),
null
)
);
}
public void testCreateAnomalyDetectorWithEmptyIndices() throws Exception {
AnomalyDetector detector = TestHelpers.randomAnomalyDetector(TestHelpers.randomUiMetadata(), null);
TestHelpers
.makeRequest(
client(),
"PUT",
"/" + detector.getIndices().get(0),
ImmutableMap.of(),
TestHelpers
.toHttpEntity(
"{\"settings\":{\"number_of_shards\":1}," + " \"mappings\":{\"properties\":" + "{\"field1\":{\"type\":\"text\"}}}}"
),
null
);
TestHelpers
.assertFailWith(
ResponseException.class,
"Can't create anomaly detector as no document is found in the indices",
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detector),
null
)
);
}
private AnomalyDetector createIndexAndGetAnomalyDetector(String indexName) throws IOException {
return createIndexAndGetAnomalyDetector(indexName, ImmutableList.of(TestHelpers.randomFeature(true)));
}
private AnomalyDetector createIndexAndGetAnomalyDetector(String indexName, List<Feature> features) throws IOException {
return createIndexAndGetAnomalyDetector(indexName, features, false);
}
private AnomalyDetector createIndexAndGetAnomalyDetector(String indexName, List<Feature> features, boolean useDateNanos)
throws IOException {
return createIndexAndGetAnomalyDetector(indexName, features, useDateNanos, false);
}
private AnomalyDetector createIndexAndGetAnomalyDetector(
String indexName,
List<Feature> features,
boolean useDateNanos,
boolean useFlattenResultIndex
) throws IOException {
TestHelpers.createIndexWithTimeField(client(), indexName, TIME_FIELD, useDateNanos);
String testIndexData = "{\"keyword-field\": \"field-1\", \"ip-field\": \"1.2.3.4\", \"timestamp\": 1}";
TestHelpers.ingestDataToIndex(client(), indexName, TestHelpers.toHttpEntity(testIndexData));
AnomalyDetector detector = useFlattenResultIndex
? TestHelpers.randomAnomalyDetectorWithFlattenResultIndex(TIME_FIELD, indexName, features)
: TestHelpers.randomAnomalyDetector(TIME_FIELD, indexName, features);
return detector;
}
public void testCreateAnomalyDetectorWithDuplicateName() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(INDEX_NAME);
Feature feature = TestHelpers.randomFeature();
List<Feature> featureList = ImmutableList.of(feature);
AnomalyDetector detectorDuplicateName = new AnomalyDetector(
AnomalyDetector.NO_ID,
randomLong(),
detector.getName(),
randomAlphaOfLength(5),
randomAlphaOfLength(5),
detector.getIndices(),
featureList,
TestHelpers.randomQuery(),
TestHelpers.randomIntervalTimeConfiguration(),
TestHelpers.randomIntervalTimeConfiguration(),
randomIntBetween(1, TimeSeriesSettings.MAX_SHINGLE_SIZE),
TestHelpers.randomUiMetadata(),
randomInt(),
null,
null,
TestHelpers.randomUser(),
null,
TestHelpers.randomImputationOption(featureList),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
null
);
TestHelpers
.assertFailWith(
ResponseException.class,
"Cannot create anomaly detector with name",
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detectorDuplicateName),
null
)
);
}
public void testCreateAnomalyDetector_withFlattenedResultIndex() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(
INDEX_NAME,
ImmutableList.of(TestHelpers.randomFeature("feature_bytes", "agg", true)),
false,
true
);
// test behavior when AD is disabled
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detector),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
// test behavior when AD is enabled
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector with flattened result index failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
int version = (int) responseMap.get("_version");
assertNotEquals("response is missing Id", AnomalyDetector.NO_ID, id);
assertTrue("incorrect version", version > 0);
// ensure the flattened result index was created
String expectedFlattenedIndex = String
.format(Locale.ROOT, "opensearch-ad-plugin-result-test_flattened_%s", id.toLowerCase(Locale.ROOT));
boolean aliasExists = aliasExists(expectedFlattenedIndex);
assertTrue(aliasExists);
// ensure that the flattened field "feature_data_feature_bytes" exists in the mappings
String startDetectorEndpoint = String.format(Locale.ROOT, TestHelpers.AD_BASE_START_DETECTOR_URL, id);
Response startDetectorResponse = TestHelpers
.makeRequest(client(), "POST", startDetectorEndpoint, ImmutableMap.of(), (HttpEntity) null, null);
String getFlattenedResultIndexEndpoint = String
.format(Locale.ROOT, "/opensearch-ad-plugin-result-test_flattened_%s", id.toLowerCase(Locale.ROOT));
// wait for the detector starts writing result
try {
Thread.sleep(60 * 1000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new RuntimeException("Thread was interrupted while waiting", e);
}
Response getIndexResponse = TestHelpers.makeRequest(client(), "GET", getFlattenedResultIndexEndpoint, ImmutableMap.of(), "", null);
Map<String, Object> flattenedResultIndex = entityAsMap(getIndexResponse);
String indexKey = flattenedResultIndex.keySet().stream().findFirst().orElse(null);
Map<String, Object> indexDetails = (Map<String, Object>) flattenedResultIndex.get(indexKey);
Map<String, Object> mappings = (Map<String, Object>) indexDetails.get("mappings");
Object dynamicValue = mappings.get("dynamic");
assertEquals("Dynamic field is not set to true", "true", dynamicValue.toString());
Map<String, Object> properties = (Map<String, Object>) mappings.get("properties");
assertTrue("Flattened field 'feature_data_feature_bytes' does not exist", properties.containsKey("feature_data_feature_bytes"));
}
public void testUpdateAnomalyDetector_disableFlattenResultIndex_shouldDeletePipeline() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(
INDEX_NAME,
ImmutableList.of(TestHelpers.randomFeature("feature_bytes", "agg", true)),
false,
true
);
// test behavior when AD is enabled
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector with flattened result index failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
String expectedFlattenedIndex = String
.format(Locale.ROOT, "opensearch-ad-plugin-result-test_flattened_%s", id.toLowerCase(Locale.ROOT));
String expectedPipelineId = String.format(Locale.ROOT, "flatten_result_index_ingest_pipeline%s", id.toLowerCase(Locale.ROOT));
String getIngestPipelineEndpoint = String.format(Locale.ROOT, "_ingest/pipeline/%s", expectedPipelineId);
Response getPipelineResponse = TestHelpers.makeRequest(client(), "GET", getIngestPipelineEndpoint, ImmutableMap.of(), "", null);
assertEquals(
"Expected 200 response but got: " + getPipelineResponse.getStatusLine().getStatusCode(),
200,
getPipelineResponse.getStatusLine().getStatusCode()
);
List<Feature> features = detector.getFeatureAttributes();
AnomalyDetector newDetector = new AnomalyDetector(
id,
detector.getVersion(),
detector.getName(),
detector.getDescription(),
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
detector.getLastUpdateTime(),
null,
detector.getUser(),
detector.getCustomResultIndexOrAlias(),
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
false,
detector.getLastBreakingUIChangeTime()
);
Response updateResponse = TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + id + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
);
assertEquals("Update anomaly detector failed", RestStatus.OK, TestHelpers.restStatus(updateResponse));
ResponseException responseException = expectThrows(
ResponseException.class,
() -> TestHelpers.makeRequest(client(), "GET", getIngestPipelineEndpoint, ImmutableMap.of(), "", null)
);
int statusCode = responseException.getResponse().getStatusLine().getStatusCode();
assertEquals("Expected 404 response but got: " + statusCode, 404, statusCode);
}
public void testUpdateAnomalyDetectorFlattenResultIndexField() throws Exception {
TestHelpers.createIndexWithTimeField(client(), INDEX_NAME, TIME_FIELD, false);
String testIndexData = "{\"keyword-field\": \"field-1\", \"ip-field\": \"1.2.3.4\", \"timestamp\": 1}";
TestHelpers.ingestDataToIndex(client(), INDEX_NAME, TestHelpers.toHttpEntity(testIndexData));
AnomalyDetector detector = TestHelpers
.randomDetector(
ImmutableList.of(TestHelpers.randomFeature("feature_bytes", "agg", true)),
INDEX_NAME,
5,
TIME_FIELD,
null,
ADCommonName.CUSTOM_RESULT_INDEX_PREFIX + "test"
);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
List<Feature> features = detector.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector newDetector = new AnomalyDetector(
id,
null,
detector.getName(),
detector.getDescription(),
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
detector.getLastUpdateTime(),
detector.getCategoryFields(),
detector.getUser(),
detector.getCustomResultIndexOrAlias(),
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
detector.getRules(),
null,
null,
null,
true,
detector.getLastBreakingUIChangeTime()
);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + id + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
)
);
assertThat(ex.getMessage(), containsString(CommonMessages.CAN_NOT_CHANGE_FLATTEN_RESULT_INDEX));
}
public void testCreateAnomalyDetector() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(INDEX_NAME);
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detector),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
int version = (int) responseMap.get("_version");
assertNotEquals("response is missing Id", AnomalyDetector.NO_ID, id);
assertTrue("incorrect version", version > 0);
// users cannot specify detector id when creating a detector
AnomalyDetector detector2 = createIndexAndGetAnomalyDetector(INDEX_NAME);
String blahId = "__blah__";
response = TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(RestHandlerUtils.DETECTOR_ID, blahId),
TestHelpers.toHttpEntity(detector2),
null
);
assertEquals("Create anomaly detector failed", RestStatus.CREATED, TestHelpers.restStatus(response));
responseMap = entityAsMap(response);
id = (String) responseMap.get("_id");
assertNotEquals("response is missing Id", blahId, id);
}
public void testCreateAnomalyDetectorWithDateNanos() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(INDEX_NAME, ImmutableList.of(TestHelpers.randomFeature(true)), true);
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(detector),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
int version = (int) responseMap.get("_version");
assertNotEquals("response is missing Id", AnomalyDetector.NO_ID, id);
assertTrue("incorrect version", version > 0);
}
public void testUpdateAnomalyDetectorCategoryField() throws Exception {
AnomalyDetector detector = createIndexAndGetAnomalyDetector(INDEX_NAME);
Response response = TestHelpers
.makeRequest(client(), "POST", TestHelpers.AD_BASE_DETECTORS_URI, ImmutableMap.of(), TestHelpers.toHttpEntity(detector), null);
assertEquals("Create anomaly detector failed", RestStatus.CREATED, TestHelpers.restStatus(response));
Map<String, Object> responseMap = entityAsMap(response);
String id = (String) responseMap.get("_id");
List<Feature> features = detector.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector newDetector = new AnomalyDetector(
id,
null,
detector.getName(),
detector.getDescription(),
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
detector.getLastUpdateTime(),
ImmutableList.of(randomAlphaOfLength(5)),
detector.getUser(),
null,
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
detector.getLastBreakingUIChangeTime()
);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + id + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
)
);
assertThat(ex.getMessage(), containsString(CommonMessages.CAN_NOT_CHANGE_CATEGORY_FIELD));
}
public void testGetAnomalyDetector() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, true, client());
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(ResponseException.class, () -> getConfig(detector.getId(), client()));
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
AnomalyDetector createdDetector = getConfig(detector.getId(), client());
assertEquals("Incorrect Location header", detector, createdDetector);
}
public void testGetNotExistingAnomalyDetector() throws Exception {
createRandomAnomalyDetector(true, true, client());
TestHelpers.assertFailWith(ResponseException.class, null, () -> getConfig(randomAlphaOfLength(5), client()));
}
public void testUpdateAnomalyDetector() throws Exception {
AnomalyDetector detector = createAnomalyDetector(createIndexAndGetAnomalyDetector(INDEX_NAME), true, client());
String newDescription = randomAlphaOfLength(5);
List<Feature> features = detector.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector newDetector = new AnomalyDetector(
detector.getId(),
detector.getVersion(),
detector.getName(),
newDescription,
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
detector.getLastUpdateTime(),
null,
detector.getUser(),
null,
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
detector.getLastBreakingUIChangeTime()
);
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + detector.getId() + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response updateResponse = TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + detector.getId() + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
);
assertEquals("Update anomaly detector failed", RestStatus.OK, TestHelpers.restStatus(updateResponse));
Map<String, Object> responseBody = entityAsMap(updateResponse);
assertEquals("Updated anomaly detector id doesn't match", detector.getId(), responseBody.get("_id"));
assertEquals("Version not incremented", (detector.getVersion().intValue() + 1), (int) responseBody.get("_version"));
AnomalyDetector updatedDetector = getConfig(detector.getId(), client());
assertNotEquals("Anomaly detector last update time not changed", updatedDetector.getLastUpdateTime(), detector.getLastUpdateTime());
assertEquals("Anomaly detector description not updated", newDescription, updatedDetector.getDescription());
}
public void testUpdateAnomalyDetectorNameToExisting() throws Exception {
AnomalyDetector detector1 = createIndexAndGetAnomalyDetector("index-test-one");
AnomalyDetector detector2 = createIndexAndGetAnomalyDetector("index-test-two");
List<Feature> features = detector1.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector newDetector1WithDetector2Name = new AnomalyDetector(
detector1.getId(),
detector1.getVersion(),
detector2.getName(),
detector1.getDescription(),
detector1.getTimeField(),
detector1.getIndices(),
features,
detector1.getFilterQuery(),
detector1.getInterval(),
detector1.getWindowDelay(),
detector1.getShingleSize(),
detector1.getUiMetadata(),
detector1.getSchemaVersion(),
detector1.getLastUpdateTime(),
null,
detector1.getUser(),
null,
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
detector1.getLastBreakingUIChangeTime()
);
TestHelpers
.assertFailWith(
ResponseException.class,
"Cannot create anomaly detector with name",
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_DETECTORS_URI,
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector1WithDetector2Name),
null
)
);
}
public void testUpdateAnomalyDetectorNameToNew() throws Exception {
AnomalyDetector detector = createAnomalyDetector(createIndexAndGetAnomalyDetector(INDEX_NAME), true, client());
List<Feature> features = detector.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector detectorWithNewName = new AnomalyDetector(
detector.getId(),
detector.getVersion(),
randomAlphaOfLength(5),
detector.getDescription(),
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
Instant.now(),
null,
detector.getUser(),
null,
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
Instant.now()
);
TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + detector.getId() + "?refresh=true",
ImmutableMap.of(),
TestHelpers.toHttpEntity(detectorWithNewName),
null
);
AnomalyDetector resultDetector = getConfig(detectorWithNewName.getId(), client());
assertEquals("Detector name updating failed", detectorWithNewName.getName(), resultDetector.getName());
assertEquals("Updated anomaly detector id doesn't match", detectorWithNewName.getId(), resultDetector.getId());
assertNotEquals(
"Anomaly detector last update time not changed",
detectorWithNewName.getLastUpdateTime(),
resultDetector.getLastUpdateTime()
);
}
public void testUpdateAnomalyDetectorWithNotExistingIndex() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, true, client());
String newDescription = randomAlphaOfLength(5);
List<Feature> features = detector.getFeatureAttributes();
long expectedFeatures = features.stream().filter(Feature::getEnabled).count();
AnomalyDetector newDetector = new AnomalyDetector(
detector.getId(),
detector.getVersion(),
detector.getName(),
newDescription,
detector.getTimeField(),
detector.getIndices(),
features,
detector.getFilterQuery(),
detector.getInterval(),
detector.getWindowDelay(),
detector.getShingleSize(),
detector.getUiMetadata(),
detector.getSchemaVersion(),
detector.getLastUpdateTime(),
null,
detector.getUser(),
null,
TestHelpers.randomImputationOption(features),
randomIntBetween(1, 10000),
randomInt(TimeSeriesSettings.MAX_SHINGLE_SIZE / 2),
randomIntBetween(1, 1000),
null,
null,
null,
null,
null,
detector.getLastBreakingUIChangeTime()
);
deleteIndexWithAdminClient(CommonName.CONFIG_INDEX);
TestHelpers
.assertFailWith(
ResponseException.class,
null,
() -> TestHelpers
.makeRequest(
client(),
"PUT",
TestHelpers.AD_BASE_DETECTORS_URI + "/" + detector.getId(),
ImmutableMap.of(),
TestHelpers.toHttpEntity(newDetector),
null
)
);
}
public void testSearchAnomalyDetector() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, true, client());
SearchSourceBuilder search = (new SearchSourceBuilder()).query(QueryBuilders.termQuery("_id", detector.getId()));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"GET",
TestHelpers.AD_BASE_DETECTORS_URI + "/_search",
ImmutableMap.of(),
new StringEntity(search.toString(), ContentType.APPLICATION_JSON),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response searchResponse = TestHelpers
.makeRequest(
client(),
"GET",
TestHelpers.AD_BASE_DETECTORS_URI + "/_search",
ImmutableMap.of(),
new StringEntity(search.toString(), ContentType.APPLICATION_JSON),
null
);
assertEquals("Search anomaly detector failed", RestStatus.OK, TestHelpers.restStatus(searchResponse));
}
public void testStatsAnomalyDetector() throws Exception {
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers.makeRequest(client(), "GET", TimeSeriesAnalyticsPlugin.LEGACY_AD_BASE + "/stats", ImmutableMap.of(), "", null)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response statsResponse = TestHelpers
.makeRequest(client(), "GET", TimeSeriesAnalyticsPlugin.LEGACY_AD_BASE + "/stats", ImmutableMap.of(), "", null);
assertEquals("Get stats failed", RestStatus.OK, TestHelpers.restStatus(statsResponse));
statsResponse = TestHelpers
.makeRequest(
client(),
"GET",
TimeSeriesAnalyticsPlugin.LEGACY_AD_BASE
+ "/_local/stats/ad_execute_request_count,anomaly_detectors_index_status,ad_hc_execute_request_count,ad_hc_execute_failure_count,ad_execute_failure_count,models_checkpoint_index_status,anomaly_results_index_status",
ImmutableMap.of(),
"",
null
);
assertEquals("Get stats failed", RestStatus.OK, TestHelpers.restStatus(statsResponse));
}
public void testPreviewAnomalyDetector() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, false, client());
AnomalyDetectorExecutionInput input = new AnomalyDetectorExecutionInput(
detector.getId(),
Instant.now().minusSeconds(60 * 10),
Instant.now(),
null
);
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, true);
Response response = TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null
);
assertEquals("Execute anomaly detector failed", RestStatus.OK, TestHelpers.restStatus(response));
}
public void testPreviewAnomalyDetectorWhichNotExist() throws Exception {
createRandomAnomalyDetector(true, false, client());
AnomalyDetectorExecutionInput input = new AnomalyDetectorExecutionInput(
randomAlphaOfLength(5),
Instant.now().minusSeconds(60 * 10),
Instant.now(),
null
);
TestHelpers
.assertFailWith(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null
)
);
}
public void testExecuteAnomalyDetectorWithNullDetectorId() throws Exception {
AnomalyDetectorExecutionInput input = new AnomalyDetectorExecutionInput(
null,
Instant.now().minusSeconds(60 * 10),
Instant.now(),
null
);
TestHelpers
.assertFailWith(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null
)
);
}
public void testPreviewAnomalyDetectorWithDetector() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, true, client());
AnomalyDetectorExecutionInput input = new AnomalyDetectorExecutionInput(
detector.getId(),
Instant.now().minusSeconds(60 * 10),
Instant.now(),
detector
);
Response response = TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null,
false
);
assertEquals("Execute anomaly detector failed", RestStatus.OK, TestHelpers.restStatus(response));
}
public void testPreviewAnomalyDetectorWithDetectorAndNoFeatures() throws Exception {
AnomalyDetector detector = createRandomAnomalyDetector(true, true, client());
AnomalyDetectorExecutionInput input = new AnomalyDetectorExecutionInput(
detector.getId(),
Instant.now().minusSeconds(60 * 10),
Instant.now(),
TestHelpers.randomAnomalyDetectorWithEmptyFeature()
);
TestHelpers
.assertFailWith(
ResponseException.class,
"Can't preview detector without feature",
() -> TestHelpers
.makeRequest(
client(),
"POST",
String.format(Locale.ROOT, TestHelpers.AD_BASE_PREVIEW_URI, input.getDetectorId()),
ImmutableMap.of(),
TestHelpers.toHttpEntity(input),
null
)
);
}
public void testSearchAnomalyResult() throws Exception {
AnomalyResult anomalyResult = TestHelpers.randomAnomalyDetectResult();
Response response = TestHelpers
.makeRequest(
adminClient(),
"POST",
"/.opendistro-anomaly-results/_doc/" + UUIDs.base64UUID(),
ImmutableMap.of(),
TestHelpers.toHttpEntity(anomalyResult),
null,
false
);
assertEquals("Post anomaly result failed", RestStatus.CREATED, TestHelpers.restStatus(response));
SearchSourceBuilder search = (new SearchSourceBuilder()).query(QueryBuilders.termQuery("detector_id", anomalyResult.getConfigId()));
updateClusterSettings(ADEnabledSetting.AD_ENABLED, false);
Exception ex = expectThrows(
ResponseException.class,
() -> TestHelpers
.makeRequest(
client(),
"POST",
TestHelpers.AD_BASE_RESULT_URI + "/_search",
ImmutableMap.of(),
new StringEntity(search.toString(), ContentType.APPLICATION_JSON),
null
)
);
assertThat(ex.getMessage(), containsString(ADCommonMessages.DISABLED_ERR_MSG));