summaryrefslogtreecommitdiffstats
path: root/blueprints-processor/plugin/model-provider/src/test/java/org/onap/ccsdk/config/model/utils/TransformationUtilsTest.java
blob: ca57e5fabb29948239d4578543c593d5a079e6a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * Copyright © 2017-2018 AT&T Intellectual Property.
 * Modifications Copyright © 2018 IBM.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.ccsdk.config.model.utils;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.HashMap;
import java.util.Map;
import org.junit.Test;
import com.fasterxml.jackson.databind.JsonNode;

public class TransformationUtilsTest {

    @Test
    public void testGetJson() {
        Map<String, Object> configparameters = new HashMap<String, Object>();
        configparameters.put("key", "value");
        String json = TransformationUtils.getJson(configparameters);
        assertTrue("{\"key\":\"value\"}".equals(json));
    }

    @Test
    public void testGetJsonNodeForString() {
        String content = "{\"key\":\"value\"}";
        JsonNode jsonNodeForString = TransformationUtils.getJsonNodeForString(content);
        assertNotNull(jsonNodeForString);
    }

    @Test
    public void testGetMapfromJson() {
        String content = "{\"key\":\"value\"}";
        Map<String, Object> mapfromJson = TransformationUtils.getMapfromJson(content);
        assertTrue(mapfromJson.size() == 1);
        assertTrue("value".equals(mapfromJson.get("key")));
    }

    @Test
    public void testGetMapfromJsonString() {
        String content = "{\"key\":\"value\"}";
        Map<String, Object> mapfromJson = TransformationUtils.getMapfromJsonString(content);
        assertTrue(mapfromJson.size() == 1);
        assertTrue("value".equals(mapfromJson.get("key")));
    }

    @Test
    public void testConvertJson2RootProperties() throws Exception {
        Map<String, String> context = new HashMap<String, String>();
        String jsonContent = "{\"key\":\"value\"}";
        Map<String, String> convertJson2RootProperties =
                TransformationUtils.convertJson2RootProperties(context, jsonContent);
        assertTrue(convertJson2RootProperties.size() == 1);
        assertTrue("value".equals(convertJson2RootProperties.get("key")));
    }

    @SuppressWarnings("unchecked")
    @Test
    public void testGetJsonNodeAndTreeToValueAndConvertJson2Properties() throws Exception {
        Map<String, String> configparameters = new HashMap<String, String>();
        configparameters.put("key", "value");
        JsonNode jsonNode = TransformationUtils.getJsonNode(configparameters);
        assertNotNull(jsonNode);

        Map<String, String> result = TransformationUtils.treeToValue(jsonNode, HashMap.class);
        assertTrue("value".equals(result.get("key")));

        result = TransformationUtils.convertJson2Properties(null, jsonNode, null);
        assertTrue("value".equals(result.get("key")));
    }

    @Test
    public void testGetJsonSchema() {
        String jsonSchema = TransformationUtils.getJsonSchema(String.class);
        assertNotNull(jsonSchema);
    }
}