revert topic exist check while publishing 68/93068/1
authorsu622b <su622b@att.com>
Thu, 8 Aug 2019 12:34:53 +0000 (08:34 -0400)
committersu622b <su622b@att.com>
Thu, 8 Aug 2019 12:35:06 +0000 (08:35 -0400)
Issue-ID: DMAAP-1247
Change-Id: I17a289cd520d9b78a6652e05147acb7ab714cb54
Signed-off-by: su622b <su622b@att.com>
src/test/java/org/onap/dmaap/dmf/mr/service/impl/EventsServiceImplTest.java

index 4abbe89..f9178e1 100644 (file)
@@ -402,16 +402,7 @@ public class EventsServiceImplTest {
     }
 
 
-    @Test
-    public void pushEvents_shouldFail_whenRequestedTopicDoesNotExist() throws Exception {
-        when(configurationReader.getfMetaBroker()).thenReturn(dmaapKafkaMetaBroker);
-        when(dmaapKafkaMetaBroker.getTopic("testTopic")).thenReturn(null);
-
-        thrown.expect(CambriaApiException.class);
-        thrown.expectMessage(containsString(String.valueOf(HttpStatus.SC_NOT_FOUND)));
-
-        eventsService.pushEvents(dMaapContext, "testTopic", iStream, "5", "13:00:00");
-    }
+  
 
     @Test
     public void pushEvents_shouldFailDmaapAuthorization_whenTopicOwnerIsSet_andUserHasNoWritePermissionToTopic()