2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  24 package org.onap.appc.adapter.ansible.model;
 
  26 import static org.junit.Assert.assertNotNull;
 
  28 import java.util.HashMap;
 
  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;
 
  38 public class TestAnsibleAdapter {
 
  40     private Class[] parameterTypes;
 
  41     private AnsibleMessageParser ansibleMessageParser;
 
  46     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
 
  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());
 
  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());
 
  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());
 
  72           ansibleMessageParser = new AnsibleMessageParser();
 
  73           parameterTypes = new Class[1];
 
  74           parameterTypes[0] = java.lang.String.class;
 
  76           m = ansibleMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
 
  77           m.setAccessible(true);
 
  78           assertNotNull(m.invoke(ansibleMessageParser,"{\"test\": test}"));