Class SecurityMockServerConfigurers.JwtMutator
java.lang.Object
org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.JwtMutator
- All Implemented Interfaces:
org.springframework.test.web.reactive.server.MockServerConfigurer,org.springframework.test.web.reactive.server.WebTestClientConfigurer
- Enclosing class:
- SecurityMockServerConfigurers
public static final class SecurityMockServerConfigurers.JwtMutator
extends Object
implements org.springframework.test.web.reactive.server.WebTestClientConfigurer, org.springframework.test.web.reactive.server.MockServerConfigurer
Updates the WebServerExchange using
{@link
SecurityMockServerConfigurers#mockAuthentication(Authentication)}.- Since:
- 5.2
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterConfigureAdded(org.springframework.test.web.reactive.server.WebTestClient.MockServerSpec<?> serverSpec) voidafterConfigurerAdded(org.springframework.test.web.reactive.server.WebTestClient.Builder builder, org.springframework.web.server.adapter.WebHttpHandlerBuilder httpHandlerBuilder, org.springframework.http.client.reactive.ClientHttpConnector connector) authorities(Collection<GrantedAuthority> authorities) Use the provided authorities in the tokenauthorities(org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>> authoritiesConverter) Provides the configuredJwtso that custom authorities can be derived from itauthorities(GrantedAuthority... authorities) Use the provided authorities in the tokenvoidbeforeServerCreated(org.springframework.web.server.adapter.WebHttpHandlerBuilder builder) jwt(Consumer<Jwt.Builder> jwtBuilderConsumer) Use the givenJwt.BuilderConsumerto configure the underlyingJwtThis method first creates a defaultJwt.Builderinstance with default values for thealg,sub, andscopeclaims.Use the givenJwt
-
Method Details
-
jwt
Use the givenJwt.BuilderConsumerto configure the underlyingJwtThis method first creates a defaultJwt.Builderinstance with default values for thealg,sub, andscopeclaims. TheConsumercan then modify these or provide additional configuration. CallingSecurityMockServerConfigurers.mockJwt()is the equivalent of callingSecurityMockMvcRequestPostProcessors.mockJwt().jwt(() -> {}).- Parameters:
jwtBuilderConsumer- For configuring the underlyingJwt- Returns:
- the
SecurityMockServerConfigurers.JwtMutatorfor further configuration
-
jwt
Use the givenJwt- Parameters:
jwt- TheJwtto use- Returns:
- the
SecurityMockServerConfigurers.JwtMutatorfor further configuration
-
authorities
public SecurityMockServerConfigurers.JwtMutator authorities(Collection<GrantedAuthority> authorities) Use the provided authorities in the token- Parameters:
authorities- the authorities to use- Returns:
- the
SecurityMockServerConfigurers.JwtMutatorfor further configuration
-
authorities
Use the provided authorities in the token- Parameters:
authorities- the authorities to use- Returns:
- the
SecurityMockServerConfigurers.JwtMutatorfor further configuration
-
authorities
public SecurityMockServerConfigurers.JwtMutator authorities(org.springframework.core.convert.converter.Converter<Jwt, Collection<GrantedAuthority>> authoritiesConverter) Provides the configuredJwtso that custom authorities can be derived from it- Parameters:
authoritiesConverter- the conversion strategy fromJwtto aCollectionofGrantedAuthoritys- Returns:
- the
SecurityMockServerConfigurers.JwtMutatorfor further configuration
-
beforeServerCreated
public void beforeServerCreated(org.springframework.web.server.adapter.WebHttpHandlerBuilder builder) - Specified by:
beforeServerCreatedin interfaceorg.springframework.test.web.reactive.server.MockServerConfigurer
-
afterConfigureAdded
public void afterConfigureAdded(org.springframework.test.web.reactive.server.WebTestClient.MockServerSpec<?> serverSpec) - Specified by:
afterConfigureAddedin interfaceorg.springframework.test.web.reactive.server.MockServerConfigurer
-
afterConfigurerAdded
public void afterConfigurerAdded(org.springframework.test.web.reactive.server.WebTestClient.Builder builder, @Nullable org.springframework.web.server.adapter.WebHttpHandlerBuilder httpHandlerBuilder, @Nullable org.springframework.http.client.reactive.ClientHttpConnector connector) - Specified by:
afterConfigurerAddedin interfaceorg.springframework.test.web.reactive.server.WebTestClientConfigurer
-