Revise user controller to answer real data
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / config / WebSecurityMockConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard.config;
21
22 import java.lang.invoke.MethodHandles;
23
24 import org.oransc.ric.portal.dashboard.DashboardConstants;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.beans.factory.annotation.Value;
28 import org.springframework.context.annotation.Configuration;
29 import org.springframework.context.annotation.Profile;
30 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
31 import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
32 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
33 import org.springframework.security.config.annotation.web.builders.WebSecurity;
34 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
35 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
36 import org.springframework.security.crypto.factory.PasswordEncoderFactories;
37 import org.springframework.security.crypto.password.PasswordEncoder;
38
39 @Configuration
40 @EnableWebSecurity
41 @EnableGlobalMethodSecurity(securedEnabled = true)
42 @Profile("test")
43 public class WebSecurityMockConfiguration extends WebSecurityConfigurerAdapter {
44
45         public static final String TEST_CRED_ADMIN = "admin";
46         public static final String TEST_CRED_STANDARD = "standard";
47
48         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
49
50         public WebSecurityMockConfiguration(@Value("${userfile}") final String userFilePath) {
51                 logger.debug("ctor: user file path {}", userFilePath);
52         }
53
54         @Override
55         protected void configure(AuthenticationManagerBuilder auth) throws Exception {
56                 PasswordEncoder encoder = PasswordEncoderFactories.createDelegatingPasswordEncoder();
57                 auth.inMemoryAuthentication() //
58                                 .passwordEncoder(encoder) //
59                                 // The admin user has the admin AND standard roles
60                                 .withUser(TEST_CRED_ADMIN) //
61                                 .password(encoder.encode(TEST_CRED_ADMIN))
62                                 .roles(DashboardConstants.ROLE_NAME_ADMIN, DashboardConstants.ROLE_NAME_STANDARD)//
63                                 .and()//
64                                 // The standard user has only the standard role
65                                 .withUser(TEST_CRED_STANDARD) //
66                                 .password(encoder.encode(TEST_CRED_STANDARD)) //
67                                 .roles(DashboardConstants.ROLE_NAME_STANDARD);
68         }
69
70         @Override
71         protected void configure(HttpSecurity http) throws Exception {
72                 http.authorizeRequests().anyRequest().authenticated()//
73                                 .and().httpBasic() //
74                                 .and().csrf().disable();
75         }
76
77         @Override
78         public void configure(WebSecurity web) throws Exception {
79                 // This disables Spring security, but not the app's filter.
80                 web.ignoring().antMatchers(WebSecurityConfiguration.OPEN_PATHS);
81                 web.ignoring().antMatchers("/", "/csrf"); // allow swagger-ui to load
82         }
83
84 }