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