migrate sdnr features to phosphorus
[ccsdk/features.git] / sdnr / wt / common-yang / utils / src / test / java / org / onap / ccsdk / features / sdnr / wt / yang / mapper / TestHashMap.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
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  */
22 package org.onap.ccsdk.features.sdnr.wt.yang.mapper;
23
24 import com.fasterxml.jackson.core.JsonParseException;
25 import com.fasterxml.jackson.core.type.TypeReference;
26 import com.fasterxml.jackson.databind.JsonMappingException;
27 import com.fasterxml.jackson.databind.ObjectMapper;
28 import com.fasterxml.jackson.databind.deser.BeanDeserializerModifier;
29 import com.fasterxml.jackson.databind.module.SimpleModule;
30 import java.io.IOException;
31 import java.util.List;
32 import java.util.Map;
33 import org.junit.Test;
34
35 public class TestHashMap {
36
37     String mapDataString = "[\n"
38             + "    {\n"
39             + "        \"Name\":  \"System Idle Process\",\n"
40             + "        \"CreationDate\":  \"20160409121836.675345+330\"\n"
41             + "    },\n"
42             + "    {\n"
43             + "        \"Name\":  \"System\",\n"
44             + "        \"CreationDate\":  \"20160409121836.675345+330\"\n"
45             + "    },\n"
46             + "    {\n"
47             + "        \"Name\":  \"smss.exe\",\n"
48             + "        \"CreationDate\":  \"20160409121836.684966+330\"\n"
49             + "    }\n"
50             + "]";
51
52
53     @Test
54     public void test() throws JsonParseException, JsonMappingException, IOException {
55         byte[] mapData = mapDataString.getBytes();
56         List<Map<String, Object>> myMap;
57         ObjectMapper objectMapper=new ObjectMapper();
58         objectMapper.registerModule(new YangToolsModule());
59
60
61         myMap = objectMapper.readValue(mapData, new TypeReference<List<Map<String, Object>>>(){});
62         System.out.println("Type1: "+myMap.getClass().getSimpleName());
63         System.out.println("Type2: "+myMap.get(0).getClass().getSimpleName());
64         System.out.println("Map is: "+myMap);    }
65
66     private class YangToolsModule extends SimpleModule {
67
68         private static final long serialVersionUID = 1L;
69
70         public YangToolsModule() {
71             super();
72             setDeserializerModifier(new YangToolsDeserializerModifier());
73         }
74     }
75
76     private class YangToolsDeserializerModifier extends BeanDeserializerModifier {
77     }
78
79
80 }