From 1099b80706087b90d5af40d700b19ae5205ba564 Mon Sep 17 00:00:00 2001 From: micdzied Date: Tue, 23 Oct 2018 14:58:43 +0200 Subject: add test Change-Id: I696421423fe0b6d9634bb2ef90829b53ac64a7b0 Issue-ID: DCAEGEN2-889 Signed-off-by: micdzied --- .../service/DmaapReactiveWebClientTest.java | 52 ++++++++++++++++++++++ .../collectors/datafile/service/HttpUtilsTest.java | 35 +++++++++++++++ .../producer/PublishRedirectStrategyTest.java | 38 ++++++++++++++++ 3 files changed, 125 insertions(+) create mode 100644 datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/DmaapReactiveWebClientTest.java create mode 100644 datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/HttpUtilsTest.java create mode 100644 datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/PublishRedirectStrategyTest.java diff --git a/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/DmaapReactiveWebClientTest.java b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/DmaapReactiveWebClientTest.java new file mode 100644 index 00000000..2eac5899 --- /dev/null +++ b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/DmaapReactiveWebClientTest.java @@ -0,0 +1,52 @@ +/* + * ============LICENSE_START====================================================================== + * Copyright (C) 2018 Nordix Foundation. All rights reserved. + * =============================================================================================== + * 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. + * ============LICENSE_END======================================================================== + */ + +package org.onap.dcaegen2.collectors.datafile.service; + +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.mockito.Mock; +import org.onap.dcaegen2.collectors.datafile.config.DmaapConsumerConfiguration; +import org.springframework.web.reactive.function.client.WebClient; + +class DmaapReactiveWebClientTest { + + @Mock + private DmaapConsumerConfiguration dmaapConsumerConfiguration; + + @BeforeEach + void setUp() { + dmaapConsumerConfiguration = mock(DmaapConsumerConfiguration.class); + } + + + @Test + void buildsDMaaPReactiveWebClientProperly() { + when(dmaapConsumerConfiguration.dmaapContentType()).thenReturn("*/*"); + WebClient dmaapReactiveWebClient = new DmaapReactiveWebClient() + .fromConfiguration(dmaapConsumerConfiguration) + .build(); + + verify(dmaapConsumerConfiguration, times(1)).dmaapContentType(); + assertNotNull(dmaapReactiveWebClient); + } +} \ No newline at end of file diff --git a/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/HttpUtilsTest.java b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/HttpUtilsTest.java new file mode 100644 index 00000000..4a9f9c1f --- /dev/null +++ b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/HttpUtilsTest.java @@ -0,0 +1,35 @@ +/* + * ============LICENSE_START====================================================================== + * Copyright (C) 2018 Nordix Foundation. All rights reserved. + * =============================================================================================== + * 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. + * ============LICENSE_END======================================================================== + */ + +package org.onap.dcaegen2.collectors.datafile.service; + +import static org.junit.jupiter.api.Assertions.*; + +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +class HttpUtilsTest { + + @Test + public void shouldReturnSuccessfulResponse() { + assertTrue(HttpUtils.isSuccessfulResponseCode(200)); + } + + @Test + public void shouldReturnBadResponse() { + assertFalse(HttpUtils.isSuccessfulResponseCode(404)); + } +} \ No newline at end of file diff --git a/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/PublishRedirectStrategyTest.java b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/PublishRedirectStrategyTest.java new file mode 100644 index 00000000..74ad6722 --- /dev/null +++ b/datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/PublishRedirectStrategyTest.java @@ -0,0 +1,38 @@ +/* + * ============LICENSE_START====================================================================== + * Copyright (C) 2018 Nordix Foundation. All rights reserved. + * =============================================================================================== + * 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. + * ============LICENSE_END======================================================================== + */ + +package org.onap.dcaegen2.collectors.datafile.service.producer; + +import static org.junit.jupiter.api.Assertions.*; + +import org.apache.http.client.methods.HttpPut; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +class PublishRedirectStrategyTest { + + private PublishRedirectStrategy redirectStrategy; + + @BeforeEach + void setUp() { + redirectStrategy = new PublishRedirectStrategy(); + } + + @Test + void isRedirectable_shouldReturnTrue() { + assertTrue(redirectStrategy.isRedirectable(HttpPut.METHOD_NAME)); + } +} \ No newline at end of file -- cgit 1.2.3-korg