diff options
Diffstat (limited to 'netbox-client/provider/src/test/java/org')
2 files changed, 0 insertions, 402 deletions
diff --git a/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxClientImplTest.java b/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxClientImplTest.java deleted file mode 100644 index 624a1906e..000000000 --- a/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxClientImplTest.java +++ /dev/null @@ -1,313 +0,0 @@ -/* - * Copyright (C) 2018 Bell Canada. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.onap.ccsdk.sli.adaptors.netbox.impl; - -import static com.github.tomakehurst.wiremock.client.WireMock.created; -import static com.github.tomakehurst.wiremock.client.WireMock.delete; -import static com.github.tomakehurst.wiremock.client.WireMock.deleteRequestedFor; -import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; -import static com.github.tomakehurst.wiremock.client.WireMock.givenThat; -import static com.github.tomakehurst.wiremock.client.WireMock.post; -import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; -import static com.github.tomakehurst.wiremock.client.WireMock.serverError; -import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; -import static com.github.tomakehurst.wiremock.client.WireMock.verify; -import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; -import static org.apache.http.HttpHeaders.ACCEPT; -import static org.apache.http.HttpHeaders.AUTHORIZATION; -import static org.apache.http.HttpHeaders.CONTENT_TYPE; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.ArgumentMatchers.eq; -import static org.mockito.Mockito.doReturn; -import static org.mockito.Mockito.doThrow; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.times; - -import ch.qos.logback.classic.spi.ILoggingEvent; -import ch.qos.logback.core.Appender; -import com.github.tomakehurst.wiremock.junit.WireMockRule; -import com.google.common.base.Charsets; -import com.google.common.collect.ImmutableMap; -import com.google.common.io.Resources; -import java.io.IOException; -import java.net.URL; -import java.sql.SQLException; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.UUID; -import javax.sql.rowset.CachedRowSet; -import org.junit.After; -import org.junit.Assert; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.ArgumentCaptor; -import org.mockito.Captor; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.runners.MockitoJUnitRunner; -import org.onap.ccsdk.sli.core.dblib.DbLibService; -import org.onap.ccsdk.sli.core.sli.SvcLogicContext; -import org.onap.ccsdk.sli.core.sli.SvcLogicResource.QueryStatus; -import org.slf4j.LoggerFactory; - -@RunWith(MockitoJUnitRunner.class) -public class NetboxClientImplTest { - - private static final String APPLICATION_JSON = "application/json"; - - @Rule - public WireMockRule wm = new WireMockRule(wireMockConfig().dynamicPort()); - @Mock - private DbLibService dbLib; - @Mock - private SvcLogicContext svcLogicContext; - @Mock - private Appender<ILoggingEvent> appender; - @Captor - private ArgumentCaptor<ILoggingEvent> captor; - - - private String token = "token"; - private String serviceInstanceId = UUID.randomUUID().toString(); - private String vfModuleId = UUID.randomUUID().toString(); - - private Map<String, String> params = ImmutableMap - .of("service_instance_id", serviceInstanceId, - "vf_module_id", vfModuleId, - "prefix_id", "3", - "external_key", "3", - "resource_name", "3" - ); - - private NetboxHttpClient httpClient; - private NetboxClientImpl netboxClient; - - @Mock - private NetboxHttpClient httpClientMock; - @Mock - private NetboxClientImpl netboxClientMock; - - - @Before - public void setup() { - ch.qos.logback.classic.Logger logger = (ch.qos.logback.classic.Logger) LoggerFactory - .getLogger(NetboxClientImpl.class); - logger.addAppender(appender); - - String baseUrl = "http://localhost:" + wm.port(); - - httpClient = new NetboxHttpClient(baseUrl, token); - - netboxClient = new NetboxClientImpl(httpClient, dbLib); - - netboxClientMock = new NetboxClientImpl(httpClientMock, dbLib); - - wm.addMockServiceRequestListener( - (request, response) -> { - System.out.println("Request URL :" + request.getAbsoluteUrl()); - System.out.println("Request body :" + request.getBodyAsString()); - System.out.println("Response status :" + response.getStatus()); - System.out.println("Response body :" + response.getBodyAsString()); - }); - } - - @After - public void tearDown() throws IOException { - httpClient.close(); - } - - @Test - public void unassignIpAddressTestNoParams() { - QueryStatus status = netboxClient.unassignIpAddress(ImmutableMap.of(), svcLogicContext); - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry( - "This method requires the parameters [service_instance_id,external_key], but no parameters were passed in."); - } - - @Test - public void unassignIpAddressFailedRequest() throws IOException, SQLException { - doThrow(new IOException("Failed request")).when(httpClientMock).delete(anyString()); - - CachedRowSet crs = mock(CachedRowSet.class); - doReturn("3").when(crs).getString(eq("ip_address_id")); - doReturn(true).when(crs).next(); - doReturn(crs).when(dbLib).getData(anyString(), any(ArrayList.class), eq(null)); - - QueryStatus status = netboxClientMock - .unassignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Fail to unassign IP for IPAddress(id= 3). Failed request"); - } - - @Test - public void unassignIpAddressServerError() throws SQLException { - - String expectedUrl = "/api/ipam/ip-addresses/3/"; - givenThat(delete(urlEqualTo(expectedUrl)).willReturn(serverError())); - - CachedRowSet crs = mock(CachedRowSet.class); - doReturn("3").when(crs).getString(eq("ip_address_id")); - doReturn(true).when(crs).next(); - doReturn(crs).when(dbLib).getData(anyString(), any(ArrayList.class), eq(null)); - - QueryStatus status = netboxClient.unassignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Fail to unassign IP for IPAddress(id=3). HTTP code=500."); - } - - @Test - public void unassignIpAddressFailSQL() throws IOException, SQLException { - - String response = "{}"; - - String expectedUrl = "/api/ipam/ip-addresses/3/"; - givenThat(delete(urlEqualTo(expectedUrl)).willReturn(created().withBody(response))); - - CachedRowSet crs = mock(CachedRowSet.class); - doReturn(true).when(crs).next(); - doReturn("3").when(crs).getString(eq("ip_address_id")); - doReturn(crs).when(dbLib).getData(anyString(), any(ArrayList.class), eq(null)); - - doThrow(new SQLException("Failed")).when(dbLib).writeData(anyString(), any(ArrayList.class), eq(null)); - - QueryStatus status = netboxClient.unassignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Caught SQL exception"); - } - - @Test - public void unassignIpAddressSuccess() throws IOException, SQLException { - String response = "{}"; - - String expectedUrl = "/api/ipam/ip-addresses/3/"; - givenThat(delete(urlEqualTo(expectedUrl)).willReturn(created().withBody(response))); - - CachedRowSet crs = mock(CachedRowSet.class); - doReturn("3").when(crs).getString(eq("ip_address_id")); - doReturn(true).when(crs).next(); - doReturn(crs).when(dbLib).getData(anyString(), any(ArrayList.class), eq(null)); - - QueryStatus status = netboxClient.unassignIpAddress(params, svcLogicContext); - - verify(deleteRequestedFor(urlEqualTo(expectedUrl)) - .withHeader(ACCEPT, equalTo(APPLICATION_JSON)) - .withHeader(CONTENT_TYPE, equalTo(APPLICATION_JSON)) - .withHeader(AUTHORIZATION, equalTo("Token " + token))); - - Mockito.verify(dbLib).writeData(anyString(), any(ArrayList.class), eq(null)); - Assert.assertEquals(QueryStatus.SUCCESS, status); - } - - - @Test - public void nextAvailableIpInPrefixTestNoId() { - QueryStatus status = netboxClient.assignIpAddress(ImmutableMap.of(), svcLogicContext); - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry( - "This method requires the parameters [service_instance_id,vf_module_id,prefix_id,resource_name,external_key], but no parameters were passed in."); - } - - @Test - public void nextAvailableIpInPrefixFailedRequest() throws IOException { - doThrow(new IOException("Failed request")).when(httpClientMock).post(anyString(), anyString()); - QueryStatus status = netboxClientMock.assignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Fail to assign IP for Prefix(id=3). Failed request"); - } - - @Test - public void nextAvailableIpInPrefixBadRespPayload() throws IOException { - URL url = Resources.getResource("badResponse.json"); - String response = Resources.toString(url, Charsets.UTF_8); - - String expectedUrl = "/api/ipam/prefixes/3/available-ips/"; - givenThat(post(urlEqualTo(expectedUrl)).willReturn(created().withBody(response))); - - QueryStatus status = netboxClient.assignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Fail to parse IPAM JSON reponse to IPAddress POJO. IPAM JSON Response={\n" - + " \"id\": 8\n" - + " \"address\": \"192.168.20.7/32\"\n" - + "}"); - } - - @Test - public void nextAvailableIpInPrefixFailSQL() throws IOException, SQLException { - URL url = Resources.getResource("nextAvailableIpResponse.json"); - String response = Resources.toString(url, Charsets.UTF_8); - - String expectedUrl = "/api/ipam/prefixes/3/available-ips/"; - givenThat(post(urlEqualTo(expectedUrl)).willReturn(created().withBody(response))); - - doThrow(new SQLException("Failed")).when(dbLib).writeData(anyString(), any(ArrayList.class), eq(null)); - - QueryStatus status = netboxClient.assignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Caught SQL exception"); - } - - @Test - public void nextAvailableIpInPrefixError500() throws IOException { - URL url = Resources.getResource("nextAvailableIpResponse.json"); - String response = Resources.toString(url, Charsets.UTF_8); - - String expectedUrl = "/api/ipam/prefixes/3/available-ips/"; - givenThat(post(urlEqualTo(expectedUrl)).willReturn(serverError().withBody(response))); - - QueryStatus status = netboxClient.assignIpAddress(params, svcLogicContext); - - Assert.assertEquals(QueryStatus.FAILURE, status); - verifyLogEntry("Fail to assign IP for Prefix(id=3). HTTP code 201!=500."); - } - - @Test - public void nextAvailableIpInPrefixSuccess() throws IOException, SQLException { - URL url = Resources.getResource("nextAvailableIpResponse.json"); - String response = Resources.toString(url, Charsets.UTF_8); - - String expectedUrl = "/api/ipam/prefixes/3/available-ips/"; - givenThat(post(urlEqualTo(expectedUrl)).willReturn(created().withBody(response))); - - QueryStatus status = netboxClient.assignIpAddress(params, svcLogicContext); - - verify(postRequestedFor(urlEqualTo(expectedUrl)) - .withHeader(ACCEPT, equalTo(APPLICATION_JSON)) - .withHeader(CONTENT_TYPE, equalTo(APPLICATION_JSON)) - .withHeader(AUTHORIZATION, equalTo("Token " + token))); - - Mockito.verify(dbLib).writeData(anyString(), any(ArrayList.class), eq(null)); - Assert.assertEquals(QueryStatus.SUCCESS, status); - } - - private void verifyLogEntry(String message) { - Mockito.verify(appender, times(1)).doAppend(captor.capture()); - List<ILoggingEvent> allValues = captor.getAllValues(); - for (ILoggingEvent loggingEvent : allValues) { - Assert.assertTrue(loggingEvent.getFormattedMessage().contains(message)); - } - } - -}
\ No newline at end of file diff --git a/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxHttpClientTest.java b/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxHttpClientTest.java deleted file mode 100644 index 8634742ae..000000000 --- a/netbox-client/provider/src/test/java/org/onap/ccsdk/sli/adaptors/netbox/impl/NetboxHttpClientTest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright (C) 2018 Bell Canada. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.onap.ccsdk.sli.adaptors.netbox.impl; - -import static com.github.tomakehurst.wiremock.client.WireMock.delete; -import static com.github.tomakehurst.wiremock.client.WireMock.deleteRequestedFor; -import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; -import static com.github.tomakehurst.wiremock.client.WireMock.givenThat; -import static com.github.tomakehurst.wiremock.client.WireMock.ok; -import static com.github.tomakehurst.wiremock.client.WireMock.post; -import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; -import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; -import static com.github.tomakehurst.wiremock.client.WireMock.verify; -import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig; -import static org.apache.http.HttpHeaders.ACCEPT; -import static org.apache.http.HttpHeaders.CONTENT_TYPE; - -import com.github.tomakehurst.wiremock.junit.WireMockRule; -import java.io.IOException; -import org.junit.After; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; - -public class NetboxHttpClientTest { - - private static final String APPLICATION_JSON = "application/json"; - - @Rule - public WireMockRule wm = new WireMockRule(wireMockConfig().dynamicPort()); - - private NetboxHttpClient httpClient; - - @Before - public void setup() { - String baseUrl = "http://localhost:" + wm.port(); - String token = "token"; - - httpClient = new NetboxHttpClient(baseUrl, token); - - wm.addMockServiceRequestListener( - (request, response) -> { - System.out.println("Request URL :" + request.getAbsoluteUrl()); - System.out.println("Request body :" + request.getBodyAsString()); - System.out.println("Response status :" + response.getStatus()); - System.out.println("Response body :" + response.getBodyAsString()); - }); - } - - @After - public void tearDown() throws IOException { - httpClient.close(); - } - - @Test - public void postTest() throws IOException { - String expectedUrl = "/testPost"; - givenThat(post(urlEqualTo(expectedUrl)).willReturn(ok())); - - httpClient.post(expectedUrl, ""); - - verify(postRequestedFor(urlEqualTo(expectedUrl)) - .withHeader(ACCEPT, equalTo(APPLICATION_JSON)) - .withHeader(CONTENT_TYPE, equalTo(APPLICATION_JSON))); - } - - @Test - public void deleteTest() throws IOException { - String expectedUrl = "/testDelete"; - givenThat(delete(urlEqualTo(expectedUrl)).willReturn(ok())); - httpClient.delete(expectedUrl); - verify(deleteRequestedFor(urlEqualTo(expectedUrl)) - .withHeader(ACCEPT, equalTo(APPLICATION_JSON)) - .withHeader(CONTENT_TYPE, equalTo(APPLICATION_JSON))); - } -} |