Change: add OPEN-O seed code for VF-C
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / openo / nfvo / 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.openo.nfvo.vnfmadapter.common;
18
19 import static org.junit.Assert.*;
20
21 import org.junit.Test;
22 import org.openo.nfvo.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             @Mock
34             public int connect(JSONObject vnfmObj) {
35                 return 500;
36             }
37         };
38         JSONObject vnfmObject = new JSONObject();;
39         String path = "http://localhost:8080";
40         String methodName = "get";
41         String paramsJson = "";
42         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
43         assertTrue(resp.get("data").equals("connect fail."));
44     }
45
46     @Test
47     public void callTestConnectionErrot(){
48         new MockUp<ConnectMgrVnfm>(){
49             @Mock
50             public int connect(JSONObject vnfmObj) {
51                 return 200;
52             }
53         };
54         JSONObject vnfmObject = new JSONObject();
55         vnfmObject.put("url", "/test/123");
56         String path = "http://localhost:8080";
57         String methodName = "get";
58         String paramsJson = "";
59         JSONObject resp = ResultRequestUtil.call(vnfmObject, path, methodName, paramsJson);
60         assertTrue(resp.get("data").equals("get connection error"));
61     }
62
63 }