Fix imports
This commit is contained in:
parent
97ec5c921e
commit
2ee8f27997
|
@ -17,10 +17,11 @@
|
||||||
package org.springframework.security.oauth2.core;
|
package org.springframework.security.oauth2.core;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import org.springframework.security.authorization.AuthorityAuthorizationManager;
|
import org.springframework.security.authorization.AuthorityAuthorizationManager;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThatThrownBy;
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for {@link OAuth2AuthorizationManagers}
|
* Tests for {@link OAuth2AuthorizationManagers}
|
||||||
|
@ -32,15 +33,17 @@ public class OAuth2AuthorizationManagersTests {
|
||||||
@Test
|
@Test
|
||||||
void hasScope_withInvalidScope_shouldThrowIllegalArgumentException() {
|
void hasScope_withInvalidScope_shouldThrowIllegalArgumentException() {
|
||||||
String scope = "SCOPE_invalid";
|
String scope = "SCOPE_invalid";
|
||||||
assertThatThrownBy(() -> OAuth2AuthorizationManagers.hasScope(scope))
|
assertThatExceptionOfType(IllegalArgumentException.class)
|
||||||
.isInstanceOf(IllegalArgumentException.class);
|
.isThrownBy(() -> OAuth2AuthorizationManagers.hasScope(scope))
|
||||||
|
.withMessage("Scope 'SCOPE_invalid' start with 'SCOPE_' prefix.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void hasScopes_withInvalidScope_shouldThrowIllegalArgumentException() {
|
void hasScopes_withInvalidScope_shouldThrowIllegalArgumentException() {
|
||||||
String[] scopes = { "read", "write", "SCOPE_invalid" };
|
String[] scopes = { "read", "write", "SCOPE_invalid" };
|
||||||
assertThatThrownBy(() -> OAuth2AuthorizationManagers.hasAnyScope(scopes))
|
assertThatExceptionOfType(IllegalArgumentException.class)
|
||||||
.isInstanceOf(IllegalArgumentException.class);
|
.isThrownBy(() -> OAuth2AuthorizationManagers.hasAnyScope(scopes))
|
||||||
|
.withMessage("Scope 'SCOPE_invalid' start with 'SCOPE_' prefix.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue