0dc6751b00f3f618819cfcd5881aff493cdf3c39
[vfc/nfvo/driver/vnfm/svnfm.git] /
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.*;
20
21 import org.junit.Test;
22 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.ResultRequestUtil;
23 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect.ConnectMgrVnfm;
24
25 import mockit.Mock;
26 import mockit.MockUp;
27 import net.sf.json.JSONObject;
28
29 public class ResultRequestUtilTest {
30
31     @Test
32     public void callTestInternalError(){
33         new MockUp<ConnectMgrVnfm>(){
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             @Mock
51             public int connect(JSONObject vnfmObj) {
52                 return 200;
53             }
54         };
55         JSONObject vnfmObject = new JSONObject();
56         vnfmObject.put("url", "/test/123");
57         String path = "http://localhost:8080";
58         String methodName = "get";
59         String paramsJson = "";
60         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
61         assertTrue(resp.get("data").equals("get connection error"));
62     }
63
64 }