Junit coverage increased
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / common / servicetoken / VNFRestfulUtilTest.java
index cd6c0df..929733e 100644 (file)
@@ -27,7 +27,7 @@ import java.util.Map;
 import org.junit.Test;
 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.servicetoken.VNFRestfulUtil;
 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.testutils.JsonUtil;
-import org.openo.baseservice.roa.util.restclient.RestfulResponse;
+import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient.RestfulResponse;
 
 import mockit.Mock;
 import mockit.MockUp;
@@ -39,7 +39,7 @@ import net.sf.json.JSONObject;
  * </p>
  *
  * @author
- * @version NFVO 0.5 Aug 10, 2016
+ * @version VFC 1.0 Aug 10, 2016
  */
 public class VNFRestfulUtilTest {
 
@@ -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();