e8a0ad1ecf00d6dc2ca45b47eabd75de483f6e58
[appc.git] / appc-common / src / test / java / org / openecomp / appc / util / TestJsonUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.util;
24
25 import org.junit.Assert;
26 import org.junit.Test;
27 import org.openecomp.appc.util.JsonUtil;
28
29 import java.io.IOException;
30 import java.util.HashMap;
31 import java.util.Map;
32 import java.util.Properties;
33
34 import static org.junit.Assert.*;
35
36
37
38 public class TestJsonUtil {
39
40     @Test
41     public void testConvertJsonStringToFlatMap() {
42         try {
43             String jsonString = "{\"A\":\"A-value\",\"B\":{\"C\":\"B.C-value\",\"D\":\"B.D-value\"}}";
44             Map<String, String> flatMap = JsonUtil.convertJsonStringToFlatMap(jsonString);
45             assertNotNull(flatMap);
46             Map<String, String> expectedMap = new HashMap<>();
47             expectedMap.put("A","A-value");
48             expectedMap.put("B.C","B.C-value");
49             expectedMap.put("B.D","B.D-value");
50             assertEquals(expectedMap,flatMap);
51         } catch (IOException e) {
52             e.printStackTrace();
53             Assert.fail(e.toString());
54         }
55     }
56
57     @Test
58     public void testConvertJsonStringToFlatMapWithInnerJson() {
59         try {
60             String jsonString = "{\"A\":\"A-value\",\"B\":\"{\\\"C\\\":\\\"C-value\\\",\\\"D\\\":\\\"D-value\\\"}\"}";
61             Map<String, String> flatMap = JsonUtil.convertJsonStringToFlatMap(jsonString);
62             assertNotNull(flatMap);
63             Map<String, String> expectedMap = new HashMap<>();
64             expectedMap.put("A","A-value");
65             expectedMap.put("B","{\"C\":\"C-value\",\"D\":\"D-value\"}");
66             assertEquals(expectedMap,flatMap);
67         } catch (IOException e) {
68             e.printStackTrace();
69             Assert.fail(e.toString());
70         }
71     }
72 }