summaryrefslogtreecommitdiffstats
path: root/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java')
-rw-r--r--huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java66
1 files changed, 33 insertions, 33 deletions
diff --git a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java
index 2bdbc11d..929733e9 100644
--- a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java
+++ b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/common/servicetoken/VNFRestfulUtilTest.java
@@ -83,17 +83,17 @@ public class VNFRestfulUtilTest {
}
@Test
public void sendReqToAppTest(){
- new MockUp<VNFRestfulUtil>(){
- @Mock
- public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
- RestfulResponse resp = new RestfulResponse();
- resp.setStatus(200);
- Map<String,Object> map = new HashMap<>();
- map.put("retCode", 1);
- resp.setResponseJson(toJson(map));
- return resp;
- }
- };
+// new MockUp<VNFRestfulUtil>(){
+// @Mock
+// public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
+// RestfulResponse resp = new RestfulResponse();
+// resp.setStatus(200);
+// Map<String,Object> map = new HashMap<>();
+// map.put("retCode", 1);
+// resp.setResponseJson(toJson(map));
+// return resp;
+// }
+// };
String path="http://localhost:8080/vnfdmgr/v1";
String methodNames = "get";
JSONObject bodyParam = new JSONObject();
@@ -104,17 +104,17 @@ public class VNFRestfulUtilTest {
@Test
public void sendReqToAppTest2(){
- new MockUp<VNFRestfulUtil>(){
- @Mock
- public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
- RestfulResponse resp = new RestfulResponse();
- resp.setStatus(200);
- Map<String,Object> map = new HashMap<>();
- map.put("retCode", -1);
- resp.setResponseJson(toJson(map));
- return resp;
- }
- };
+// new MockUp<VNFRestfulUtil>(){
+// @Mock
+// public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
+// RestfulResponse resp = new RestfulResponse();
+// resp.setStatus(200);
+// Map<String,Object> map = new HashMap<>();
+// map.put("retCode", -1);
+// resp.setResponseJson(toJson(map));
+// return resp;
+// }
+// };
String path="http://localhost:8080/vnfdmgr/v1";
String methodNames = "get";
JSONObject bodyParam = new JSONObject();
@@ -124,17 +124,17 @@ public class VNFRestfulUtilTest {
}
@Test
public void sendReqToAppTest3(){
- new MockUp<VNFRestfulUtil>(){
- @Mock
- public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
- RestfulResponse resp = new RestfulResponse();
- resp.setStatus(500);
- Map<String,Object> map = new HashMap<>();
- map.put("retCode", -1);
- resp.setResponseJson(toJson(map));
- return resp;
- }
- };
+// new MockUp<VNFRestfulUtil>(){
+// @Mock
+// public RestfulResponse getRestResByDefault(String path, String methodNames, JSONObject bodyParam) {
+// RestfulResponse resp = new RestfulResponse();
+// resp.setStatus(500);
+// Map<String,Object> map = new HashMap<>();
+// map.put("retCode", -1);
+// resp.setResponseJson(toJson(map));
+// return resp;
+// }
+// };
String path="http://localhost:8080/vnfdmgr/v1";
String methodNames = "get";
JSONObject bodyParam = new JSONObject();