4d60e586394d2a386ae3679c674a3c798e09627d
[aai/search-data-service.git] / src / test / java / org / onap / aai / sa / searchdbabstraction / searchapi / DateHistogramAggregationTest.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 com.fasterxml.jackson.databind.ObjectMapper;
24 import org.junit.Test;
25 import org.onap.aai.sa.searchdbabstraction.searchapi.DateHistogramAggregation;
26
27 import static org.junit.Assert.assertEquals;
28 import static org.junit.Assert.fail;
29
30 public class DateHistogramAggregationTest {
31   ObjectMapper mapper = new ObjectMapper();
32
33   @Test
34   public void testFullSet() {
35     String input =
36         "{\r\n  \"field\": \"mydate\",\r\n  \"interval\": \"day\",\r\n  \"time-zone\": \"-01:00\"\r\n}";
37
38     String expected =
39         "\"date_histogram\": {\"field\": \"mydate\", \"interval\": \"day\", \"time_zone\": \"-01:00\"}";
40
41     DateHistogramAggregation actual;
42     try {
43       actual = mapper.readValue(input, DateHistogramAggregation.class);
44       assertEquals(expected, actual.toElasticSearch());
45     } catch (Exception e) {
46       fail("Exception occurred: " + e.getMessage());
47     }
48   }
49
50   @Test
51   public void test2() {
52     String input =
53         "{\r\n  \"field\": \"mydate\",\r\n  \"interval\": \"day\"\r\n}";
54
55     String expected =
56         "\"date_histogram\": {\"field\": \"mydate\", \"interval\": \"day\"}";
57
58     DateHistogramAggregation actual;
59     try {
60       actual = mapper.readValue(input, DateHistogramAggregation.class);
61       assertEquals(expected, actual.toElasticSearch());
62     } catch (Exception e) {
63       fail("Exception occurred: " + e.getMessage());
64     }
65   }
66
67   @Test
68   public void test3() {
69     String input =
70         "{\r\n  \"field\": \"mydate\"\r\n}";
71
72     String expected =
73         "\"date_histogram\": {\"field\": \"mydate\"}";
74
75     DateHistogramAggregation actual;
76     try {
77       actual = mapper.readValue(input, DateHistogramAggregation.class);
78       assertEquals(expected, actual.toElasticSearch());
79     } catch (Exception e) {
80       fail("Exception occurred: " + e.getMessage());
81     }
82   }
83
84 }