2  * ============LICENSE_START==========================================
 
   4  * ===================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ===================================================================
 
   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
 
  13  *             http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  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
 
  26  *             https://creativecommons.org/licenses/by/4.0/
 
  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.
 
  34  * ============LICENSE_END============================================
 
  36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  38 package org.onap.portalapp.portal.controller;
 
  40 import javax.servlet.http.HttpServletRequest;
 
  41 import javax.servlet.http.HttpServletResponse;
 
  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.onap.portalapp.portal.controller.AuditLogController;
 
  51 import org.onap.portalapp.portal.core.MockEPUser;
 
  52 import org.onap.portalapp.portal.domain.EPUser;
 
  53 import org.onap.portalapp.portal.framework.MockitoTestSuite;
 
  54 import org.onap.portalapp.util.EPUserUtils;
 
  55 import org.onap.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;
 
  60 @RunWith(PowerMockRunner.class)
 
  61 @PrepareForTest(EPUserUtils.class)
 
  62 public class AuditLogControllerTest {
 
  66         AuditService auditService;
 
  69      AuditLogController auditLogController = new AuditLogController();
 
  73                 MockitoAnnotations.initMocks(this);
 
  77         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
 
  79         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
 
  80         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
 
  81         NullPointerException nullPointerException = new NullPointerException();
 
  82         MockEPUser mockUser = new MockEPUser();
 
  84         public void auditLogTest()
 
  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");
 
  94         public void auditLogTabTest()
 
  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");
 
 104         public void auditLogfunctionalTest()
 
 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");
 
 114         public void auditLogleftMenuTest()
 
 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");
 
 123         @Test(expected = NumberFormatException.class)
 
 124         public void auditLogExceptionTest()
 
 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");
 
 133         public void auditLogerrorTest()
 
 135                 EPUser user = mockUser.mockEPUser();
 
 136                 Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenThrow(nullPointerException);
 
 137                 auditLogController.auditLog(mockedRequest, "1", "app", "test");