Test cases added for saltstack API
[ccsdk/sli/adaptors.git] / saltstack-adapter / saltstack-adapter-provider / src / test / java / org / onap / appc / adapter / model / TestSaltstackAdapter.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 package org.onap.appc.adapter.model;
25
26 import org.junit.Test;
27 import org.onap.ccsdk.sli.adaptors.saltstack.model.SaltstackMessageParser;
28 import org.onap.ccsdk.sli.adaptors.saltstack.model.SaltstackResult;
29 import org.onap.ccsdk.sli.adaptors.saltstack.model.SaltstackServerEmulator;
30
31 import java.lang.reflect.Constructor;
32 import java.lang.reflect.InvocationTargetException;
33 import java.lang.reflect.Method;
34
35 import static org.junit.Assert.assertNotNull;
36
37 public class TestSaltstackAdapter {
38
39     private Class[] parameterTypes;
40     private SaltstackMessageParser saltstackMessageParser;
41     private Method m;
42     private String name;
43
44     @Test
45     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
46
47           /* test constructors */
48           Class<?>[] classesOne = {SaltstackMessageParser.class};
49           for(Class<?> clazz : classesOne) {
50                 Constructor<?> constructor = clazz.getDeclaredConstructor();
51                 name = constructor.getName();
52                 constructor.setAccessible(true);
53                 assertNotNull(constructor.newInstance());
54           }
55           Class<?>[] classesTwo = {SaltstackServerEmulator.class};
56           for(Class<?> clazz : classesTwo) {
57                 Constructor<?> constructor = clazz.getDeclaredConstructor();
58                 name = constructor.getName();
59                 constructor.setAccessible(true);
60                 assertNotNull(constructor.newInstance());
61           }
62           Class<?>[] classesThree = {SaltstackResult.class};
63           for(Class<?> clazz : classesThree) {
64                 Constructor<?> constructor = clazz.getDeclaredConstructor();
65                 name = constructor.getName();
66                 constructor.setAccessible(true);
67                 assertNotNull(constructor.newInstance());
68           }
69
70           /* test methods */
71           saltstackMessageParser = new SaltstackMessageParser();
72           parameterTypes = new Class[1];
73           parameterTypes[0] = String.class;
74
75           m = saltstackMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
76           m.setAccessible(true);
77           assertNotNull(m.invoke(saltstackMessageParser,"{\"test\": test}"));
78
79     }
80 }