add test 53/71053/3
authormicdzied <michal.1.dziedzic@nokia.com>
Tue, 23 Oct 2018 12:58:43 +0000 (14:58 +0200)
committermicdzied <michal.1.dziedzic@nokia.com>
Wed, 24 Oct 2018 07:10:39 +0000 (09:10 +0200)
Change-Id: I696421423fe0b6d9634bb2ef90829b53ac64a7b0
Issue-ID: DCAEGEN2-889
Signed-off-by: micdzied <michal.1.dziedzic@nokia.com>
datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/DmaapReactiveWebClientTest.java [new file with mode: 0644]
datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/HttpUtilsTest.java [new file with mode: 0644]
datafile-dmaap-client/src/test/java/org/onap/dcaegen2/collectors/datafile/service/producer/PublishRedirectStrategyTest.java [new file with mode: 0644]

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 (file)
index 0000000..2eac589
--- /dev/null
@@ -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 (file)
index 0000000..4a9f9c1
--- /dev/null
@@ -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 (file)
index 0000000..74ad672
--- /dev/null
@@ -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