Null check for ClientResponse in PolicyUril.java
[portal.git] / ecomp-portal-BE-common / src / test / java / org / openecomp / portalapp / portal / controller / AuditLogControllerTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the “License”);
10  * you may not use this software 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  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.portal.controller;
39
40 import javax.servlet.http.HttpServletRequest;
41 import javax.servlet.http.HttpServletResponse;
42
43 import org.junit.Before;
44 import org.junit.Test;
45 import org.junit.runner.RunWith;
46 import org.mockito.InjectMocks;
47 import org.mockito.Mock;
48 import org.mockito.Mockito;
49 import org.mockito.MockitoAnnotations;
50 import org.openecomp.portalapp.portal.framework.MockitoTestSuite;
51 import org.openecomp.portalapp.portal.controller.AuditLogController;
52 import org.openecomp.portalapp.portal.core.MockEPUser;
53 import org.openecomp.portalapp.portal.domain.EPUser;
54 import org.openecomp.portalapp.util.EPUserUtils;
55 import org.openecomp.portalsdk.core.service.AuditService;
56 import org.powermock.api.mockito.PowerMockito;
57 import org.powermock.core.classloader.annotations.PrepareForTest;
58 import org.powermock.modules.junit4.PowerMockRunner;
59
60 @RunWith(PowerMockRunner.class)
61 @PrepareForTest(EPUserUtils.class)
62 public class AuditLogControllerTest {
63
64         
65         @Mock
66         AuditService auditService;
67         
68         @InjectMocks
69      AuditLogController auditLogController = new AuditLogController();
70
71         @Before
72         public void setup() {
73                 MockitoAnnotations.initMocks(this);
74         }
75         
76         
77         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
78
79         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
80         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
81         NullPointerException nullPointerException = new NullPointerException();
82         MockEPUser mockUser = new MockEPUser();
83         @Test
84         public void auditLogTest()
85         {
86                 PowerMockito.mockStatic(EPUserUtils.class);
87                 EPUser user = mockUser.mockEPUser();
88                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user);
89                 Mockito.when(EPUserUtils.getUserId(mockedRequest)).thenReturn((int)1);
90                 auditLogController.auditLog(mockedRequest, "1", "app", "test");
91         }
92         
93         @Test
94         public void auditLogTabTest()
95         {
96                 PowerMockito.mockStatic(EPUserUtils.class);
97                 EPUser user = mockUser.mockEPUser();
98                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user);
99                 Mockito.when(EPUserUtils.getUserId(mockedRequest)).thenReturn((int)1);
100                 auditLogController.auditLog(mockedRequest, "1", "tab", "test");
101         }
102         
103         @Test
104         public void auditLogfunctionalTest()
105         {
106                 PowerMockito.mockStatic(EPUserUtils.class);
107                 EPUser user = mockUser.mockEPUser();
108                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user);
109                 Mockito.when(EPUserUtils.getUserId(mockedRequest)).thenReturn((int)1);
110                 auditLogController.auditLog(mockedRequest, "1", "functional", "test");
111         }
112         
113         @Test
114         public void auditLogleftMenuTest()
115         {
116                 PowerMockito.mockStatic(EPUserUtils.class);
117                 EPUser user = mockUser.mockEPUser();
118                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user);
119                 Mockito.when(EPUserUtils.getUserId(mockedRequest)).thenReturn((int)1);
120                 auditLogController.auditLog(mockedRequest, "1", "leftMenu", "test");
121         }
122         
123         @Test(expected = NumberFormatException.class)
124         public void auditLogExceptionTest()
125         {
126                 EPUser user = mockUser.mockEPUser();
127                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user);
128                 Mockito.when(EPUserUtils.getUserId(mockedRequest)).thenReturn((int)1);
129                 auditLogController.auditLog(mockedRequest, "1", "app", "test");
130         }
131         
132         @Test
133         public void auditLogerrorTest()
134         {
135                 EPUser user = mockUser.mockEPUser();
136                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenThrow(nullPointerException);
137                 auditLogController.auditLog(mockedRequest, "1", "app", "test");
138         }
139 }