2 * Copyright 2016 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.
17 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common;
19 import static org.junit.Assert.*;
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;
27 import net.sf.json.JSONObject;
29 public class ResultRequestUtilTest {
32 public void callTestInternalError(){
33 new MockUp<ConnectMgrVnfm>(){
35 public int connect(JSONObject vnfmObj) {
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."));
48 public void callTestConnectionErrot(){
49 new MockUp<ConnectMgrVnfm>(){
51 public int connect(JSONObject vnfmObj) {
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"));