AuthorizationWebFilter handles null Authentication
If the AuthorizationManager used the Authentication and the Authentication was null the AuthorizationWebFilter would produce a NullPointerException This commit fixes the test to ensure that Authentication is subscribed to and ensures that the Authentication is not null Fixes: gh-4966
This commit is contained in:
@@ -63,7 +63,7 @@ public class AuthorizationWebFilterTests {
|
||||
@Test
|
||||
public void filterWhenNoAuthenticationThenThrowsAccessDenied() {
|
||||
when(this.chain.filter(this.exchange)).thenReturn(this.chainResult.mono());
|
||||
AuthorizationWebFilter filter = new AuthorizationWebFilter((a, e) -> Mono.error(new AccessDeniedException("Denied")));
|
||||
AuthorizationWebFilter filter = new AuthorizationWebFilter((a, e) -> a.flatMap(auth -> Mono.error(new AccessDeniedException("Denied"))));
|
||||
|
||||
Mono<Void> result = filter
|
||||
.filter(this.exchange, this.chain)
|
||||
|
||||
Reference in New Issue
Block a user