TCA: Support for VES/A&AI enrichment
[dcaegen2/analytics/tca.git] / dcae-analytics-dmaap / src / test / java / org / openecomp / dcae / apod / analytics / dmaap / service / publisher / DMaaPMRPublisherImplTest.java
index 557742f..d38d59c 100644 (file)
-/*
- * ===============================LICENSE_START======================================
- *  dcae-analytics
- * ================================================================================
- *    Copyright © 2017 AT&T Intellectual Property. 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.openecomp.dcae.apod.analytics.dmaap.service.publisher;
-
-import org.apache.commons.lang3.tuple.ImmutablePair;
-import org.apache.http.client.ResponseHandler;
-import org.apache.http.client.methods.HttpPost;
-import org.apache.http.client.methods.HttpUriRequest;
-import org.apache.http.impl.client.CloseableHttpClient;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Rule;
-import org.junit.Test;
-import org.junit.rules.ExpectedException;
-import org.junit.runner.RunWith;
-import org.mockito.Mock;
-import org.mockito.Mockito;
-import org.mockito.junit.MockitoJUnitRunner;
-import org.openecomp.dcae.apod.analytics.common.exception.DCAEAnalyticsRuntimeException;
-import org.openecomp.dcae.apod.analytics.dmaap.BaseAnalyticsDMaaPUnitTest;
-import org.openecomp.dcae.apod.analytics.dmaap.domain.config.DMaaPMRPublisherConfig;
-import org.openecomp.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponse;
-
-import java.io.IOException;
-import java.util.ArrayList;
-
-import static org.hamcrest.CoreMatchers.isA;
-import static org.hamcrest.core.Is.is;
-import static org.junit.Assert.assertThat;
-import static org.mockito.BDDMockito.given;
-import static org.mockito.Mockito.times;
-import static org.mockito.Mockito.verify;
-
-/**
- * @author Rajiv Singla . Creation Date: 10/21/2016.
- */
-@RunWith(MockitoJUnitRunner.class)
-public class DMaaPMRPublisherImplTest extends BaseAnalyticsDMaaPUnitTest {
-
-    @Mock
-    DMaaPMRPublisherQueueFactory dmaapMRPublisherQueueFactory;
-    @Mock
-    CloseableHttpClient closeableHttpClient;
-    @Mock
-    DMaaPMRPublisherQueue dmaapMRPublisherQueue;
-
-    @Before
-    public void setUp() throws Exception {
-        given(dmaapMRPublisherQueueFactory.create(Mockito.anyInt(), Mockito.anyInt()))
-                .willReturn(dmaapMRPublisherQueue);
-    }
-
-    @After
-    public void tearDown() throws Exception {
-    }
-
-    @Test
-    public void testPublishSmallMessageList() throws Exception {
-        given(dmaapMRPublisherQueue.getBatchQueueRemainingSize()).willReturn(10);
-        given(dmaapMRPublisherQueue.addBatchMessages(Mockito.<String>anyList())).willReturn(2);
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-
-        DMaaPMRPublisherResponse dmaapMRPublisherResponse = dmaapMRPublisherImpl.publish(getTwoSampleMessages());
-
-        assertThat(dmaapMRPublisherResponse.getResponseCode(), is(202));
-        assertThat(dmaapMRPublisherResponse.getPendingMessagesCount(), is(2));
-        assertThat(dmaapMRPublisherResponse.getResponseMessage(),
-                is("Accepted - Messages queued for batch publishing to MR Topic"));
-    }
-
-    @Test
-    public void testPublishBigMessageList() throws Exception {
-
-        given(dmaapMRPublisherQueue.getBatchQueueRemainingSize()).willReturn(0);
-        given(dmaapMRPublisherQueue.getMessageForPublishing()).willReturn(getTwoSampleMessages());
-        Mockito.when(
-                closeableHttpClient.execute(Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-
-        DMaaPMRPublisherResponse dmaapMRPublisherResponse = dmaapMRPublisherImpl.publish(getTwoSampleMessages());
-
-        assertThat(dmaapMRPublisherResponse.getResponseCode(), is(200));
-        assertThat(dmaapMRPublisherResponse.getPendingMessagesCount(), is(200));
-        assertThat(dmaapMRPublisherResponse.getResponseMessage(), is("Message successfully posted"));
-    }
-
-    @Test
-    public void testForcePublishSuccessful() throws Exception {
-        DMaaPMRPublisherConfig dmaapMRPublisherConfig = new
-                DMaaPMRPublisherConfig.Builder(HOST_NAME, TOPIC_NAME)
-                .setPortNumber(PORT_NUMBER)
-                .setProtocol(HTTP_PROTOCOL)
-                .setContentType(CONTENT_TYPE)
-                .setMaxRecoveryQueueSize(PUBLISHER_MAX_RECOVERY_QUEUE_SIZE)
-                .setMaxBatchSize(PUBLISHER_MAX_BATCH_QUEUE_SIZE).build();
-
-        HttpPost httpPost = Mockito.mock(HttpPost.class);
-        Mockito.when(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                dmaapMRPublisherConfig, dmaapMRPublisherQueueFactory, closeableHttpClient);
-        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());
-        assertThat(response.getResponseCode(), is(200));
-    }
-
-    @Test
-    public void testForcePublishFailure() throws Exception {
-        Mockito.when(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(503, "Message successfully posted"));
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());
-        assertThat(response.getResponseCode(), is(503));
-    }
-
-    @Rule
-    public ExpectedException httpIOException = ExpectedException.none();
-
-    @Test
-    public void testForcePublishHttpFailure() throws Exception {
-
-        httpIOException.expect(DCAEAnalyticsRuntimeException.class);
-        httpIOException.expectCause(isA(IOException.class));
-
-        given(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class))).willThrow(IOException.class);
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());
-    }
-
-    @Test
-    public void testFlushSuccessful() throws Exception {
-        Mockito.when(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));
-
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.flush();
-        assertThat(response.getResponseCode(), is(200));
-    }
-
-    @Test
-    public void testFlushEmptyList() throws Exception {
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList());
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.flush();
-        assertThat(response.getResponseCode(), is(204));
-    }
-
-    @Test
-    public void testClose() throws Exception {
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList());
-        Mockito.when(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        dmaapMRPublisherImpl.close();
-        verify(closeableHttpClient).execute(Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class));
-    }
-
-    @Test
-    public void testCloseUnsuccessful() throws Exception {
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList());
-        Mockito.when(closeableHttpClient.execute(
-                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))
-                .thenReturn(new ImmutablePair<>(400, "Message successfully posted"));
-        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());
-
-        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(
-                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);
-        dmaapMRPublisherImpl.close();
-        verify(closeableHttpClient, times(6)).execute(Mockito.any(HttpUriRequest.class),
-                Mockito.any(ResponseHandler.class));
-    }
-}
+/*\r
+ * ===============================LICENSE_START======================================\r
+ *  dcae-analytics\r
+ * ================================================================================\r
+ *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
+ * ================================================================================\r
+ *  Licensed under the Apache License, Version 2.0 (the "License");\r
+ *  you may not use this file except in compliance with the License.\r
+ *   You may obtain a copy of the License at\r
+ *\r
+ *          http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ *  Unless required by applicable law or agreed to in writing, software\r
+ *  distributed under the License is distributed on an "AS IS" BASIS,\r
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ *  See the License for the specific language governing permissions and\r
+ *  limitations under the License.\r
+ *  ============================LICENSE_END===========================================\r
+ */\r
+\r
+package org.openecomp.dcae.apod.analytics.dmaap.service.publisher;\r
+\r
+import org.apache.commons.lang3.tuple.ImmutablePair;\r
+import org.apache.http.client.ResponseHandler;\r
+import org.apache.http.client.methods.HttpUriRequest;\r
+import org.apache.http.impl.client.CloseableHttpClient;\r
+import org.junit.After;\r
+import org.junit.Before;\r
+import org.junit.Rule;\r
+import org.junit.Test;\r
+import org.junit.rules.ExpectedException;\r
+import org.junit.runner.RunWith;\r
+import org.mockito.Mock;\r
+import org.mockito.Mockito;\r
+import org.mockito.junit.MockitoJUnitRunner;\r
+import org.openecomp.dcae.apod.analytics.common.exception.DCAEAnalyticsRuntimeException;\r
+import org.openecomp.dcae.apod.analytics.dmaap.BaseAnalyticsDMaaPUnitTest;\r
+import org.openecomp.dcae.apod.analytics.dmaap.domain.config.DMaaPMRPublisherConfig;\r
+import org.openecomp.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponse;\r
+\r
+import java.io.IOException;\r
+import java.util.ArrayList;\r
+\r
+import static org.hamcrest.CoreMatchers.isA;\r
+import static org.hamcrest.core.Is.is;\r
+import static org.junit.Assert.assertThat;\r
+import static org.mockito.BDDMockito.given;\r
+import static org.mockito.Mockito.times;\r
+import static org.mockito.Mockito.verify;\r
+\r
+/**\r
+ * @author Rajiv Singla . Creation Date: 10/21/2016.\r
+ */\r
+@RunWith(MockitoJUnitRunner.class)\r
+public class DMaaPMRPublisherImplTest extends BaseAnalyticsDMaaPUnitTest {\r
+\r
+    @Mock\r
+    private DMaaPMRPublisherQueueFactory dmaapMRPublisherQueueFactory;\r
+    @Mock\r
+    private CloseableHttpClient closeableHttpClient;\r
+    @Mock\r
+    private DMaaPMRPublisherQueue dmaapMRPublisherQueue;\r
+\r
+    @Before\r
+    public void setUp() throws Exception {\r
+        given(dmaapMRPublisherQueueFactory.create(Mockito.anyInt(), Mockito.anyInt()))\r
+                .willReturn(dmaapMRPublisherQueue);\r
+    }\r
+\r
+    @After\r
+    public void tearDown() throws Exception {\r
+    }\r
+\r
+    @Test\r
+    public void testPublishSmallMessageList() throws Exception {\r
+        given(dmaapMRPublisherQueue.getBatchQueueRemainingSize()).willReturn(10);\r
+        given(dmaapMRPublisherQueue.addBatchMessages(Mockito.<String>anyList())).willReturn(2);\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+\r
+        DMaaPMRPublisherResponse dmaapMRPublisherResponse = dmaapMRPublisherImpl.publish(getTwoSampleMessages());\r
+\r
+        assertThat(dmaapMRPublisherResponse.getResponseCode(), is(202));\r
+        assertThat(dmaapMRPublisherResponse.getPendingMessagesCount(), is(2));\r
+        assertThat(dmaapMRPublisherResponse.getResponseMessage(),\r
+                is("Accepted - Messages queued for batch publishing to MR Topic"));\r
+    }\r
+\r
+    @Test\r
+    public void testPublishBigMessageList() throws Exception {\r
+\r
+        given(dmaapMRPublisherQueue.getBatchQueueRemainingSize()).willReturn(0);\r
+        given(dmaapMRPublisherQueue.getMessageForPublishing()).willReturn(getTwoSampleMessages());\r
+        Mockito.when(\r
+                closeableHttpClient.execute(Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+\r
+        DMaaPMRPublisherResponse dmaapMRPublisherResponse = dmaapMRPublisherImpl.publish(getTwoSampleMessages());\r
+\r
+        assertThat(dmaapMRPublisherResponse.getResponseCode(), is(200));\r
+        assertThat(dmaapMRPublisherResponse.getPendingMessagesCount(), is(200));\r
+        assertThat(dmaapMRPublisherResponse.getResponseMessage(), is("Message successfully posted"));\r
+    }\r
+\r
+    @Test\r
+    public void testForcePublishSuccessful() throws Exception {\r
+        DMaaPMRPublisherConfig dmaapMRPublisherConfig = new\r
+                DMaaPMRPublisherConfig.Builder(HOST_NAME, TOPIC_NAME)\r
+                .setPortNumber(PORT_NUMBER)\r
+                .setProtocol(HTTP_PROTOCOL)\r
+                .setContentType(CONTENT_TYPE)\r
+                .setMaxRecoveryQueueSize(PUBLISHER_MAX_RECOVERY_QUEUE_SIZE)\r
+                .setMaxBatchSize(PUBLISHER_MAX_BATCH_QUEUE_SIZE).build();\r
+\r
+        Mockito.when(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                dmaapMRPublisherConfig, dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());\r
+        assertThat(response.getResponseCode(), is(200));\r
+    }\r
+\r
+    @Test\r
+    public void testForcePublishFailure() throws Exception {\r
+        Mockito.when(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(503, "Message successfully posted"));\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());\r
+        assertThat(response.getResponseCode(), is(503));\r
+    }\r
+\r
+    @Rule\r
+    public ExpectedException httpIOException = ExpectedException.none();\r
+\r
+    @Test\r
+    public void testForcePublishHttpFailure() throws Exception {\r
+\r
+        httpIOException.expect(DCAEAnalyticsRuntimeException.class);\r
+        httpIOException.expectCause(isA(IOException.class));\r
+\r
+        given(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class))).willThrow(IOException.class);\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        dmaapMRPublisherImpl.forcePublish(getTwoSampleMessages());\r
+    }\r
+\r
+    @Test\r
+    public void testFlushSuccessful() throws Exception {\r
+        Mockito.when(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));\r
+\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.flush();\r
+        assertThat(response.getResponseCode(), is(200));\r
+    }\r
+\r
+    @Test\r
+    public void testFlushEmptyList() throws Exception {\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList<String>());\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        DMaaPMRPublisherResponse response = dmaapMRPublisherImpl.flush();\r
+        assertThat(response.getResponseCode(), is(204));\r
+    }\r
+\r
+    @Test\r
+    public void testClose() throws Exception {\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList<String>());\r
+        Mockito.when(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(200, "Message successfully posted"));\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        dmaapMRPublisherImpl.close();\r
+        verify(closeableHttpClient).execute(Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class));\r
+    }\r
+\r
+    @Test\r
+    public void testCloseUnsuccessful() throws Exception {\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(new ArrayList<String>());\r
+        Mockito.when(closeableHttpClient.execute(\r
+                Mockito.any(HttpUriRequest.class), Mockito.any(ResponseHandler.class)))\r
+                .thenReturn(new ImmutablePair<>(400, "Message successfully posted"));\r
+        Mockito.when(dmaapMRPublisherQueue.getMessageForPublishing()).thenReturn(getTwoSampleMessages());\r
+\r
+        DMaaPMRPublisherImpl dmaapMRPublisherImpl = new DMaaPMRPublisherImpl(\r
+                getPublisherConfig(), dmaapMRPublisherQueueFactory, closeableHttpClient);\r
+        dmaapMRPublisherImpl.close();\r
+        verify(closeableHttpClient, times(6)).execute(Mockito.any(HttpUriRequest.class),\r
+                Mockito.any(ResponseHandler.class));\r
+    }\r
+}\r