Browse Source

Fix mockito usage

pull/13766/head
Steve Riesenberg 2 years ago
parent
commit
1a45602dbb
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521
  1. 3
      config/src/test/java/org/springframework/security/config/annotation/web/configurers/HttpBasicConfigurerTests.java

3
config/src/test/java/org/springframework/security/config/annotation/web/configurers/HttpBasicConfigurerTests.java

@ -107,6 +107,7 @@ public class HttpBasicConfigurerTests { @@ -107,6 +107,7 @@ public class HttpBasicConfigurerTests {
@Test
public void httpBasicWhenUsingCustomAuthenticationEntryPointThenResponseIncludesBasicChallenge() throws Exception {
CustomAuthenticationEntryPointConfig.ENTRY_POINT = mock(AuthenticationEntryPoint.class);
this.spring.register(CustomAuthenticationEntryPointConfig.class).autowire();
this.mvc.perform(get("/"));
verify(CustomAuthenticationEntryPointConfig.ENTRY_POINT).commence(any(HttpServletRequest.class),
@ -239,7 +240,7 @@ public class HttpBasicConfigurerTests { @@ -239,7 +240,7 @@ public class HttpBasicConfigurerTests {
@EnableWebSecurity
static class CustomAuthenticationEntryPointConfig {
static AuthenticationEntryPoint ENTRY_POINT = mock(AuthenticationEntryPoint.class);
static AuthenticationEntryPoint ENTRY_POINT;
@Bean
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

Loading…
Cancel
Save