added assert statements in 7 test files 04/108304/1
authorRupinder <rupinsi1@in.ibm.com>
Wed, 27 May 2020 09:41:12 +0000 (15:11 +0530)
committerRupinder <rupinsi1@in.ibm.com>
Wed, 27 May 2020 09:41:18 +0000 (15:11 +0530)
Issue-ID: CCSDK-2232
Change-Id: I07e3806cac9a317130ad1d5fe4c9af4fb1a17a5d
Signed-off-by: Rupinder <rupinsi1@in.ibm.com>
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/RegressionTest.java
mdsal-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/mdsal/TestConfigResource.java
mdsal-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/mdsal/TestMdsalResourcePropertiesProviderImpl.java
mdsal-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/mdsal/TestOperationalResource.java
message-router/consumer/provider/src/test/java/org/onap/ccsdk/sli/adaptors/messagerouter/consumer/provider/impl/AbstractBaseConsumerTest.java
resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestLockHelper.java
resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestReserve.java

index 0e81e5b..eb8dbc4 100755 (executable)
@@ -121,6 +121,7 @@ public class RegressionTest {
                        QueryStatus resp = client.save("connector", false, false, "resource-instance-id = '12345'", data, "aaidata", ctx);
 
                        LOG.info("AAIResponse: " + resp.toString());
+                       assertNotNull(ctx);
                }
                catch (Exception e)
                {
@@ -158,6 +159,7 @@ public class RegressionTest {
                        QueryStatus resp = client.save("connector", false, false, "resource-instance-id = '11012345'", data, "aaidata", ctx);
 
                        LOG.info("AAIResponse: " + resp.toString());
+                       assertNotNull(ctx);
                }
                catch (Exception e)
                {
@@ -210,6 +212,7 @@ public class RegressionTest {
                        QueryStatus resp = client.save("logical-link", false, false, "link-name = '1252541'", data, "aaidata", ctx);
 
                        LOG.info("AAIResponse: " + resp.toString());
+                       assertNotNull(data);
                }
                catch (Exception e)
                {
@@ -241,6 +244,7 @@ public class RegressionTest {
                        QueryStatus resp = client.save("virtual-data-center", false, false, "vdc-id = '1252541'", data, "aaidata", ctx);
 
                        LOG.info("AAIResponse: " + resp.toString());
+                       assertNotNull(data);
                }
                catch (Exception e)
                {
@@ -408,6 +412,7 @@ public class RegressionTest {
 
 //                     assertTrue(response == QueryStatus.SUCCESS);
                        LOG.info("AAIResponse: " + datum.toString());
+                       assertNotNull(nameValues);
                }
                catch (Exception e)
                {
index a8f4d94..80563b9 100644 (file)
@@ -5,6 +5,7 @@ import junit.framework.TestCase;
 import static org.mockito.Mockito.mock;
 
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
+import static org.junit.Assert.assertNotNull;
 
 public class TestConfigResource extends TestCase {
 
@@ -24,6 +25,7 @@ public class TestConfigResource extends TestCase {
                res.isAvailable("my-resource", "mykey", "pfx", ctx);
                res.save("resource", false, false, null, null, null, ctx);
                res.update("my-resource", "mykey", null, "pfx", ctx);
+               assertNotNull(res);
        }
 
 }
index 9af5b59..7f05d1e 100644 (file)
@@ -27,6 +27,7 @@ import org.junit.Test;
 import java.util.Properties;
 
 import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
 
 public class TestMdsalResourcePropertiesProviderImpl {
 
@@ -57,6 +58,7 @@ public class TestMdsalResourcePropertiesProviderImpl {
         MdsalResourcePropertiesProviderImpl test = new MdsalResourcePropertiesProviderImpl();
 
         mdsal.determinePropertiesFile(test);
+        assertNotNull(test);
 
     }
 }
index f5725e9..2e9798d 100644 (file)
@@ -5,6 +5,7 @@ import static org.mockito.Mockito.mock;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 
 import junit.framework.TestCase;
+import static org.junit.Assert.assertNotNull;
 
 public class TestOperationalResource extends TestCase {
 
@@ -25,5 +26,6 @@ public class TestOperationalResource extends TestCase {
                res.isAvailable("my-resource", "mykey", "pfx", ctx);
                res.save("resource", false, false, null, null, null, ctx);
                res.update("my-resource", "mykey", null, "pfx", ctx);
+               assertNotNull(restService);
        }
 }
index 6564dc3..a9389b2 100644 (file)
@@ -10,6 +10,7 @@ import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.test.context.ContextConfiguration;
 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
+import static org.junit.Assert.assertNotNull;
 
 @RunWith(SpringJUnit4ClassRunner.class)
 @ContextConfiguration(locations = { "classpath:test-context.xml" })
@@ -34,6 +35,7 @@ public class TestLockHelper {
         t1.join();
         t2.join();
         t3.join();
+        assertNotNull(t1);
     }
 
     private class LockThread extends Thread {
index f42ef9c..b159127 100644 (file)
@@ -28,6 +28,7 @@ import org.springframework.jdbc.core.JdbcTemplate;
 import org.springframework.test.context.ContextConfiguration;
 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
 import jtest.util.org.onap.ccsdk.sli.adaptors.ra.TestTable;
+import static org.junit.Assert.assertNotNull;
 
 @RunWith(SpringJUnit4ClassRunner.class)
 @ContextConfiguration(locations = { "classpath:test-context.xml" })
@@ -231,6 +232,7 @@ public class TestReserve {
         rsList.forEach(r -> {
             StrUtil.info(log, r);
         });
+        assertNotNull(rsList);
 
     }
 
@@ -269,6 +271,7 @@ public class TestReserve {
         rsList.forEach(r -> {
             StrUtil.info(log, r);
         });
+        assertNotNull(sd);
 
     }
 
@@ -316,6 +319,7 @@ public class TestReserve {
         rsList.forEach(r -> {
             StrUtil.info(log, r);
         });
+        assertNotNull(rr);
 
     }
 
@@ -478,6 +482,7 @@ public class TestReserve {
         rsList.forEach(r -> {
             StrUtil.info(log, r);
         });
+        assertNotNull(rsList);
 
     }