Fix gvnfm juju compile problem
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / gvnfm / jujuvnfmadapter / service / rest / ConfigRoaTest.java
1 /*
2  * Copyright 2016-2017 Huawei Technologies Co., Ltd.
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.service.rest;
17
18 import static org.junit.Assert.*;
19
20 import javax.servlet.http.HttpServletRequest;
21 import javax.servlet.http.HttpServletResponse;
22
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.openo.baseservice.remoteservice.exception.ServiceException;
29 import org.openo.baseservice.roa.util.restclient.RestfulResponse;
30 import org.springframework.mock.web.MockHttpServletResponse;
31
32 import mockit.Mock;
33 import mockit.MockUp;
34 import net.sf.json.JSONObject;
35
36 public class ConfigRoaTest {
37     ConfigRoa roa;
38
39     @Before
40     public void setUp() {
41         roa = new ConfigRoa();
42     }
43
44     @Test
45     public void initUITest() {
46         HttpServletRequest context = null;
47         HttpServletResponse resp = new MockHttpServletResponse();
48         String res = roa.initUI(context, resp);
49         assertNotNull(res);
50     }
51
52     @Test
53     public void setDebugModelTest() throws ServiceException {
54         HttpServletRequest context = null;
55         HttpServletResponse resp = new MockHttpServletResponse();
56         boolean res = roa.setDebugModel(1, context, resp);
57         assertTrue(res);
58     }
59
60     @Test
61     public void setDebug2ModelTest() throws ServiceException {
62         HttpServletRequest context = null;
63         HttpServletResponse resp = new MockHttpServletResponse();
64         boolean res = roa.setDebugModel(2, context, resp);
65         assertFalse(res);
66     }
67
68     @Test
69     public void testmock() throws ServiceException {
70         HttpServletRequest context = null;
71         HttpServletResponse resp = new MockHttpServletResponse();
72         String methodName = "getVnfmById";
73         JSONObject json = new JSONObject();
74
75         new MockUp<JujuConfigUtil>() {
76             @Mock
77             public String getValue(String key) {
78                 return null;
79             }
80
81         };
82         roa.mock(methodName, context, resp);
83         roa.unmock(methodName, context, resp);
84
85     }
86 }