added few test cases to increase code coverage 17/56617/3
authorSandeep J <sandeejh@in.ibm.com>
Tue, 17 Jul 2018 12:35:21 +0000 (18:05 +0530)
committerPatrick Brady <pb071s@att.com>
Thu, 19 Jul 2018 19:50:58 +0000 (19:50 +0000)
added few test cases to increase code-coverage for DmaapConsumerImpl.java

Issue-ID: APPC-1086
Change-Id: I3cf10a195063a05acf77b01aa2ea66e3da44d179
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-adapters/appc-dmaap-adapter/appc-dmaap-adapter-bundle/src/main/java/org/onap/appc/adapter/messaging/dmaap/impl/DmaapConsumerImpl.java
appc-adapters/appc-dmaap-adapter/appc-dmaap-adapter-bundle/src/test/java/org/onap/appc/adapter/messaging/dmaap/impl/TestDmaapConsumerImpl.java

index 40ee1c7..7291e46 100644 (file)
@@ -5,7 +5,9 @@
  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Copyright (C) 2017 Amdocs
- * =============================================================================
+ * ================================================================================
+ * Modifications Copyright (C) 2018 IBM
+ * ================================================================================
  * 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
@@ -117,7 +119,7 @@ public class DmaapConsumerImpl implements Consumer {
     /**
      * @return An instance of MRConsumer created from our class variables.
      */
-    private synchronized MRConsumer getClient(int waitMs, int limit) {
+    synchronized MRConsumer getClient(int waitMs, int limit) {
         try {
             props.setProperty("timeout", String.valueOf(waitMs));
             props.setProperty("limit", String.valueOf(limit));
index e71cb75..dd76ef6 100644 (file)
@@ -3,7 +3,9 @@
  * ONAP : APPC 
  * ================================================================================ 
  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. 
- * ============================================================================= 
+ * ================================================================================
+ * Modifications Copyright (C) 2018 IBM
+ * ================================================================================
  * 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 
@@ -24,7 +26,6 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertNull;
 import static org.junit.Assert.fail;
-
 import java.util.Arrays;
 import java.util.Collection;
 import java.util.HashSet;
@@ -33,6 +34,7 @@ import java.util.Properties;
 import org.junit.Ignore;
 import org.junit.Test;
 
+
 public class TestDmaapConsumerImpl {
     String[]           hostList = { "192.168.1.1" };
     Collection<String> hosts    = new HashSet<String>(Arrays.asList(hostList));
@@ -61,6 +63,7 @@ public class TestDmaapConsumerImpl {
     @Test
     public void testDmaapConsumerImplwithFilter() {
 
+       filter="";
         DmaapConsumerImpl consumer = new DmaapConsumerImpl(hosts, topic, group, id, key, secret, filter);
 
         assertNotNull(consumer);
@@ -102,10 +105,14 @@ public class TestDmaapConsumerImpl {
         assertEquals("secret", props.getProperty("password"));
     }
 
-    @Ignore
+    
     @Test
     public void testFetch() {
-        fail("Not yet implemented");
+       DmaapConsumerImpl consumer = new DmaapConsumerImpl(hosts, topic, group, id, key, secret);
+
+        assertNotNull(consumer);
+        
+        consumer.fetch(5000,500);
     }
 
     @Ignore
@@ -152,5 +159,23 @@ public class TestDmaapConsumerImpl {
         assertEquals(true, consumer.isHttps());
 
     }
-
+    
+    @Test
+    public void testGetClient() 
+    {
+       DmaapConsumerImpl consumer = new DmaapConsumerImpl(hosts, topic, group, id, key, secret);
+       assertNotNull(consumer);    
+       consumer.getClient(1000,5);
+       Properties props= consumer.getProperties();
+       assertEquals("1000", props.getProperty("timeout"));
+       assertEquals("5", props.getProperty("limit"));
+    }
+    
+    @Test
+    public void testInitMetric() 
+    {
+       DmaapConsumerImpl consumer = new DmaapConsumerImpl(hosts, topic, group, id, key, secret);
+       assertNotNull(consumer); 
+       
+    }
 }