Organise imports to ONAP Java standards
[aai/search-data-service.git] / src / test / java / org / onap / aai / sa / searchdbabstraction / searchapi / AggregationStatementTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sa.searchdbabstraction.searchapi;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.fail;
25
26 import com.fasterxml.jackson.databind.ObjectMapper;
27 import org.junit.Test;
28
29 public class AggregationStatementTest {
30
31   private static ObjectMapper mapper = new ObjectMapper();
32
33   @Test
34   public void testGroupBy() {
35     String input = "{\r\n    \"group-by\": {\r\n      \"field\": \"entityType\"\r\n    }\r\n  }";
36
37     String expected = "{\"terms\": {\"field\": \"entityType\"}}";
38
39     AggregationStatement actual;
40     try {
41       actual = mapper.readValue(input, AggregationStatement.class);
42       assertEquals(expected, actual.toElasticSearch());
43     } catch (Exception e) {
44       fail("Exception occurred: " + e.getMessage());
45     }
46
47   }
48
49   @Test
50   public void testDateRange() {
51     String input = "{\r\n  \"date-range\": {\r\n    \"field\": \"mydate\",\r\n    \"ranges\": [\r\n      {\r\n        \"from\": \"2016-12-19T00:00:00.738-05:00\",\r\n        \"to\": \"2016-12-23T23:59:59.738-05:00\"\r\n      }\r\n    ],\r\n    \"format\": \"MM-yyy\",\r\n    \"size\": \"5\"\r\n  }\r\n}";
52
53     String expected = "{\"date_range\": {\"field\": \"mydate\", \"format\": \"MM-yyy\", \"ranges\": [{\"from\": \"2016-12-19T00:00:00.738-05:00\", \"to\": \"2016-12-23T23:59:59.738-05:00\"}], \"size\": 5}}";
54
55     AggregationStatement actual;
56     try {
57       actual = mapper.readValue(input, AggregationStatement.class);
58       assertEquals(expected, actual.toElasticSearch());
59     } catch (Exception e) {
60       fail("Exception occurred: " + e.getMessage());
61     }
62
63   }
64
65   @Test
66   public void testDateHistogram() {
67     String input = "{\r\n  \"date-histogram\": {\r\n    \"field\": \"mydate\",\r\n    \"interval\": \"day\"\r\n  }\r\n}";
68
69     String expected = "{\"date_histogram\": {\"field\": \"mydate\", \"interval\": \"day\"}}";
70
71     AggregationStatement actual;
72     try {
73       actual = mapper.readValue(input, AggregationStatement.class);
74       assertEquals(expected, actual.toElasticSearch());
75     } catch (Exception e) {
76       fail("Exception occurred: " + e.getMessage());
77     }
78
79   }
80
81   @Test
82   public void testSubAggregation1() {
83     String input = "{\r\n  \"group-by\": {\r\n    \"field\": \"severity\"\r\n  },\r\n  \"sub-aggregations\": [\r\n    {\r\n      \"name\": \"byType\",\r\n      \"aggregation\": {\r\n        \"group-by\": {\r\n          \"field\": \"entityType\"\r\n        }\r\n      }\r\n    }\r\n  ]\r\n}";
84     String expected = "{\"terms\": {\"field\": \"severity\"}, \"aggs\": {\"byType\": {\"terms\": {\"field\": \"entityType\"}}}}";
85
86     AggregationStatement actual;
87     try {
88       actual = mapper.readValue(input, AggregationStatement.class);
89       assertEquals(expected, actual.toElasticSearch());
90     } catch (Exception e) {
91       fail("Exception occurred: " + e.getMessage());
92     }
93
94   }
95
96   @Test
97   public void testSubAggregation2() {
98     String input = "{\r\n  \"group-by\": {\r\n    \"field\": \"severity\"\r\n  },\r\n  \"sub-aggregations\": [\r\n    {\r\n      \"name\": \"byType\",\r\n      \"aggregation\": {\r\n        \"group-by\": {\r\n          \"field\": \"violationType\"\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"name\": \"byRule\",\r\n      \"aggregation\": {\r\n        \"group-by\": {\r\n          \"field\": \"validationRule\"\r\n        }\r\n      }\r\n    }\r\n  ]\r\n}";
99     String expected = "{\"terms\": {\"field\": \"severity\"}, \"aggs\": {\"byType\": {\"terms\": {\"field\": \"violationType\"}},\"byRule\": {\"terms\": {\"field\": \"validationRule\"}}}}";
100
101     AggregationStatement actual;
102     try {
103       actual = mapper.readValue(input, AggregationStatement.class);
104       assertEquals(expected, actual.toElasticSearch());
105     } catch (Exception e) {
106       fail("Exception occurred: " + e.getMessage());
107     }
108
109   }
110
111
112   @Test
113   public void testNestedAggregation1() {
114     String input = "{\r\n  \"nested\": [{\r\n    \"name\": \"by_severity\",\r\n    \"aggregation\": {\r\n      \"group-by\": {\r\n        \"field\": \"violations.severity\"\r\n      }\r\n    }\r\n  }]\r\n}";
115     String expected = "{\"nested\": {\"path\": \"violations\"}, \"aggs\": {\"by_severity\": {\"terms\": {\"field\": \"violations.severity\"}}}}";
116
117     AggregationStatement actual;
118     try {
119       actual = mapper.readValue(input, AggregationStatement.class);
120       assertEquals(expected, actual.toElasticSearch());
121     } catch (Exception e) {
122       fail("Exception occurred: " + e.getMessage());
123     }
124
125   }
126
127   @Test
128   public void testNestedAggregation2() {
129     String input = "{\r\n  \"nested\": [\r\n    {\r\n      \"name\": \"by_severity\",\r\n      \"aggregation\": {\r\n        \"group-by\": {\r\n          \"field\": \"violations.severity\"\r\n        }\r\n      }\r\n    },\r\n    {\r\n      \"name\": \"by_type\",\r\n      \"aggregation\": {\r\n        \"group-by\": {\r\n          \"field\": \"violations.violationType\"\r\n        }\r\n      }\r\n    }\r\n  ]\r\n}";
130     String expected = "{\"nested\": {\"path\": \"violations\"}, \"aggs\": {\"by_severity\": {\"terms\": {\"field\": \"violations.severity\"}},\"by_type\": {\"terms\": {\"field\": \"violations.violationType\"}}}}";
131
132     AggregationStatement actual;
133     try {
134       actual = mapper.readValue(input, AggregationStatement.class);
135       assertEquals(expected, actual.toElasticSearch());
136     } catch (Exception e) {
137       fail("Exception occurred: " + e.getMessage());
138     }
139
140   }
141
142
143 }