570cf6a0b9d2a24b3ecb0ac5ccb92a88ce7458da
[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-2018 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  * ============LICENSE_END=========================================================
22  */
23 package org.onap.appc.adapter.ansible.model;
24
25 import static org.junit.Assert.assertNotNull;
26 import java.lang.reflect.*;
27 import org.junit.Test;
28
29 public class TestAnsibleAdapter {
30
31     private Class[] parameterTypes;
32     private AnsibleMessageParser ansibleMessageParser;
33     private Method m;
34     private String name;
35
36     @Test
37     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
38
39           /* test constructors */
40           Class<?>[] classesOne = {AnsibleMessageParser.class};
41           for(Class<?> clazz : classesOne) {
42                 Constructor<?> constructor = clazz.getDeclaredConstructor();
43                 name = constructor.getName();
44                 constructor.setAccessible(true);
45                 assertNotNull(constructor.newInstance());
46           }
47           Class<?>[] classesTwo = {AnsibleServerEmulator.class};
48           for(Class<?> clazz : classesTwo) {
49                 Constructor<?> constructor = clazz.getDeclaredConstructor();
50                 name = constructor.getName();
51                 constructor.setAccessible(true);
52                 assertNotNull(constructor.newInstance());
53           }
54           Class<?>[] classesThree = {AnsibleResult.class};
55           for(Class<?> clazz : classesThree) {
56                 Constructor<?> constructor = clazz.getDeclaredConstructor();
57                 name = constructor.getName();
58                 constructor.setAccessible(true);
59                 assertNotNull(constructor.newInstance());
60           }
61
62           /* test methods */
63           ansibleMessageParser = new AnsibleMessageParser();
64           parameterTypes = new Class[1];
65           parameterTypes[0] = java.lang.String.class;
66
67           m = ansibleMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
68           m.setAccessible(true);
69           assertNotNull(m.invoke(ansibleMessageParser,"{\"test\": test}"));
70
71     }
72 }