2  * Copyright 2016-2017 Huawei Technologies Co., Ltd.
 
   4  * Licensed under the Apache License, Version 2.0 (the "License");
 
   5  * you may not use this file except in compliance with the License.
 
   6  * You may obtain a copy of the License at
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  10  * Unless required by applicable law or agreed to in writing, software
 
  11  * distributed under the License is distributed on an "AS IS" BASIS,
 
  12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  13  * See the License for the specific language governing permissions and
 
  14  * limitations under the License.
 
  16 package org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.service.rest;
 
  18 import static org.junit.Assert.*;
 
  20 import javax.servlet.http.HttpServletRequest;
 
  21 import javax.servlet.http.HttpServletResponse;
 
  23 import org.junit.Before;
 
  24 import org.junit.Test;
 
  25 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.JujuConfigUtil;
 
  26 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.servicetoken.VnfmRestfulUtil;
 
  27 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.service.rest.ConfigRoa;
 
  28 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.restclient.ServiceException;
 
  29 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.restclient.RestfulResponse;
 
  30 import org.springframework.mock.web.MockHttpServletResponse;
 
  34 import net.sf.json.JSONObject;
 
  36 public class ConfigRoaTest {
 
  41         roa = new ConfigRoa();
 
  45     public void initUITest() {
 
  46         HttpServletRequest context = null;
 
  47         HttpServletResponse resp = new MockHttpServletResponse();
 
  48         String res = roa.initUI(context, resp);
 
  53     public void setDebugModelTest() throws ServiceException {
 
  54         HttpServletRequest context = null;
 
  55         HttpServletResponse resp = new MockHttpServletResponse();
 
  56         boolean res = roa.setDebugModel(1, context, resp);
 
  61     public void setDebug2ModelTest() throws ServiceException {
 
  62         HttpServletRequest context = null;
 
  63         HttpServletResponse resp = new MockHttpServletResponse();
 
  64         boolean res = roa.setDebugModel(2, context, resp);
 
  69     public void testmock() throws ServiceException {
 
  70         HttpServletRequest context = null;
 
  71         HttpServletResponse resp = new MockHttpServletResponse();
 
  72         String methodName = "getVnfmById";
 
  73         JSONObject json = new JSONObject();
 
  75         new MockUp<JujuConfigUtil>() {
 
  77             public String getValue(String key) {
 
  82         roa.mock(methodName, context, resp);
 
  83         roa.unmock(methodName, context, resp);