added test case to RestfulClientTest.java 37/59837/4
authorSandeep J <sandeejh@in.ibm.com>
Thu, 9 Aug 2018 10:36:42 +0000 (16:06 +0530)
committerTian Lee <TianL@amdocs.com>
Wed, 15 Aug 2018 08:53:58 +0000 (08:53 +0000)
to increase code coverage

Issue-ID: AAI-1451
Change-Id: I76a8a3a84b3218b038fda2a240d121481f64a03a
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
src/test/java/org/onap/aai/restclient/client/RestfulClientTest.java

index 1f528ae..e2a728d 100644 (file)
@@ -2,6 +2,7 @@
  * ============LICENSE_START===========================================================================================
  * Copyright (c) 2017 AT&T Intellectual Property.
  * Copyright (c) 2017 Amdocs 
+ * Modification Copyright (c) 2018 IBM. 
  * All rights reserved.
  * =====================================================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
@@ -21,6 +22,7 @@ package org.onap.aai.restclient.client;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
 
 import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
@@ -336,6 +338,13 @@ public class RestfulClientTest {
 
     }
 
+    @Test
+    public void testGetClient() throws Exception {
+        RestClientBuilder restClientBuilder= new RestClientBuilder();
+        restClientBuilder.setAuthenticationMode(RestAuthenticationMode.SSL_BASIC);
+        assertTrue(restClientBuilder.getClient() instanceof Client);
+    }
+
     /**
      * Specify the status code of the response object returned by the mocked client
      * 
@@ -362,5 +371,4 @@ public class RestfulClientTest {
         return new RestClient(mockClientBuilder).authenticationMode(RestAuthenticationMode.SSL_CERT)
                 .connectTimeoutMs(1000).readTimeoutMs(500).clientCertFile("cert").clientCertPassword("password");
     }
-
 }