From 3274b39fef63c43c6eeb202e98b71b01e0f714ff Mon Sep 17 00:00:00 2001 From: Ofir Sonsino Date: Sun, 8 Oct 2017 15:04:04 +0300 Subject: Improve SONAR coverage Change-Id: I02e9535f96040cd038ef064ee5881c4c3e5e7bca Issue-ID: VID-72 Signed-off-by: Ofir Sonsino --- .../vid/controller/AaiControllerTest.java | 95 ++++++++++++++++++++++ .../vid/controller/HealthCheckControllerTest.java | 47 +++++++++++ .../vid/controller/PropertyControllerTest.java | 58 +++++++++++++ .../org/openecomp/vid/controller/TestSuite.java | 11 +++ 4 files changed, 211 insertions(+) create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/controller/AaiControllerTest.java create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/controller/PropertyControllerTest.java create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/controller/TestSuite.java (limited to 'vid-app-common/src/test/java/org/openecomp/vid/controller') diff --git a/vid-app-common/src/test/java/org/openecomp/vid/controller/AaiControllerTest.java b/vid-app-common/src/test/java/org/openecomp/vid/controller/AaiControllerTest.java new file mode 100644 index 00000000..2ab1052b --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/controller/AaiControllerTest.java @@ -0,0 +1,95 @@ +package org.openecomp.vid.controller; + +import javax.servlet.http.HttpServletRequest; + +import org.json.simple.JSONObject; +import org.junit.Assert; +import org.junit.Test; +import org.openecomp.vid.aai.AaiResponse; +import org.openecomp.vid.model.VersionByInvariantIdsRequest; +import org.springframework.http.ResponseEntity; +import org.springframework.web.servlet.ModelAndView; + +public class AaiControllerTest { + + private AaiController createTestSubject() { + return new AaiController(); + } + + @Test + public void testParseCustomerObjectForTenants() throws Exception { + JSONObject jsonObject = null; + String result; + + // default test + result = AaiController.parseCustomerObjectForTenants(jsonObject); + } + + @Test + public void testParseServiceSubscriptionObjectForTenants() throws Exception { + JSONObject jsonObject = null; + String result; + + // default test + result = AaiController.parseServiceSubscriptionObjectForTenants(jsonObject); + } + + @Test + public void testWelcome() throws Exception { + AaiController testSubject; + HttpServletRequest request = null; + ModelAndView result; + + // default test + testSubject = createTestSubject(); + result = testSubject.welcome(request); + } + + @Test + public void testGetViewName() throws Exception { + AaiController testSubject; + String result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getViewName(); + } + + @Test + public void testSetViewName() throws Exception { + AaiController testSubject; + String viewName = ""; + + // default test + testSubject = createTestSubject(); + testSubject.setViewName(viewName); + } + + + @Test + public void testGetTargetProvStatus() throws Exception { + AaiController testSubject; + ResponseEntity result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getTargetProvStatus(); + } + + + + @Test + public void testViewEditGetTenantsFromServiceType() throws Exception { + AaiController testSubject; + HttpServletRequest request = null; + String globalCustomerId = ""; + String serviceType = ""; + ResponseEntity result; + + // default test + testSubject = createTestSubject(); + result = testSubject.viewEditGetTenantsFromServiceType(request, globalCustomerId, serviceType); + } + + +} \ No newline at end of file diff --git a/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java b/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java new file mode 100644 index 00000000..045ad9a6 --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java @@ -0,0 +1,47 @@ +package org.openecomp.vid.controller; + +import org.junit.Test; +import org.openecomp.vid.controller.HealthCheckController.HealthStatus; + +public class HealthCheckControllerTest { + + private HealthCheckController createTestSubject() { + return new HealthCheckController(); + } + + @Test + public void testGetProfileCount() throws Exception { + HealthCheckController testSubject; + String driver = ""; + String URL = ""; + String username = ""; + String password = ""; + int result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getProfileCount(driver, URL, username, password); + } + + @Test + public void testGethealthCheckStatusforIDNS() throws Exception { + HealthCheckController testSubject; + HealthStatus result; + + // default test + testSubject = createTestSubject(); + result = testSubject.gethealthCheckStatusforIDNS(); + } + + @Test + public void testGetHealthCheck() throws Exception { + HealthCheckController testSubject; + String UserAgent = ""; + String ECOMPRequestID = ""; + HealthStatus result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getHealthCheck(UserAgent, ECOMPRequestID); + } +} \ No newline at end of file diff --git a/vid-app-common/src/test/java/org/openecomp/vid/controller/PropertyControllerTest.java b/vid-app-common/src/test/java/org/openecomp/vid/controller/PropertyControllerTest.java new file mode 100644 index 00000000..cf7ada46 --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/controller/PropertyControllerTest.java @@ -0,0 +1,58 @@ +package org.openecomp.vid.controller; + +import javax.servlet.http.HttpServletRequest; + +import org.junit.Test; +import org.springframework.http.ResponseEntity; +import org.springframework.web.servlet.ModelAndView; + +public class PropertyControllerTest { + + private PropertyController createTestSubject() { + return new PropertyController(); + } + + @Test + public void testWelcome() throws Exception { + PropertyController testSubject; + HttpServletRequest request = null; + ModelAndView result; + + // default test + testSubject = createTestSubject(); + result = testSubject.welcome(request); + } + + @Test + public void testGetViewName() throws Exception { + PropertyController testSubject; + String result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getViewName(); + } + + @Test + public void testSetViewName() throws Exception { + PropertyController testSubject; + String _viewName = ""; + + // default test + testSubject = createTestSubject(); + testSubject.setViewName(_viewName); + } + + @Test + public void testGetProperty() throws Exception { + PropertyController testSubject; + String name = ""; + String defaultvalue = ""; + HttpServletRequest request = null; + ResponseEntity result; + + // default test + testSubject = createTestSubject(); + result = testSubject.getProperty(name, defaultvalue, request); + } +} \ No newline at end of file diff --git a/vid-app-common/src/test/java/org/openecomp/vid/controller/TestSuite.java b/vid-app-common/src/test/java/org/openecomp/vid/controller/TestSuite.java new file mode 100644 index 00000000..3253712e --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/controller/TestSuite.java @@ -0,0 +1,11 @@ +package org.openecomp.vid.controller; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses( + +{ HealthCheckControllerTest.class, PropertyControllerTest.class, AaiControllerTest.class }) +public class TestSuite { // nothing +} -- cgit 1.2.3-korg