forked from spring-projects/spring-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Method Security Exclude ExceptionHandler annotation method
Closes spring-projectsgh-15352
- Loading branch information
Showing
2 changed files
with
125 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
...mework/security/test/web/servlet/request/SecurityMockMvcRequestExceptionHandlerTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Copyright 2002-2024 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. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.test.web.servlet.request; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.security.access.AccessDeniedException; | ||
import org.springframework.security.access.prepost.PreAuthorize; | ||
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity; | ||
import org.springframework.security.config.annotation.web.builders.HttpSecurity; | ||
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; | ||
import org.springframework.security.test.context.support.WithMockUser; | ||
import org.springframework.security.web.SecurityFilterChain; | ||
import org.springframework.test.context.ContextConfiguration; | ||
import org.springframework.test.context.junit.jupiter.SpringExtension; | ||
import org.springframework.test.context.web.WebAppConfiguration; | ||
import org.springframework.test.web.servlet.MockMvc; | ||
import org.springframework.test.web.servlet.setup.MockMvcBuilders; | ||
import org.springframework.web.bind.annotation.ExceptionHandler; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
import org.springframework.web.context.WebApplicationContext; | ||
import org.springframework.web.servlet.config.annotation.EnableWebMvc; | ||
|
||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; | ||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; | ||
|
||
/** | ||
* SecurityMockMvcRequestExceptionHandlerTests | ||
* | ||
* @author DingHao | ||
*/ | ||
@ExtendWith(SpringExtension.class) | ||
@ContextConfiguration(classes = SecurityMockMvcRequestExceptionHandlerTests.Config.class) | ||
@WebAppConfiguration | ||
public class SecurityMockMvcRequestExceptionHandlerTests { | ||
|
||
@Autowired | ||
private WebApplicationContext context; | ||
|
||
private MockMvc mvc; | ||
|
||
@BeforeEach | ||
public void setup() { | ||
this.mvc = MockMvcBuilders.webAppContextSetup(this.context).build(); | ||
} | ||
|
||
@Test | ||
@WithMockUser | ||
public void testMethodSecurityWithExceptionHandler() throws Exception { | ||
this.mvc.perform(get("/")).andExpect(status().is2xxSuccessful()); | ||
} | ||
|
||
@Configuration | ||
@EnableWebSecurity | ||
@EnableMethodSecurity | ||
@EnableWebMvc | ||
static class Config { | ||
|
||
@Bean | ||
SecurityFilterChain filterChain(HttpSecurity http) throws Exception { | ||
return http.authorizeHttpRequests((c) -> c.anyRequest().authenticated()).build(); | ||
} | ||
|
||
@RestController | ||
@PreAuthorize("hasRole('ADMIN')") | ||
static class TestRestApi { | ||
|
||
@RequestMapping("/") | ||
String get() { | ||
return "Hello"; | ||
} | ||
|
||
@ExceptionHandler | ||
private ResponseEntity<String> handleAccessDeniedException(AccessDeniedException e) { | ||
return ResponseEntity.ok(e.getMessage()); | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
} |