Unit Test for ansibleActivator
[appc.git] / appc-adapters / appc-ansible-adapter / appc-ansible-adapter-bundle / src / test / java / org / onap / appc / 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.appc.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
35 public class TestAnsibleAdapter {
36
37     private Class[] parameterTypes;
38     private AnsibleMessageParser ansibleMessageParser;
39     private Method m;
40     private String name;
41
42     @Test
43     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
44
45           /* test constructors */
46           Class<?>[] classesOne = {AnsibleMessageParser.class};
47           for(Class<?> clazz : classesOne) {
48                 Constructor<?> constructor = clazz.getDeclaredConstructor();
49                 name = constructor.getName();
50                 constructor.setAccessible(true);
51                 assertNotNull(constructor.newInstance());
52           }
53           Class<?>[] classesTwo = {AnsibleServerEmulator.class};
54           for(Class<?> clazz : classesTwo) {
55                 Constructor<?> constructor = clazz.getDeclaredConstructor();
56                 name = constructor.getName();
57                 constructor.setAccessible(true);
58                 assertNotNull(constructor.newInstance());
59           }
60           Class<?>[] classesThree = {AnsibleResult.class};
61           for(Class<?> clazz : classesThree) {
62                 Constructor<?> constructor = clazz.getDeclaredConstructor();
63                 name = constructor.getName();
64                 constructor.setAccessible(true);
65                 assertNotNull(constructor.newInstance());
66           }
67
68           /* test methods */
69           ansibleMessageParser = new AnsibleMessageParser();
70           parameterTypes = new Class[1];
71           parameterTypes[0] = java.lang.String.class;
72
73           m = ansibleMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
74           m.setAccessible(true);
75           assertNotNull(m.invoke(ansibleMessageParser,"{\"test\": test}"));
76
77     }
78 }