aboutsummaryrefslogtreecommitdiffstats
path: root/sli/provider/src/test/java/org/onap/ccsdk/sli/core/sli/provider/MdsalHelperTest.java
blob: 5ba0eb9686db44904131e81cbdbeb61c3e8aebd7 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*-
 * ============LICENSE_START=======================================================
 * ONAP : CCSDK
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights
 * 						reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.ccsdk.sli.core.sli.provider;

import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;

import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.ExecuteGraphInput.Mode;
import org.onap.ccsdk.sli.core.sli.SvcLogicGraph;
import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.ExecuteGraphInputBuilder;
import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.execute.graph.input.SliParameter;
import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.execute.graph.input.SliParameterBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import junit.framework.TestCase;


public class MdsalHelperTest extends TestCase {
	private static final Logger LOG = LoggerFactory
			.getLogger(MdsalHelperTest.class);
    public static final String pathToSdnPropertiesFile = "./src/test/resources/l3sdn.properties";

    public void testSdnProperties() {
        MdsalHelperTesterUtil.loadProperties(pathToSdnPropertiesFile);
        assertEquals("synccomplete", MdsalHelperTesterUtil.mapEnumeratedValue("request-status", "synccomplete"));
        assertEquals("asynccomplete", MdsalHelperTesterUtil.mapEnumeratedValue("request-status", "asynccomplete"));
        assertEquals("notifycomplete", MdsalHelperTesterUtil.mapEnumeratedValue("request-status", "notifycomplete"));
        assertEquals("service-configuration-operation", MdsalHelperTesterUtil.mapEnumeratedValue("rpc-name",
                "service-configuration-operation"));
    }

    public void testNegativeSdnProperties() {
        assertNotSame("synccomplete", MdsalHelperTesterUtil.mapEnumeratedValue("request-status", "Synccomplete"));
    }

    public void testToProperties() {

    		ExecuteGraphInputBuilder execBuilder = new ExecuteGraphInputBuilder();
    		SliParameterBuilder parmBuilder = new SliParameterBuilder();
    		List<SliParameter> params = new LinkedList<SliParameter>();

    		parmBuilder.setParameterName("boolean-parm");
    		parmBuilder.setBooleanValue(Boolean.TRUE);
    		params.add(parmBuilder.build());

    		parmBuilder.setParameterName("int-parm");
    		parmBuilder.setIntValue(1);
    		params.add(parmBuilder.build());

    		parmBuilder.setParameterName("str-parm");
    		parmBuilder.setStringValue("hello");
    		params.add(parmBuilder.build());


    		execBuilder.setMode(Mode.Sync);
    		execBuilder.setModuleName("my-module");
    		execBuilder.setRpcName("do-it-now");
    		execBuilder.setSliParameter(params);


    		Properties props = new Properties();

    		MdsalHelperTesterUtil.toProperties(props, execBuilder);

    		LOG.info("Converted to properties");
    		for (Map.Entry<Object, Object> e : props.entrySet()) {
    			LOG.info(e.getKey().toString() + " = "+e.getValue().toString());

    		}


    }

    public void testToBuilder() {

    	Properties props = new Properties();

    	props.setProperty("execute-graph-input.mode", "Sync");
    	props.setProperty("execute-graph-input.module", "my-module");
    	props.setProperty("execute-graph-input.rpc", "do-it-now");
    	props.setProperty("execute-graph-input.sli-parameter[0].parameter-name", "bool-parm");
    	props.setProperty("execute-graph-input.sli-parameter[0].boolean-value", "true");
    	props.setProperty("execute-graph-input,sli-parameter[1].parameter-name", "int-param");
    	props.setProperty("execute-graph-input.sli-parameter[1].int-value", "1");
    	props.setProperty("execute-graph-input.sli-parameter[2].parameter-name", "str-param");
    	props.setProperty("execute-graph-input.sli-parameter[2].str-value",  "hello");

    	ExecuteGraphInputBuilder execBuilder = new ExecuteGraphInputBuilder();

    	MdsalHelperTesterUtil.toBuilder(props, execBuilder);



    }
}