720f6ca767dd60ea69373c5442f24639adb11079
[policy/engine.git] / POLICY-SDK-APP / src / test / java / org / onap / policy / controller / PolicyRolesControllerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * POLICY-SDK-APP
4  * ================================================================================
5  * Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.controller;
24
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
29
30 import java.io.BufferedReader;
31 import java.io.StringReader;
32 import java.io.UnsupportedEncodingException;
33
34 import javax.servlet.http.HttpServletRequest;
35 import javax.servlet.http.HttpSession;
36
37 import org.junit.Before;
38 import org.junit.Test;
39 import org.mockito.Mockito;
40 import org.onap.policy.common.logging.flexlogger.FlexLogger;
41 import org.onap.policy.common.logging.flexlogger.Logger;
42 import org.onap.policy.rest.dao.CommonClassDao;
43 import org.onap.portalsdk.core.domain.User;
44 import org.onap.portalsdk.core.util.SystemProperties;
45 import org.springframework.mock.web.MockHttpServletResponse;
46
47 public class PolicyRolesControllerTest {
48     private static Logger logger = FlexLogger.getLogger(PolicyRolesControllerTest.class);
49     private HttpServletRequest request = null;
50     private MockHttpServletResponse response = null;
51     private PolicyRolesController controller = null;
52     private static CommonClassDao commonClassDao;
53
54     @Before
55     public void setUp() throws Exception {
56         logger.info("setUp: Entering");
57         controller = new PolicyRolesController();
58         commonClassDao = Mockito.mock(CommonClassDao.class);
59         request = mock(HttpServletRequest.class);
60         response = new MockHttpServletResponse();
61         controller.setCommonClassDao(commonClassDao);
62
63         HttpSession mockSession = mock(HttpSession.class);
64         User user = new User();
65         user.setOrgUserId("Test");
66         Mockito.when(mockSession.getAttribute(SystemProperties.getProperty("user_attribute_name"))).thenReturn(user);
67         Mockito.when(request.getSession(false)).thenReturn(mockSession);
68
69         logger.info("setUp: exit");
70     }
71
72     @Test
73     public void testGetPolicyRolesEntityData() {
74         try {
75             controller.getPolicyRolesEntityData(request, response);
76             assertTrue(response.getContentAsString() != null && response.getContentAsString().contains("rolesDatas"));
77         } catch (UnsupportedEncodingException e) {
78             logger.error("Exception Occured" + e);
79             fail();
80         }
81     }
82
83     @Test
84     public void testGetPolicyScopesEntityData() {
85         try {
86             controller.getPolicyScopesEntityData(request, response);
87             assertTrue(response.getContentAsString() != null && response.getContentAsString().contains("scopeDatas"));
88         } catch (UnsupportedEncodingException e) {
89             logger.error("Exception Occured" + e);
90             fail();
91         }
92     }
93
94     @Test
95     public void testSaveRolesEntityData() {
96         logger.info("PolicyRolesControllerTest: Entering");
97         String jsonString =
98                 "{\"editRoleData\": {\"id\": 1,\"loginId\": {\"userLoginId\" : \"test\", \"userName\" : \"test\"},"
99                         + "\"role\":\"test\",\"scope\":[\"scope\"]}}";
100         try (BufferedReader br = new BufferedReader(new StringReader(jsonString))) {
101             when(request.getReader()).thenReturn(br);
102             controller.SaveRolesEntityData(request, response);
103             logger.info("response.getContentAsString(): " + response.getContentAsString());
104             assertTrue(response.getContentAsString() != null && response.getContentAsString().contains("rolesDatas"));
105         } catch (Exception e) {
106             fail("Exception: " + e);
107         }
108         logger.info("PolicyRolesControllerTest: exit");
109     }
110 }