caf3ac420664a47f1c9ba8c861fcb53c321c165b
[portal.git] / ecomp-portal-BE-common / src / test / java / org / onap / portalapp / portal / controller / WebAnalyticsExtAppControllerTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017-2018 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  * 
37  */
38 package org.onap.portalapp.portal.controller;
39
40 import static org.junit.Assert.*;
41
42 import java.io.InputStream;
43 import java.nio.charset.StandardCharsets;
44
45 import javax.servlet.http.HttpServletRequest;
46 import javax.servlet.http.HttpServletResponse;
47
48 import org.apache.commons.io.IOUtils;
49 import org.junit.Before;
50 import org.junit.Test;
51 import org.junit.runner.RunWith;
52 import org.mockito.InjectMocks;
53 import org.mockito.Mock;
54 import org.mockito.Mockito;
55 import org.mockito.MockitoAnnotations;
56 import org.onap.portalapp.portal.controller.WebAnalyticsExtAppController;
57 import org.onap.portalapp.portal.domain.EPApp;
58 import org.onap.portalapp.portal.framework.MockitoTestSuite;
59 import org.onap.portalapp.portal.service.AdminRolesService;
60 import org.onap.portalapp.portal.service.AdminRolesServiceImpl;
61 import org.onap.portalapp.portal.service.AppsCacheService;
62 import org.onap.portalapp.portal.service.AppsCacheServiceImple;
63 import org.onap.portalapp.portal.transport.Analytics;
64 import org.onap.portalsdk.core.onboarding.crossapi.PortalAPIResponse;
65 import org.onap.portalsdk.core.service.AuditService;
66 import org.onap.portalsdk.core.service.AuditServiceImpl;
67 import org.onap.portalsdk.core.util.SystemProperties;
68 import org.powermock.api.mockito.PowerMockito;
69 import org.powermock.core.classloader.annotations.PrepareForTest;
70 import org.powermock.modules.junit4.PowerMockRunner;
71
72
73 @RunWith(PowerMockRunner.class)
74 @PrepareForTest({SystemProperties.class,IOUtils.class,Object.class})
75 public class WebAnalyticsExtAppControllerTest {
76
77         
78         
79         @InjectMocks
80         WebAnalyticsExtAppController webAnalyticsExtAppController = new WebAnalyticsExtAppController();
81
82         @Mock
83         AdminRolesService adminRolesService = new AdminRolesServiceImpl();
84         
85         @Mock
86         AppsCacheService appCacheService = new AppsCacheServiceImple();
87
88         @Mock
89         AuditService auditService = new AuditServiceImpl();
90         @Mock
91         Analytics analytics;
92         
93
94 //      @Mock 
95 //      InputStream analyticsFileStream;
96
97
98         @Before
99         public void setup() {
100                 MockitoAnnotations.initMocks(this);
101         }
102
103         MockitoTestSuite mockitoTestSuite = new MockitoTestSuite();
104
105         HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest();
106         HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse();
107         NullPointerException nullPointerException = new NullPointerException();
108         
109         /*@Test
110         public void getAnalyticsScriptTest() throws Exception
111         {
112                 String expectedResponse = "http://www.ecomp.com";
113
114                 InputStream analyticsFileStream = null;
115                 PowerMockito.mockStatic(SystemProperties.class);
116                 PowerMockito.mockStatic(IOUtils.class);
117                 Mockito.when(IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name())).thenReturn("PORTAL_ENV_URL");
118                 Mockito.when(SystemProperties.getProperty("frontend_url")).thenReturn("http://www.ecomp.com/test");
119                 String actualResponse = webAnalyticsExtAppController.getAnalyticsScript(mockedRequest);
120 //      assertNull(webAnalyticsExtAppController.getAnalyticsScript(mockedRequest));
121                 
122         //      System.out.println(actualResponse);
123                 assertTrue(actualResponse.equals(expectedResponse));    
124         }*/
125
126         /*@Test
127         public void getAnalyticsScriptExceptionTest() throws Exception
128         {
129                 String expectedResponse = "";
130                 InputStream analyticsFileStream = null;
131                 PowerMockito.mockStatic(SystemProperties.class);
132                 PowerMockito.mockStatic(IOUtils.class);
133                 Mockito.when(IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name())).thenThrow(nullPointerException);
134                 Mockito.when(SystemProperties.getProperty("frontend_url")).thenReturn("http://www.ecomp.com/test");
135        String actualResponse = webAnalyticsExtAppController.getAnalyticsScript(mockedRequest);
136           assertEquals(actualResponse,expectedResponse);
137         }*/
138
139         @Test
140         public void storeAnalyticsScriptIfAnalyticsNullTest() throws Exception
141         {
142                 PortalAPIResponse       expectedPortalAPIResponse = new PortalAPIResponse(true, "error");
143                 Analytics analytics= null;
144                 Mockito.when(mockedRequest.getHeader("uebkey")).thenReturn(null);
145                 PortalAPIResponse       actualPortalAPIResponse =       webAnalyticsExtAppController.storeAnalyticsScript(mockedRequest, analytics);
146                 assertTrue(expectedPortalAPIResponse.getMessage().equals(actualPortalAPIResponse.getMessage()));
147                 assertTrue(expectedPortalAPIResponse.getStatus().equals(actualPortalAPIResponse.getStatus()));  
148         }
149         
150         @Test
151         public void storeAnalyticsScriptIfAnalyticsTest() throws Exception
152         {
153                 PortalAPIResponse       expectedPortalAPIResponse = new PortalAPIResponse(true, "ok");          
154                 expectedPortalAPIResponse.setMessage("success");
155                 EPApp appRecord =new EPApp();
156                 appRecord.setName("test");
157                 Mockito.when(mockedRequest.getHeader("uebkey")).thenReturn("test");
158                 Mockito.when(analytics.getUserid()).thenReturn("test");
159                 Mockito.when(analytics.getFunction()).thenReturn("test");
160                 PortalAPIResponse       actualPortalAPIResponse =       webAnalyticsExtAppController.storeAnalyticsScript(mockedRequest, analytics);
161                 assertTrue(expectedPortalAPIResponse.getMessage().equals(actualPortalAPIResponse.getMessage()));
162                 assertTrue(expectedPortalAPIResponse.getStatus().equals(actualPortalAPIResponse.getStatus()));  
163         }
164         
165         
166         @Test(expected = NullPointerException.class)
167         public void testGetAnalyticsScript() {
168                 PowerMockito.mockStatic(SystemProperties.class);
169                 Mockito.when(SystemProperties.getProperty("frontend_url")).thenReturn("http://www.ecomp.com/test");
170                  webAnalyticsExtAppController.getAnalyticsScript(mockedRequest);
171                 
172         }
173                 
174 }