increase coverage for restAdaptor HTTP_GET 53/63753/3
authorGanesh Chandrasekaran <ganesh.c@samsung.com>
Thu, 30 Aug 2018 08:59:06 +0000 (17:59 +0900)
committerTakamune Cho <tc012c@att.com>
Wed, 5 Sep 2018 18:59:43 +0000 (18:59 +0000)
Issue-ID: APPC-1181

Change-Id: Iac9a6be49bc3e4ed2461a337e9b892b821a8d518
Signed-off-by: Ganesh Chandrasekaran <ganesh.c@samsung.com>
appc-adapters/appc-rest-adapter/appc-rest-adapter-bundle/src/test/java/org/onap/appc/adapter/rest/impl/TestRestAdapterImpl.java

index 387b6a5..6ddfe88 100644 (file)
@@ -80,6 +80,39 @@ public class TestRestAdapterImpl {
         assertEquals("GET", httpGet.getMethod());
         assertEquals("http://example.com:8080/about/health", httpGet.getURI().toURL().toString());
     }
+
+    @Test
+    public void testCreateRequestNoParamGet() throws IOException, IllegalStateException, IllegalArgumentException,
+            ZoneException, APPCException {
+
+        SvcLogicContext ctx = new SvcLogicContext();
+        Map<String, String> params = new HashMap<>();
+
+        adapter.commonGet(params, ctx);
+
+        assertEquals("failure", ctx.getStatus());
+        assertEquals("500", ctx.getAttribute("org.openecomp.rest.result.code"));
+        assertEquals("java.lang.IllegalArgumentException: HTTP request may not be null",
+                     ctx.getAttribute("org.openecomp.rest.result.message"));
+    }
+
+    @Test
+    public void testCreateRequestInvalidParamGet() throws IOException, IllegalStateException, IllegalArgumentException,
+            ZoneException, APPCException {
+
+        SvcLogicContext ctx = new SvcLogicContext();
+        Map<String, String> params = new HashMap<>();
+        params.put("org.onap.appc.instance.URI", "boo");
+        params.put("org.onap.appc.instance.haveHeader","false");
+        params.put("org.onap.appc.instance.requestBody", "{\"name\":\"MyNode2\", \"width\":300, \"height\":300}");
+
+        adapter.commonGet(params, ctx);
+
+        assertEquals("failure", ctx.getStatus());
+        assertEquals("500", ctx.getAttribute("org.openecomp.rest.result.code"));
+        assertEquals("org.apache.http.client.ClientProtocolException",
+                     ctx.getAttribute("org.openecomp.rest.result.message"));
+    }
     
     @Test
     public void testCreateHttpRequestPost() throws IOException, IllegalStateException, IllegalArgumentException,