Correct spelling mistake in name of component
[portal/nonrtric-controlpanel.git] / webapp-backend / src / test / java / org / oransc / portal / nonrtric / controlpanel / portalapi / PortalAuthManagerTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * Modifications Copyright (C) 2020 Nordix Foundation
7  * %%
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ========================LICENSE_END===================================
20  */
21 package org.oransc.portal.nonrtric.controlpanel.portalapi;
22
23 import java.io.IOException;
24 import java.lang.invoke.MethodHandles;
25 import java.lang.reflect.InvocationTargetException;
26
27 import javax.servlet.ServletException;
28 import javax.servlet.http.Cookie;
29
30 import org.junit.Assert;
31 import org.junit.jupiter.api.Test;
32 import org.junit.jupiter.api.extension.ExtendWith;
33 import org.onap.portalsdk.core.onboarding.util.PortalApiConstants;
34 import org.oransc.portal.nonrtric.controlpanel.ControlPanelUserManager;
35 import org.oransc.portal.nonrtric.controlpanel.portalapi.PortalAuthManager;
36 import org.oransc.portal.nonrtric.controlpanel.portalapi.PortalAuthenticationFilter;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39 import org.springframework.beans.factory.annotation.Value;
40 import org.springframework.boot.test.context.SpringBootTest;
41 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
42 import org.springframework.mock.web.MockHttpServletRequest;
43 import org.springframework.mock.web.MockHttpServletResponse;
44 import org.springframework.test.context.ActiveProfiles;
45 import org.springframework.test.context.junit.jupiter.SpringExtension;
46
47 @ExtendWith(SpringExtension.class)
48 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
49 @ActiveProfiles("test")
50 public class PortalAuthManagerTest {
51
52     @Value("${portalapi.decryptor}")
53     private String decryptor;
54
55     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
56
57     @Test
58     public void testPortalStuff() throws ClassNotFoundException, InstantiationException, IllegalAccessException,
59         InvocationTargetException, NoSuchMethodException, IOException, ServletException {
60
61         PortalAuthManager m = new PortalAuthManager("app", "user", "secret", decryptor, "cookie");
62         Assert.assertNotNull(m.getAppCredentials());
63         String s = null;
64
65         MockHttpServletRequest request = new MockHttpServletRequest();
66         s = m.validateEcompSso(request);
67         logger.debug("validateEcompSso answers {}", s);
68         Assert.assertNull(s);
69
70         Cookie cookie = new Cookie(PortalApiConstants.EP_SERVICE, "bogus");
71         request.setCookies(cookie);
72         s = m.validateEcompSso(request);
73         logger.debug("validateEcompSso answers {}", s);
74         Assert.assertNull(s);
75
76         ControlPanelUserManager dum = new ControlPanelUserManager(true);
77         PortalAuthenticationFilter filter = new PortalAuthenticationFilter(false, m, dum);
78         filter.init(null);
79         filter.destroy();
80         MockHttpServletResponse response = new MockHttpServletResponse();
81         try {
82             filter.doFilter(request, response, null);
83         } catch (NullPointerException ex) {
84             logger.debug("chain is null");
85         }
86
87         filter = new PortalAuthenticationFilter(true, m, dum);
88         try {
89             filter.doFilter(request, response, null);
90         } catch (NullPointerException ex) {
91             logger.debug("chain is null");
92         }
93     }
94
95 }