X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Frestclient%2Fclient%2FRestfulClientTest.java;fp=src%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Frestclient%2Fclient%2FRestfulClientTest.java;h=e2a728db0edb05c37115c8c296fb245aaa8b8d37;hb=81fe18321578aeb0c66d339802ab7b1472ebdb63;hp=1f528ae8c1c9287d8ab8435c2c32b06e7e264020;hpb=6d1ca7d232210e9477a6c6040317738eb63dd809;p=aai%2Frest-client.git diff --git a/src/test/java/org/onap/aai/restclient/client/RestfulClientTest.java b/src/test/java/org/onap/aai/restclient/client/RestfulClientTest.java index 1f528ae..e2a728d 100644 --- a/src/test/java/org/onap/aai/restclient/client/RestfulClientTest.java +++ b/src/test/java/org/onap/aai/restclient/client/RestfulClientTest.java @@ -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"); } - }