3f7ec7b730fa5acb1a00ce0c3e5f8b16ee7cd86c
[aai/search-data-service.git] / src / test / java / org / openecomp / sa / searchdbabstraction / searchapi / DateRangeTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.sa.searchdbabstraction.searchapi;
24
25 import com.fasterxml.jackson.databind.ObjectMapper;
26 import org.junit.Test;
27
28 import static org.junit.Assert.assertEquals;
29 import static org.junit.Assert.fail;
30
31 public class DateRangeTest {
32   private static ObjectMapper mapper = new ObjectMapper();
33
34   @Test
35   public void testBoth() {
36     String input = "{\r\n  \"from\": \"2016-12-19T00:00:00.738-05:00\",\r\n  \"to\": \"2016-12-23T23:59:59.738-05:00\"\r\n}";
37     String expected = "{\"from\": \"2016-12-19T00:00:00.738-05:00\", \"to\": \"2016-12-23T23:59:59.738-05:00\"}";
38
39     DateRange actual;
40     try {
41       actual = mapper.readValue(input, DateRange.class);
42       assertEquals(expected, actual.toElasticSearch());
43     } catch (Exception e) {
44       fail("Exception occurred: " + e.getMessage());
45     }
46   }
47
48   @Test
49   public void testFrom() {
50     String input = "{\"from\": \"2016-12-19T00:00:00.738-05:00\"}";
51     String expected = "{\"from\": \"2016-12-19T00:00:00.738-05:00\"}";
52
53     DateRange actual;
54     try {
55       actual = mapper.readValue(input, DateRange.class);
56       assertEquals(expected, actual.toElasticSearch());
57     } catch (Exception e) {
58       fail("Exception occurred: " + e.getMessage());
59     }
60   }
61
62   @Test
63   public void testTo() {
64     String input = "{\r\n  \"to\": \"2016-12-23T23:59:59.738-05:00\"\r\n}";
65     String expected = "{\"to\": \"2016-12-23T23:59:59.738-05:00\"}";
66
67     DateRange actual;
68     try {
69       actual = mapper.readValue(input, DateRange.class);
70       assertEquals(expected, actual.toElasticSearch());
71     } catch (Exception e) {
72       fail("Exception occurred: " + e.getMessage());
73     }
74   }
75
76 }