summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java')
-rw-r--r--ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java180
1 files changed, 94 insertions, 86 deletions
diff --git a/ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java b/ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java
index 41367a16..b0cbb7e3 100644
--- a/ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java
+++ b/ecomp-sdk/epsdk-app-common/src/test/java/org/onap/portalapp/controller/core/ProfileControllerTest.java
@@ -34,14 +34,16 @@
* ============LICENSE_END============================================
*
* ECOMP is a trademark and service mark of AT&T Intellectual Property.
-*/
+*/
package org.onap.portalapp.controller.core;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
+import java.io.BufferedReader;
import java.io.IOException;
import java.io.PrintWriter;
+import java.io.StringReader;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
@@ -71,43 +73,43 @@ import org.powermock.modules.junit4.PowerMockRunner;
import org.springframework.web.servlet.ModelAndView;
@RunWith(PowerMockRunner.class)
-@PrepareForTest({ SystemProperties.class, AppUtils.class ,UserUtils.class})
+@PrepareForTest({ SystemProperties.class, AppUtils.class, UserUtils.class })
public class ProfileControllerTest {
@InjectMocks
ProfileController profileController = new ProfileController();
-
+
@Mock
UserProfileService service;
-
+
@Mock
UserService userService;
-
+
@Mock
RoleService roleService;
-
+
@Mock
private SharedContextRestClient sharedContextRestClient;
-
+
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
}
-
+
MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
-
+
HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
-
+
NullPointerException nullPointerException = new NullPointerException();
-
+
User user = new User();
-
+
@Mock
UserUtils userUtils = new UserUtils();
-
+
@Test
- public void profileTest() throws IOException{
+ public void profileTest() throws IOException {
ModelAndView actualModelAndView = new ModelAndView("profile");
User user = new User();
user.setOrgUserId("test");
@@ -117,90 +119,95 @@ public class ProfileControllerTest {
Mockito.when(mockedRequest.getRequestURI()).thenReturn("self_profile.htm");
Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("test");
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(user);
- ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
+ ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
assertEquals(actualModelAndView.getViewName(), expectedModelAndView.getViewName());
}
-
+
@Test
- public void profileRequestURITest() throws IOException{
+ public void profileRequestURITest() throws IOException {
ModelAndView actualModelAndView = new ModelAndView("profile");
User user = new User();
user.setOrgUserId("test");
- int profileId = 1;
+ int profileId = 1;
PowerMockito.mockStatic(AppUtils.class);
PowerMockito.mockStatic(UserUtils.class);
Mockito.when(mockedRequest.getRequestURI()).thenReturn("test");
Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("1");
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
- Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(user);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(user);
- ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
+ Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(user);
+ ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
assertEquals(actualModelAndView.getViewName(), expectedModelAndView.getViewName());
}
-
+
@Test
- public void profileExceptionTest() throws IOException{
+ public void profileExceptionTest() throws IOException {
ModelAndView actualModelAndView = new ModelAndView("profile");
User profile = null;
- Long profileId = null;
+ Long profileId = null;
Mockito.when(mockedRequest.getRequestURI()).thenReturn("self_profile.htm");
Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("test");
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(profile);
- ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
+ ModelAndView expectedModelAndView = profileController.profile(mockedRequest);
assertEquals(actualModelAndView.getViewName(), expectedModelAndView.getViewName());
}
-
+
@Test
- public void selfProfileTest() throws Exception{
+ public void selfProfileTest() throws Exception {
ModelAndView actualModelAndView = new ModelAndView("profile");
PowerMockito.mockStatic(AppUtils.class);
PowerMockito.mockStatic(UserUtils.class);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
ModelAndView expectedModelAndView = profileController.selfProfile(mockedRequest);
assertEquals(actualModelAndView.getViewName(), expectedModelAndView.getViewName());
}
-
+
@Test
- public void selfProfileExceptionTest() throws Exception{
+ public void selfProfileExceptionTest() throws Exception {
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
profileController.selfProfile(mockedRequest);
}
@SuppressWarnings("rawtypes")
@Test
- public void getStatesTest(){
+ public void getStatesTest() {
List actualList = new ArrayList();
PowerMockito.mockStatic(AppUtils.class);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
- List expectedlist =profileController.getStates();
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
+ List expectedlist = profileController.getStates();
assertEquals(actualList.size(), expectedlist.size());
}
-
+
@Test
- public void getSelfProfileTest() throws IOException{
+ public void getSelfProfileTest() throws IOException {
PowerMockito.mockStatic(AppUtils.class);
PowerMockito.mockStatic(UserUtils.class);
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
profileController.getSelfProfile(mockedRequest, mockedResponse);
}
-
+
@Test
- public void getSelfProfileExceptionTest(){
+ public void getSelfProfileExceptionTest() {
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
profileController.getSelfProfile(mockedRequest, mockedResponse);
}
-
+
@Test
- public void getUserTest() throws IOException{
+ public void getUserTest() throws IOException {
User user = new User();
user.setOrgUserId("test");
Long profileId = null;
@@ -209,99 +216,100 @@ public class ProfileControllerTest {
Mockito.when(mockedRequest.getRequestURI()).thenReturn("self_profile.htm");
Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("test");
Mockito.when(UserUtils.getUserSession(mockedRequest)).thenReturn(user);
- Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD")).thenReturn(new ArrayList<>());
+ Mockito.when(AppUtils.getLookupList("FN_LU_STATE", "STATE_CD", "STATE", null, "STATE_CD"))
+ .thenReturn(new ArrayList<>());
Mockito.when(userService.getUser(String.valueOf(profileId))).thenReturn(user);
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
profileController.getUser(mockedRequest, mockedResponse);
}
-
+
@Test
- public void getUserExceptionTest(){
+ public void getUserExceptionTest() {
profileController.getUser(mockedRequest, mockedResponse);
}
-
- /*@Test
- public void saveProfileTest() throws IOException{
- String json = "{\"role\":{\"id\":1,\"created\":null,\"modified\":null,\"createdId\":null,\"modifiedId\":null,\"rowNum\":null,\"auditUserId\":null,\"auditTrail\":null,\"name\":\"test1\",\"active\":false,\"priority\":\"1\",\"roleFunctions\":[],\"childRoles\":[],\"editUrl\":\"/role.htm?role_id=1\",\"toggleActiveImage\":\"/static/fusion/images/inactive.png\",\"toggleActiveAltText\":\"Click to Activate Role\"},\"childRoles\":[],\"roleFunctions\":[]}";
+
+ @Test
+ public void saveProfileTest() throws IOException {
+ String json = "{ \"profile\": {\"firstName\": \"Test\" }, \"selectedCountry\" : \"USA\", \"selectedState\" : \"DC\", \"selectedTimeZone\" : \"12345678920\", \"role\":{\"id\":1,\"created\":null,\"modified\":null,\"createdId\":null,\"modifiedId\":null,\"rowNum\":null,\"auditUserId\":null,\"auditTrail\":null,\"name\":\"test1\",\"active\":false,\"priority\":\"1\",\"roleFunctions\":[],\"childRoles\":[],\"editUrl\":\"/role.htm?role_id=1\",\"toggleActiveImage\":\"/static/fusion/images/inactive.png\",\"toggleActiveAltText\":\"Click to Activate Role\"},\"childRoles\":[],\"roleFunctions\":[]}";
Mockito.when(mockedRequest.getReader()).thenReturn(new BufferedReader(new StringReader(json)));
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
+ Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("123");
+ Mockito.when(userService.getUser(String.valueOf("123"))).thenReturn(new User());
assertNull(profileController.saveProfile(mockedRequest, mockedResponse));
- }*/
-
+ }
+
@Test
- public void saveProfilePrintWriterExceptionTest() throws IOException{
+ public void saveProfilePrintWriterExceptionTest() throws IOException {
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
assertNull(profileController.saveProfile(mockedRequest, mockedResponse));
}
-
- /*@SuppressWarnings("unchecked")
+
@Test
- public void saveProfileExceptionTest() throws IOException{
- StringWriter sw = new StringWriter();
- PrintWriter writer = new PrintWriter(sw);
- Mockito.when(mockedResponse.getWriter()).thenThrow(IOException.class);
- profileController.saveProfile(mockedRequest, mockedResponse);
- }*/
-
- /*@Test
- public void removeRoleTest() throws IOException{
+ public void removeRoleTest() throws IOException {
+ String json = "{ \"profile\": {\"firstName\": \"Test\" }, \"selectedCountry\" : \"USA\", \"selectedState\" : \"DC\", \"selectedTimeZone\" : \"12345678920\", \"role\":{\"id\":1,\"created\":null,\"modified\":null,\"createdId\":null,\"modifiedId\":null,\"rowNum\":null,\"auditUserId\":null,\"auditTrail\":null,\"name\":\"test1\",\"active\":false,\"priority\":\"1\",\"roleFunctions\":[],\"childRoles\":[],\"editUrl\":\"/role.htm?role_id=1\",\"toggleActiveImage\":\"/static/fusion/images/inactive.png\",\"toggleActiveAltText\":\"Click to Activate Role\"},\"childRoles\":[],\"roleFunctions\":[]}";
+ Mockito.when(mockedRequest.getReader()).thenReturn(new BufferedReader(new StringReader(json)));
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
- profileController.removeRole(mockedRequest, mockedResponse);
- }*/
-
+ Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("123");
+ Mockito.when(userService.getUser(String.valueOf("123"))).thenReturn(new User());
+ PowerMockito.mockStatic(SystemProperties.class);
+ Mockito.when(SystemProperties.getProperty(SystemProperties.APPLICATION_USER_ID)).thenReturn("123");
+ assertNull(profileController.removeRole(mockedRequest, mockedResponse));
+ }
+
@Test
- public void removeRolePrintWriterExceptionTest() throws IOException{
+ public void removeRolePrintWriterExceptionTest() throws IOException {
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
profileController.removeRole(mockedRequest, mockedResponse);
}
-
- /*@SuppressWarnings("unchecked")
+
@Test
- public void removeRoleExceptionTest() throws IOException{
- StringWriter sw = new StringWriter();
- PrintWriter writer = new PrintWriter(sw);
- Mockito.when(mockedResponse.getWriter()).thenThrow(IOException.class);
- profileController.removeRole(mockedRequest, mockedResponse);
- }*/
-
- /*@Test
- public void addNewRoleTest() throws IOException{
+ public void addNewRoleTest() throws IOException {
+
+ String json = "{ \"profile\": {\"firstName\": \"Test\" }, \"selectedCountry\" : \"USA\", \"selectedState\" : \"DC\", \"selectedTimeZone\" : \"12345678920\", \"role\":{\"id\":1,\"created\":null,\"modified\":null,\"createdId\":null,\"modifiedId\":null,\"rowNum\":null,\"auditUserId\":null,\"auditTrail\":null,\"name\":\"test1\",\"active\":false,\"priority\":\"1\",\"roleFunctions\":[],\"childRoles\":[],\"editUrl\":\"/role.htm?role_id=1\",\"toggleActiveImage\":\"/static/fusion/images/inactive.png\",\"toggleActiveAltText\":\"Click to Activate Role\"},\"childRoles\":[],\"roleFunctions\":[]}";
+ Mockito.when(mockedRequest.getReader()).thenReturn(new BufferedReader(new StringReader(json)));
+
+ Mockito.when(mockedRequest.getParameter("profile_id")).thenReturn("123");
+ Mockito.when(userService.getUser(String.valueOf("123"))).thenReturn(new User());
+
+ PowerMockito.mockStatic(SystemProperties.class);
+ Mockito.when(SystemProperties.getProperty(SystemProperties.APPLICATION_USER_ID)).thenReturn("123");
+
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
- profileController.addNewRole(mockedRequest, mockedResponse);
- }*/
-
+ assertNull(profileController.addNewRole(mockedRequest, mockedResponse));
+ }
+
@Test
- public void addNewRoleExceptionTest() throws IOException{
+ public void addNewRoleExceptionTest() throws IOException {
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
Mockito.when(mockedResponse.getWriter()).thenReturn(writer);
profileController.addNewRole(mockedRequest, mockedResponse);
}
-
+
@Test
- public void getViewNameTest(){
+ public void getViewNameTest() {
String actualResult = null;
profileController.setViewName(null);
String expectedResult = profileController.getViewName();
assertEquals(actualResult, expectedResult);
}
-
+
@SuppressWarnings({ "rawtypes", "null", "unchecked" })
@Test
- public void getAvailableRolesTest() throws IOException{
- List actualList = null;
+ public void getAvailableRolesTest() throws IOException {
+ List actualList = null;
List list = null;
Mockito.when(roleService.getAvailableRoles(null)).thenReturn(list);
List expectedList = profileController.getAvailableRoles(null);