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.
Add Support Same Request Matchers Checking
Closes spring-projectsgh-15982
- Loading branch information
1 parent
d4eff73
commit 4a1d129
Showing
3 changed files
with
117 additions
and
2 deletions.
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
88 changes: 88 additions & 0 deletions
88
...amework/security/config/annotation/web/builders/WebSecurityFilterChainValidatorTests.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,88 @@ | ||
/* | ||
* 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.config.annotation.web.builders; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
import org.springframework.security.web.DefaultSecurityFilterChain; | ||
import org.springframework.security.web.FilterChainProxy; | ||
import org.springframework.security.web.SecurityFilterChain; | ||
import org.springframework.security.web.UnreachableFilterChainException; | ||
import org.springframework.security.web.access.ExceptionTranslationFilter; | ||
import org.springframework.security.web.access.intercept.FilterSecurityInterceptor; | ||
import org.springframework.security.web.authentication.AnonymousAuthenticationFilter; | ||
import org.springframework.security.web.util.matcher.AntPathRequestMatcher; | ||
import org.springframework.security.web.util.matcher.AnyRequestMatcher; | ||
|
||
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; | ||
|
||
/** | ||
* Tests for {@link WebSecurityFilterChainValidator} | ||
* | ||
* @author Max Batischev | ||
*/ | ||
@ExtendWith(MockitoExtension.class) | ||
public class WebSecurityFilterChainValidatorTests { | ||
|
||
private final WebSecurityFilterChainValidator validator = new WebSecurityFilterChainValidator(); | ||
|
||
@Mock | ||
private AnonymousAuthenticationFilter authenticationFilter; | ||
|
||
@Mock | ||
private ExceptionTranslationFilter exceptionTranslationFilter; | ||
|
||
@Mock | ||
private FilterSecurityInterceptor authorizationInterceptor; | ||
|
||
@Test | ||
void validateWhenAnyRequestMatcherIsPresentThenUnreachableFilterChainException() { | ||
SecurityFilterChain chain1 = new DefaultSecurityFilterChain(AntPathRequestMatcher.antMatcher("/api"), | ||
this.authenticationFilter, this.exceptionTranslationFilter, this.authorizationInterceptor); | ||
SecurityFilterChain chain2 = new DefaultSecurityFilterChain(AnyRequestMatcher.INSTANCE, | ||
this.authenticationFilter, this.exceptionTranslationFilter, this.authorizationInterceptor); | ||
List<SecurityFilterChain> chains = new ArrayList<>(); | ||
chains.add(chain2); | ||
chains.add(chain1); | ||
FilterChainProxy proxy = new FilterChainProxy(chains); | ||
|
||
assertThatExceptionOfType(UnreachableFilterChainException.class) | ||
.isThrownBy(() -> this.validator.validate(proxy)); | ||
} | ||
|
||
@Test | ||
void validateWhenSameRequestMatchersArePresentThenUnreachableFilterChainException() { | ||
SecurityFilterChain chain1 = new DefaultSecurityFilterChain(AntPathRequestMatcher.antMatcher("/api"), | ||
this.authenticationFilter, this.exceptionTranslationFilter, this.authorizationInterceptor); | ||
SecurityFilterChain chain2 = new DefaultSecurityFilterChain(AntPathRequestMatcher.antMatcher("/api"), | ||
this.authenticationFilter, this.exceptionTranslationFilter, this.authorizationInterceptor); | ||
List<SecurityFilterChain> chains = new ArrayList<>(); | ||
chains.add(chain2); | ||
chains.add(chain1); | ||
FilterChainProxy proxy = new FilterChainProxy(chains); | ||
|
||
assertThatExceptionOfType(UnreachableFilterChainException.class) | ||
.isThrownBy(() -> this.validator.validate(proxy)); | ||
} | ||
|
||
} |
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