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.model;
 
  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;
 
  31 import java.lang.reflect.Constructor;
 
  32 import java.lang.reflect.InvocationTargetException;
 
  33 import java.lang.reflect.Method;
 
  35 import static org.junit.Assert.assertNotNull;
 
  37 public class TestSaltstackAdapter {
 
  39     private Class[] parameterTypes;
 
  40     private SaltstackMessageParser saltstackMessageParser;
 
  45     public void callPrivateConstructorsMethodsForCodeCoverage() throws SecurityException, NoSuchMethodException, IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
 
  47           /* test constructors */
 
  48           Class<?>[] classesOne = {SaltstackMessageParser.class};
 
  49           for(Class<?> clazz : classesOne) {
 
  50                 Constructor<?> constructor = clazz.getDeclaredConstructor();
 
  51                 name = constructor.getName();
 
  52                 constructor.setAccessible(true);
 
  53                 assertNotNull(constructor.newInstance());
 
  55           Class<?>[] classesTwo = {SaltstackServerEmulator.class};
 
  56           for(Class<?> clazz : classesTwo) {
 
  57                 Constructor<?> constructor = clazz.getDeclaredConstructor();
 
  58                 name = constructor.getName();
 
  59                 constructor.setAccessible(true);
 
  60                 assertNotNull(constructor.newInstance());
 
  62           Class<?>[] classesThree = {SaltstackResult.class};
 
  63           for(Class<?> clazz : classesThree) {
 
  64                 Constructor<?> constructor = clazz.getDeclaredConstructor();
 
  65                 name = constructor.getName();
 
  66                 constructor.setAccessible(true);
 
  67                 assertNotNull(constructor.newInstance());
 
  71           saltstackMessageParser = new SaltstackMessageParser();
 
  72           parameterTypes = new Class[1];
 
  73           parameterTypes[0] = String.class;
 
  75           m = saltstackMessageParser.getClass().getDeclaredMethod("getFilePayload", parameterTypes);
 
  76           m.setAccessible(true);
 
  77           assertNotNull(m.invoke(saltstackMessageParser,"{\"test\": test}"));