Merge "added assert statements in 3 test classes"
authorDan Timoney <dtimoney@att.com>
Mon, 1 Jun 2020 14:42:36 +0000 (14:42 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 1 Jun 2020 14:42:36 +0000 (14:42 +0000)
12 files changed:
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/AAIClientRESTExecutorTest.java
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/ActionUpdateTest.java
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/GenericVnfTest.java
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/NodesQueryRequestTest.java
aai-service/provider/src/test/java/org/onap/ccsdk/sli/adaptors/aai/PathCreationTest.java
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 9905991..b0272f5 100644 (file)
@@ -6,6 +6,7 @@ import java.util.Properties;
 
 import org.junit.BeforeClass;
 import org.junit.Test;
+import static org.junit.Assert.assertNotNull;
 
 public class AAIClientRESTExecutorTest {
 
@@ -35,6 +36,7 @@ public class AAIClientRESTExecutorTest {
         } catch (AAIServiceException e) {
         }
         assert(true);
+        assertNotNull(nameValues);
     }
 
     @Test
@@ -47,6 +49,7 @@ public class AAIClientRESTExecutorTest {
         } catch (AAIServiceException e) {
         }
         assert(true);
+        assertNotNull(nameValues);
     }
 
     @Test
@@ -59,6 +62,7 @@ public class AAIClientRESTExecutorTest {
         } catch (AAIServiceException e) {
         }
         assert(true);
+        assertNotNull(nameValues);
     }
 
     @Test
@@ -71,6 +75,7 @@ public class AAIClientRESTExecutorTest {
         } catch (AAIServiceException e) {
         }
         assert(true);
+        assertNotNull(nameValues);
     }
 
     @Test
@@ -83,6 +88,7 @@ public class AAIClientRESTExecutorTest {
         } catch (AAIServiceException e) {
         }
         assert(true);
+        assertNotNull(nameValues);
     }
 
 
index 607182e..64f9b45 100755 (executable)
@@ -19,6 +19,7 @@ public class ActionUpdateTest {
     public void setActionData() throws Exception {
         final Action resolver = new Action();
         resolver.setActionData( new ArrayList<ActionDatum>());
+        assertNotNull(resolver);
     }
 
     @Test
index f5339c2..f0a33fd 100755 (executable)
@@ -105,12 +105,14 @@ public class GenericVnfTest {
             data.put("encrypted-access-flag","true");
 
             QueryStatus resp = client.save("generic-vnf", false, false, "generic-vnf.vnf-id = '"+uuid+"'", data, "aaidata", ctx);
+            assertNotNull(ctx);
 
         }
         catch (Throwable e)
         {
 
         }
+        ;
     }
 
     @Test
@@ -130,8 +132,7 @@ public class GenericVnfTest {
             assertTrue(response == QueryStatus.SUCCESS);
             LOG.info("AAIResponse: " + response.toString());
         }
-        catch (Exception e)
-        {
+        catch (Exception e) {
             LOG.error("Caught exception", e);
             fail("Caught exception");
         }
@@ -155,7 +156,7 @@ public class GenericVnfTest {
             data.put("encrypted-access-flag","true");
 
             QueryStatus resp = client.update("generic-vnf", "generic-vnf.vnf-id = '"+uuid+"'", data, "aaidata", ctx);
-
+            assertNotNull(uuid);
         }
         catch (Throwable e)
         {
index 33b3839..e52f1de 100644 (file)
@@ -40,6 +40,7 @@ public class NodesQueryRequestTest {
 
         try {
             URL url = request.getRequestUrl("GET", null);
+            assertNotNull(url);
         } catch (Exception exc) {
         }
         assert(true);
index f9ec9f4..098414f 100755 (executable)
@@ -22,6 +22,7 @@
 package org.onap.ccsdk.sli.adaptors.aai;
 
 import static org.junit.Assert.fail;
+import static org.junit.Assert.assertNotNull;
 
 import java.io.File;
 import java.io.FileReader;
@@ -135,6 +136,8 @@ public class PathCreationTest {
             URL url = request.getRequestUrl("GET", null);
             url.getPath();
             LOG.info("Received response");
+            assertNotNull(nameValues);
+
         } catch(Exception exc) {
             LOG.info("Caught exception", exc);
         }
@@ -196,5 +199,6 @@ public class PathCreationTest {
             }
         }
         LOG.info(nameValues.toString());
+        assertNotNull(nameValues);
     }
 }
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);
 
     }