aboutsummaryrefslogtreecommitdiffstats
path: root/template-node/provider/src/test/java/org/onap/ccsdk/sli/plugins/template/HideNullJsonTest.java
blob: 1fb1f676fc8391323d6c1c8e9a579ee835fb1e75 (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
package org.onap.ccsdk.sli.plugins.template;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.HashMap;
import java.util.Map;

import org.junit.Test;
import org.onap.ccsdk.sli.core.sli.SvcLogicContext;

public class HideNullJsonTest {

    @Test
    public void testSampleTemplate() throws Exception {
        TemplateNode t = new MockTemplateNode();

        Map<String, String> params = new HashMap<String, String>();
        params.put(TemplateNode.PREFIX_KEY, "output");
        params.put(TemplateNode.OUTPUT_PATH_KEY, "mycontainer");
        params.put(TemplateNode.TEMPLATE_PATH, "src/test/resources/HideNullJson.vtl");
        
        //Setup sample data to feed into the directive
        params.put("service-type", "\"VPN\""); //the value is quoted to test an override
        params.put("svc-request-id", "REQ001");
        params.put("svc-action", "CREATE");
        params.put("service-instance-id", "SVC001");
        params.put("customerNameTag", "customer-name");
        params.put("customer-name", "TestCust");
        params.put("siidTag", "\"service-instance-id\""); //the value is quoted to test an override

        SvcLogicContext ctx = new SvcLogicContext();
        t.evaluateTemplate(params, ctx);
        String result = ctx.getAttribute("output.mycontainer");
        assertTrue(result.contains("\"svc-request-id\":\"REQ001\","));
        assertTrue(result.contains("\"svc-action\":\"CREATE\""));
        assertFalse(result.contains("\"svc-action\":\"CREATE\",")); // there should be no trailing comma
        assertTrue(result.contains("\"service-type\":\"VPN\","));
        assertTrue(result.contains("\"customer-name\":\"TestCust\","));
        assertTrue(result.contains("\"service-instance-id\":\"SVC001\""));
        assertFalse(result.contains("\"service-instance-id\":\"SVC001\",")); // there should be no trailing comma
        //This should be hidden by the directive because the parameter was never populated
        assertFalse(result.contains("customer-phone-number"));
    }

}