First part of onap rename
[appc.git] / appc-common / src / test / java / org / openecomp / appc / util / TestJsonUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.util;
26
27 import org.junit.Assert;
28 import org.junit.Test;
29 import org.onap.appc.util.JsonUtil;
30
31 import java.io.IOException;
32 import java.util.HashMap;
33 import java.util.Map;
34 import java.util.Properties;
35
36 import static org.junit.Assert.*;
37
38
39
40 public class TestJsonUtil {
41
42     @Test
43     public void testConvertJsonStringToFlatMap() {
44         try {
45             String jsonString = "{\"A\":\"A-value\",\"B\":{\"C\":\"B.C-value\",\"D\":\"B.D-value\"}}";
46             Map<String, String> flatMap = JsonUtil.convertJsonStringToFlatMap(jsonString);
47             assertNotNull(flatMap);
48             Map<String, String> expectedMap = new HashMap<>();
49             expectedMap.put("A","A-value");
50             expectedMap.put("B.C","B.C-value");
51             expectedMap.put("B.D","B.D-value");
52             assertEquals(expectedMap,flatMap);
53         } catch (IOException e) {
54             e.printStackTrace();
55             Assert.fail(e.toString());
56         }
57     }
58
59     @Test
60     public void testConvertJsonStringToFlatMapWithInnerJson() {
61         try {
62             String jsonString = "{\"A\":\"A-value\",\"B\":\"{\\\"C\\\":\\\"C-value\\\",\\\"D\\\":\\\"D-value\\\"}\"}";
63             Map<String, String> flatMap = JsonUtil.convertJsonStringToFlatMap(jsonString);
64             assertNotNull(flatMap);
65             Map<String, String> expectedMap = new HashMap<>();
66             expectedMap.put("A","A-value");
67             expectedMap.put("B","{\"C\":\"C-value\",\"D\":\"D-value\"}");
68             assertEquals(expectedMap,flatMap);
69         } catch (IOException e) {
70             e.printStackTrace();
71             Assert.fail(e.toString());
72         }
73     }
74 }