|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright 2002-2018 the original author or authors.
|
|
|
+ * Copyright 2002-2019 the original author or authors.
|
|
|
*
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
* you may not use this file except in compliance with the License.
|
|
@@ -18,18 +18,22 @@ package org.springframework.security.config.annotation.web.configurers;
|
|
|
import org.junit.Rule;
|
|
|
import org.junit.Test;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
|
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
|
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
|
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
|
|
import org.springframework.security.config.test.SpringTestRule;
|
|
|
import org.springframework.security.core.annotation.AuthenticationPrincipal;
|
|
|
+import org.springframework.security.core.userdetails.PasswordEncodedUser;
|
|
|
import org.springframework.test.web.servlet.MockMvc;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
|
|
|
|
|
|
+import static org.springframework.security.config.Customizer.withDefaults;
|
|
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
|
|
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
|
|
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
|
|
|
|
|
/**
|
|
|
* @author Rob Winch
|
|
@@ -44,7 +48,7 @@ public class AnonymousConfigurerTests {
|
|
|
|
|
|
@Test
|
|
|
public void requestWhenAnonymousTwiceInvokedThenDoesNotOverride() throws Exception {
|
|
|
- this.spring.register(InvokeTwiceDoesNotOverride.class).autowire();
|
|
|
+ this.spring.register(InvokeTwiceDoesNotOverride.class, PrincipalController.class).autowire();
|
|
|
|
|
|
this.mockMvc.perform(get("/"))
|
|
|
.andExpect(content().string("principal"));
|
|
@@ -63,13 +67,99 @@ public class AnonymousConfigurerTests {
|
|
|
.and()
|
|
|
.anonymous();
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void requestWhenAnonymousPrincipalInLambdaThenPrincipalUsed() throws Exception {
|
|
|
+ this.spring.register(AnonymousPrincipalInLambdaConfig.class, PrincipalController.class).autowire();
|
|
|
+
|
|
|
+ this.mockMvc.perform(get("/"))
|
|
|
+ .andExpect(content().string("principal"));
|
|
|
+ }
|
|
|
+
|
|
|
+ @EnableWebSecurity
|
|
|
+ @EnableWebMvc
|
|
|
+ static class AnonymousPrincipalInLambdaConfig extends WebSecurityConfigurerAdapter {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void configure(HttpSecurity http) throws Exception {
|
|
|
+ // @formatter:off
|
|
|
+ http
|
|
|
+ .anonymous(anonymous ->
|
|
|
+ anonymous
|
|
|
+ .principal("principal")
|
|
|
+ );
|
|
|
+ // @formatter:on
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void requestWhenAnonymousDisabledInLambdaThenRespondsWithForbidden() throws Exception {
|
|
|
+ this.spring.register(AnonymousDisabledInLambdaConfig.class, PrincipalController.class).autowire();
|
|
|
+
|
|
|
+ this.mockMvc.perform(get("/"))
|
|
|
+ .andExpect(status().isForbidden());
|
|
|
+ }
|
|
|
+
|
|
|
+ @EnableWebSecurity
|
|
|
+ static class AnonymousDisabledInLambdaConfig extends WebSecurityConfigurerAdapter {
|
|
|
+ @Override
|
|
|
+ protected void configure(HttpSecurity http) throws Exception {
|
|
|
+ // @formatter:off
|
|
|
+ http
|
|
|
+ .authorizeRequests(authorizeRequests ->
|
|
|
+ authorizeRequests
|
|
|
+ .anyRequest().permitAll()
|
|
|
+ )
|
|
|
+ .anonymous(AbstractHttpConfigurer::disable);
|
|
|
+ // @formatter:on
|
|
|
+ }
|
|
|
+
|
|
|
+ protected void configure(AuthenticationManagerBuilder auth) throws Exception {
|
|
|
+ // @formatter:off
|
|
|
+ auth
|
|
|
+ .inMemoryAuthentication()
|
|
|
+ .withUser(PasswordEncodedUser.user());
|
|
|
+ // @formatter:on
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void requestWhenAnonymousWithDefaultsInLambdaThenRespondsWithOk() throws Exception {
|
|
|
+ this.spring.register(AnonymousWithDefaultsInLambdaConfig.class, PrincipalController.class).autowire();
|
|
|
+
|
|
|
+ this.mockMvc.perform(get("/"))
|
|
|
+ .andExpect(status().isOk());
|
|
|
+ }
|
|
|
+
|
|
|
+ @EnableWebSecurity
|
|
|
+ static class AnonymousWithDefaultsInLambdaConfig extends WebSecurityConfigurerAdapter {
|
|
|
+ @Override
|
|
|
+ protected void configure(HttpSecurity http) throws Exception {
|
|
|
+ // @formatter:off
|
|
|
+ http
|
|
|
+ .authorizeRequests(authorizeRequests ->
|
|
|
+ authorizeRequests
|
|
|
+ .anyRequest().permitAll()
|
|
|
+ )
|
|
|
+ .anonymous(withDefaults());
|
|
|
+ // @formatter:on
|
|
|
+ }
|
|
|
+
|
|
|
+ protected void configure(AuthenticationManagerBuilder auth) throws Exception {
|
|
|
+ // @formatter:off
|
|
|
+ auth
|
|
|
+ .inMemoryAuthentication()
|
|
|
+ .withUser(PasswordEncodedUser.user());
|
|
|
+ // @formatter:on
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- @RestController
|
|
|
- static class PrincipalController {
|
|
|
- @GetMapping("/")
|
|
|
- String principal(@AuthenticationPrincipal String principal) {
|
|
|
- return principal;
|
|
|
- }
|
|
|
+ @RestController
|
|
|
+ static class PrincipalController {
|
|
|
+ @GetMapping("/")
|
|
|
+ String principal(@AuthenticationPrincipal String principal) {
|
|
|
+ return principal;
|
|
|
}
|
|
|
}
|
|
|
}
|