3e93f2c2311f9d60e1f615526aa63a6a1eb4159c
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / common / ResultRequestUtilTest.java
1 /*
2  * Copyright 2016 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
17 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common;
18
19 import static org.junit.Assert.assertTrue;
20
21 import org.junit.Test;
22 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect.ConnectMgrVnfm;
23
24 import mockit.Mock;
25 import mockit.MockUp;
26 import net.sf.json.JSONObject;
27
28 public class ResultRequestUtilTest {
29
30     @Test
31     public void callTestInternalError() {
32         new MockUp<ConnectMgrVnfm>() {
33
34             @Mock
35             public int connect(JSONObject vnfmObj) {
36                 return 500;
37             }
38         };
39         JSONObject vnfmObject = new JSONObject();
40         String path = "http://localhost:8080";
41         String methodName = "get";
42         String paramsJson = "";
43         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
44         assertTrue(resp.get("data").equals("connect fail."));
45     }
46
47     @Test
48     public void callTestConnectionErrot() {
49         new MockUp<ConnectMgrVnfm>() {
50
51             @Mock
52             public int connect(JSONObject vnfmObj) {
53                 return 200;
54             }
55         };
56         JSONObject vnfmObject = new JSONObject();
57         vnfmObject.put("url", "/test/123");
58         String path = "http://localhost:8080";
59         String methodName = "get";
60         String paramsJson = "";
61         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
62         assertTrue(resp.get("data").equals("get connection error"));
63     }
64
65     @Test
66     public void callTest() {
67         new MockUp<ConnectMgrVnfm>() {
68
69             @Mock
70             public int connect(JSONObject vnfmObj) {
71                 return 200;
72             }
73
74             @Mock
75             public String getRoaRand() {
76                 return "1234";
77             }
78
79             @Mock
80             public String getAccessSession() {
81                 return "1234";
82             }
83
84         };
85
86         JSONObject vnfmObject = new JSONObject();
87         vnfmObject.put("url", "/test/123");
88         String path = "https://localhost:8080/%s";
89         String methodName = "get";
90         String paramsJson = "";
91         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
92         assertTrue(resp.get("data").equals("get connection error"));
93     }
94
95 }