Merge "Fix sonar issue in AAIClientRESTExecutor"
[ccsdk/sli/adaptors.git] / saltstack-adapter / saltstack-adapter-provider / src / test / java / org / onap / ccsdk / 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.ccsdk.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
43     @Test
44     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
45
46           /* test constructors */
47           Class<?>[] classesOne = {SaltstackMessageParser.class};
48           for(Class<?> clazz : classesOne) {
49                 Constructor<?> constructor = clazz.getDeclaredConstructor();
50                 constructor.setAccessible(true);
51                 assertNotNull(constructor.newInstance());
52           }
53           Class<?>[] classesTwo = {SaltstackServerEmulator.class};
54           for(Class<?> clazz : classesTwo) {
55                 Constructor<?> constructor = clazz.getDeclaredConstructor();
56                 constructor.setAccessible(true);
57                 assertNotNull(constructor.newInstance());
58           }
59           Class<?>[] classesThree = {SaltstackResult.class};
60           for(Class<?> clazz : classesThree) {
61                 Constructor<?> constructor = clazz.getDeclaredConstructor();
62                 constructor.setAccessible(true);
63                 assertNotNull(constructor.newInstance());
64           }
65
66           /* test methods */
67           saltstackMessageParser = new SaltstackMessageParser();
68           parameterTypes = new Class[1];
69           parameterTypes[0] = String.class;
70
71           m = saltstackMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
72           m.setAccessible(true);
73           assertNotNull(m.invoke(saltstackMessageParser,"{\"test\": test}"));
74
75     }
76 }