diff --git a/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2AuthorizationManagersTests.java b/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2AuthorizationManagersTests.java index 487411ad18..e8e39d77c4 100644 --- a/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2AuthorizationManagersTests.java +++ b/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2AuthorizationManagersTests.java @@ -37,16 +37,16 @@ public class OAuth2AuthorizationManagersTests { void hasScopeWhenInvalidScopeThenThrowIllegalArgument() { String scope = "SCOPE_invalid"; assertThatExceptionOfType(IllegalArgumentException.class) - .isThrownBy(() -> OAuth2AuthorizationManagers.hasScope(scope)) - .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); + .isThrownBy(() -> OAuth2AuthorizationManagers.hasScope(scope)) + .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); } @Test void hasAnyScopeWhenInvalidScopeThenThrowIllegalArgument() { String[] scopes = { "read", "write", "SCOPE_invalid" }; assertThatExceptionOfType(IllegalArgumentException.class) - .isThrownBy(() -> OAuth2AuthorizationManagers.hasAnyScope(scopes)) - .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); + .isThrownBy(() -> OAuth2AuthorizationManagers.hasAnyScope(scopes)) + .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); } @Test @@ -55,7 +55,7 @@ public class OAuth2AuthorizationManagersTests { AuthorizationManager authorizationManager = OAuth2AuthorizationManagers.hasScope(scope); authorizationManager.verify(() -> hasScope(scope), new Object()); assertThatExceptionOfType(AccessDeniedException.class) - .isThrownBy(() -> authorizationManager.verify(() -> hasScope("wrong"), new Object())); + .isThrownBy(() -> authorizationManager.verify(() -> hasScope("wrong"), new Object())); } @Test @@ -66,7 +66,7 @@ public class OAuth2AuthorizationManagersTests { authorizationManager.verify(() -> hasScope(scope), new Object()); } assertThatExceptionOfType(AccessDeniedException.class) - .isThrownBy(() -> authorizationManager.verify(() -> hasScope("wrong"), new Object())); + .isThrownBy(() -> authorizationManager.verify(() -> hasScope("wrong"), new Object())); } Authentication hasScope(String scope) { diff --git a/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2ReactiveAuthorizationManagersTests.java b/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2ReactiveAuthorizationManagersTests.java index 8747b9c1ba..e2dd11c3c0 100644 --- a/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2ReactiveAuthorizationManagersTests.java +++ b/oauth2/oauth2-core/src/test/java/org/springframework/security/oauth2/core/authorization/OAuth2ReactiveAuthorizationManagersTests.java @@ -37,16 +37,16 @@ public class OAuth2ReactiveAuthorizationManagersTests { void hasScopeWhenInvalidScopeThenThrowIllegalArgument() { String scope = "SCOPE_invalid"; assertThatExceptionOfType(IllegalArgumentException.class) - .isThrownBy(() -> OAuth2ReactiveAuthorizationManagers.hasScope(scope)) - .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); + .isThrownBy(() -> OAuth2ReactiveAuthorizationManagers.hasScope(scope)) + .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); } @Test void hasAnyScopeWhenInvalidScopeThenThrowIllegalArgument() { String[] scopes = { "read", "write", "SCOPE_invalid" }; assertThatExceptionOfType(IllegalArgumentException.class) - .isThrownBy(() -> OAuth2ReactiveAuthorizationManagers.hasAnyScope(scopes)) - .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); + .isThrownBy(() -> OAuth2ReactiveAuthorizationManagers.hasAnyScope(scopes)) + .withMessageContaining("SCOPE_invalid should not start with SCOPE_"); } @Test @@ -55,19 +55,19 @@ public class OAuth2ReactiveAuthorizationManagersTests { ReactiveAuthorizationManager authorizationManager = OAuth2ReactiveAuthorizationManagers.hasScope(scope); authorizationManager.verify(hasScope(scope), new Object()).block(); assertThatExceptionOfType(AccessDeniedException.class) - .isThrownBy(() -> authorizationManager.verify(hasScope("wrong"), new Object()).block()); + .isThrownBy(() -> authorizationManager.verify(hasScope("wrong"), new Object()).block()); } @Test void hasAnyScopeWhenValidScopesThenAuthorizationManager() { String[] scopes = { "read", "write" }; ReactiveAuthorizationManager authorizationManager = OAuth2ReactiveAuthorizationManagers - .hasAnyScope(scopes); + .hasAnyScope(scopes); for (String scope : scopes) { authorizationManager.verify(hasScope(scope), new Object()).block(); } assertThatExceptionOfType(AccessDeniedException.class) - .isThrownBy(() -> authorizationManager.verify(hasScope("wrong"), new Object()).block()); + .isThrownBy(() -> authorizationManager.verify(hasScope("wrong"), new Object()).block()); } Mono hasScope(String scope) {