测试 OAuth 2.0
在 OAuth 2.0 方面,前面介绍的相同原则仍然适用:最终取决于被测试方法期望在 `SecurityContextHolder` 中包含什么。
例如,对于如下所示的控制器
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(Principal user) {
return user.getName();
}
@GetMapping("/endpoint")
fun foo(user: Principal): String {
return user.name
}
它没有与 OAuth2 特定的内容,因此您可能只需使用 `@WithMockUser` 就足够了。
但是,如果您的控制器与 Spring Security 的 OAuth 2.0 支持的某些方面绑定,如下所示
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@AuthenticationPrincipal OidcUser user) {
return user.getIdToken().getSubject();
}
@GetMapping("/endpoint")
fun foo(@AuthenticationPrincipal user: OidcUser): String {
return user.idToken.subject
}
那么 Spring Security 的测试支持就会派上用场。
测试 OIDC 登录
使用 Spring MVC Test 测试上述方法需要使用授权服务器模拟某种授权流程。当然,这是一项艰巨的任务,这就是为什么 Spring Security 提供了移除此样板代码的支持。
例如,我们可以告诉 Spring Security 使用 `oidcLogin` `RequestPostProcessor` 包含默认的 `OidcUser`,如下所示
-
Java
-
Kotlin
mvc
.perform(get("/endpoint").with(oidcLogin()));
mvc.get("/endpoint") {
with(oidcLogin())
}
这将使用包含简单 `OidcIdToken`、`OidcUserInfo` 和授予权限的 `Collection` 的 `OidcUser` 配置关联的 `MockHttpServletRequest`。
具体来说,它将包含一个 `OidcIdToken`,其 `sub` 字段设置为 `user`
-
Java
-
Kotlin
assertThat(user.getIdToken().getClaim("sub")).isEqualTo("user");
assertThat(user.idToken.getClaim<String>("sub")).isEqualTo("user")
一个没有设置任何声明的 `OidcUserInfo`
-
Java
-
Kotlin
assertThat(user.getUserInfo().getClaims()).isEmpty();
assertThat(user.userInfo.claims).isEmpty()
以及一个只有一个权限的 `Collection` 权限,`SCOPE_read`
-
Java
-
Kotlin
assertThat(user.getAuthorities()).hasSize(1);
assertThat(user.getAuthorities()).containsExactly(new SimpleGrantedAuthority("SCOPE_read"));
assertThat(user.authorities).hasSize(1)
assertThat(user.authorities).containsExactly(SimpleGrantedAuthority("SCOPE_read"))
Spring Security 会完成必要的工作,以确保 `OidcUser` 实例可用于`@AuthenticationPrincipal` 注解。
此外,它还将该 `OidcUser` 链接到一个简单的 `OAuth2AuthorizedClient` 实例,并将其放入模拟的 `OAuth2AuthorizedClientRepository` 中。如果您的测试使用 `@RegisteredOAuth2AuthorizedClient` 注解,这将非常有用。
配置权限
在许多情况下,您的方法受过滤器或方法安全保护,并且需要您的 `Authentication` 具有某些已授予的权限才能允许请求。
在这种情况下,您可以使用 `authorities()` 方法提供所需的已授予权限
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(oidcLogin()
.authorities(new SimpleGrantedAuthority("SCOPE_message:read"))
)
);
mvc.get("/endpoint") {
with(oidcLogin()
.authorities(SimpleGrantedAuthority("SCOPE_message:read"))
)
}
配置声明
虽然授权机构在Spring Security中非常常见,但在OAuth 2.0的情况下,我们还有声明(claims)。
例如,假设您有一个user_id
声明,它指示系统中用户的ID。您可以在控制器中像这样访问它:
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@AuthenticationPrincipal OidcUser oidcUser) {
String userId = oidcUser.getIdToken().getClaim("user_id");
// ...
}
@GetMapping("/endpoint")
fun foo(@AuthenticationPrincipal oidcUser: OidcUser): String {
val userId = oidcUser.idToken.getClaim<String>("user_id")
// ...
}
在这种情况下,您需要使用idToken()
方法指定该声明
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(oidcLogin()
.idToken(token -> token.claim("user_id", "1234"))
)
);
mvc.get("/endpoint") {
with(oidcLogin()
.idToken {
it.claim("user_id", "1234")
}
)
}
因为OidcUser
从OidcIdToken
收集它的声明。
其他配置
还有其他方法可以进一步配置身份验证;这仅仅取决于您的控制器期望什么数据。
-
userInfo(OidcUserInfo.Builder)
- 用于配置OidcUserInfo
实例 -
clientRegistration(ClientRegistration)
- 用于使用给定的ClientRegistration
配置关联的OAuth2AuthorizedClient
-
oidcUser(OidcUser)
- 用于配置完整的OidcUser
实例
如果您:1. 有自己的OidcUser
实现,或 2. 需要更改名称属性,则最后一个方法非常方便。
例如,假设您的授权服务器在user_name
声明中而不是sub
声明中发送主体名称。在这种情况下,您可以手动配置OidcUser
-
Java
-
Kotlin
OidcUser oidcUser = new DefaultOidcUser(
AuthorityUtils.createAuthorityList("SCOPE_message:read"),
OidcIdToken.withTokenValue("id-token").claim("user_name", "foo_user").build(),
"user_name");
mvc
.perform(get("/endpoint")
.with(oidcLogin().oidcUser(oidcUser))
);
val oidcUser: OidcUser = DefaultOidcUser(
AuthorityUtils.createAuthorityList("SCOPE_message:read"),
OidcIdToken.withTokenValue("id-token").claim("user_name", "foo_user").build(),
"user_name"
)
mvc.get("/endpoint") {
with(oidcLogin().oidcUser(oidcUser))
}
测试OAuth 2.0登录
与测试OIDC登录一样,测试OAuth 2.0登录也面临着模拟授权流程的类似挑战。因此,Spring Security也为非OIDC用例提供了测试支持。
假设我们有一个控制器,它将登录用户作为OAuth2User
获取
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@AuthenticationPrincipal OAuth2User oauth2User) {
return oauth2User.getAttribute("sub");
}
@GetMapping("/endpoint")
fun foo(@AuthenticationPrincipal oauth2User: OAuth2User): String? {
return oauth2User.getAttribute("sub")
}
在这种情况下,我们可以告诉Spring Security使用oauth2Login
RequestPostProcessor
包含默认的OAuth2User
,如下所示:
-
Java
-
Kotlin
mvc
.perform(get("/endpoint").with(oauth2Login()));
mvc.get("/endpoint") {
with(oauth2Login())
}
这将使用包含属性的简单Map
和授权机构的Collection
的OAuth2User
配置关联的MockHttpServletRequest
。
具体来说,它将包含一个键/值对为sub
/user
的Map
。
-
Java
-
Kotlin
assertThat((String) user.getAttribute("sub")).isEqualTo("user");
assertThat(user.getAttribute<String>("sub")).isEqualTo("user")
以及一个只有一个权限的 `Collection` 权限,`SCOPE_read`
-
Java
-
Kotlin
assertThat(user.getAuthorities()).hasSize(1);
assertThat(user.getAuthorities()).containsExactly(new SimpleGrantedAuthority("SCOPE_read"));
assertThat(user.authorities).hasSize(1)
assertThat(user.authorities).containsExactly(SimpleGrantedAuthority("SCOPE_read"))
Spring Security会完成必要的工作,以确保OAuth2User
实例可用于@AuthenticationPrincipal
注解。
此外,它还将该OAuth2User
链接到一个简单的OAuth2AuthorizedClient
实例,并将其存入模拟的OAuth2AuthorizedClientRepository
中。如果您的测试使用@RegisteredOAuth2AuthorizedClient
注解,这将非常方便。
配置授权机构
在许多情况下,您的方法受过滤器或方法安全保护,并且需要您的 `Authentication` 具有某些已授予的权限才能允许请求。
在这种情况下,您可以使用 `authorities()` 方法提供所需的已授予权限
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(oauth2Login()
.authorities(new SimpleGrantedAuthority("SCOPE_message:read"))
)
);
mvc.get("/endpoint") {
with(oauth2Login()
.authorities(SimpleGrantedAuthority("SCOPE_message:read"))
)
}
配置声明
虽然授权机构在Spring Security中非常常见,但在OAuth 2.0的情况下,我们还有声明(claims)。
例如,假设您有一个user_id
属性,它指示系统中用户的ID。您可以在控制器中像这样访问它:
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@AuthenticationPrincipal OAuth2User oauth2User) {
String userId = oauth2User.getAttribute("user_id");
// ...
}
@GetMapping("/endpoint")
fun foo(@AuthenticationPrincipal oauth2User: OAuth2User): String {
val userId = oauth2User.getAttribute<String>("user_id")
// ...
}
在这种情况下,您需要使用attributes()
方法指定该属性
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(oauth2Login()
.attributes(attrs -> attrs.put("user_id", "1234"))
)
);
mvc.get("/endpoint") {
with(oauth2Login()
.attributes { attrs -> attrs["user_id"] = "1234" }
)
}
其他配置
还有其他方法可以进一步配置身份验证;这仅仅取决于您的控制器期望什么数据。
-
clientRegistration(ClientRegistration)
- 用于使用给定的ClientRegistration
配置关联的OAuth2AuthorizedClient
-
oauth2User(OAuth2User)
- 用于配置完整的OAuth2User
实例
如果您:1. 有自己的OAuth2User
实现,或 2. 需要更改名称属性,则最后一个方法非常方便。
例如,假设您的授权服务器在user_name
声明中而不是sub
声明中发送主体名称。在这种情况下,您可以手动配置OAuth2User
-
Java
-
Kotlin
OAuth2User oauth2User = new DefaultOAuth2User(
AuthorityUtils.createAuthorityList("SCOPE_message:read"),
Collections.singletonMap("user_name", "foo_user"),
"user_name");
mvc
.perform(get("/endpoint")
.with(oauth2Login().oauth2User(oauth2User))
);
val oauth2User: OAuth2User = DefaultOAuth2User(
AuthorityUtils.createAuthorityList("SCOPE_message:read"),
mapOf(Pair("user_name", "foo_user")),
"user_name"
)
mvc.get("/endpoint") {
with(oauth2Login().oauth2User(oauth2User))
}
测试OAuth 2.0客户端
无论您的用户如何进行身份验证,您都可能还有其他令牌和客户端注册信息正在您正在测试的请求中使用。例如,您的控制器可能依赖于客户端凭据授权来获取与用户完全无关的令牌。
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@RegisteredOAuth2AuthorizedClient("my-app") OAuth2AuthorizedClient authorizedClient) {
return this.webClient.get()
.attributes(oauth2AuthorizedClient(authorizedClient))
.retrieve()
.bodyToMono(String.class)
.block();
}
@GetMapping("/endpoint")
fun foo(@RegisteredOAuth2AuthorizedClient("my-app") authorizedClient: OAuth2AuthorizedClient?): String? {
return this.webClient.get()
.attributes(oauth2AuthorizedClient(authorizedClient))
.retrieve()
.bodyToMono(String::class.java)
.block()
}
模拟与授权服务器的此握手操作可能很麻烦。相反,您可以使用oauth2Client
RequestPostProcessor
将OAuth2AuthorizedClient
添加到模拟的OAuth2AuthorizedClientRepository
中。
-
Java
-
Kotlin
mvc
.perform(get("/endpoint").with(oauth2Client("my-app")));
mvc.get("/endpoint") {
with(
oauth2Client("my-app")
)
}
这将创建一个OAuth2AuthorizedClient
,它具有简单的ClientRegistration
、OAuth2AccessToken
和资源所有者名称。
具体来说,它将包含一个客户端ID为“test-client”且客户端密钥为“test-secret”的ClientRegistration
。
-
Java
-
Kotlin
assertThat(authorizedClient.getClientRegistration().getClientId()).isEqualTo("test-client");
assertThat(authorizedClient.getClientRegistration().getClientSecret()).isEqualTo("test-secret");
assertThat(authorizedClient.clientRegistration.clientId).isEqualTo("test-client")
assertThat(authorizedClient.clientRegistration.clientSecret).isEqualTo("test-secret")
资源所有者名称为“user”
-
Java
-
Kotlin
assertThat(authorizedClient.getPrincipalName()).isEqualTo("user");
assertThat(authorizedClient.principalName).isEqualTo("user")
以及只有一个范围read
的OAuth2AccessToken
。
-
Java
-
Kotlin
assertThat(authorizedClient.getAccessToken().getScopes()).hasSize(1);
assertThat(authorizedClient.getAccessToken().getScopes()).containsExactly("read");
assertThat(authorizedClient.accessToken.scopes).hasSize(1)
assertThat(authorizedClient.accessToken.scopes).containsExactly("read")
然后,可以使用控制器方法中的@RegisteredOAuth2AuthorizedClient
照常检索客户端。
配置范围
在许多情况下,OAuth 2.0访问令牌带有一组范围。如果您的控制器检查这些范围,例如:
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(@RegisteredOAuth2AuthorizedClient("my-app") OAuth2AuthorizedClient authorizedClient) {
Set<String> scopes = authorizedClient.getAccessToken().getScopes();
if (scopes.contains("message:read")) {
return this.webClient.get()
.attributes(oauth2AuthorizedClient(authorizedClient))
.retrieve()
.bodyToMono(String.class)
.block();
}
// ...
}
@GetMapping("/endpoint")
fun foo(@RegisteredOAuth2AuthorizedClient("my-app") authorizedClient: OAuth2AuthorizedClient): String? {
val scopes = authorizedClient.accessToken.scopes
if (scopes.contains("message:read")) {
return webClient.get()
.attributes(oauth2AuthorizedClient(authorizedClient))
.retrieve()
.bodyToMono(String::class.java)
.block()
}
// ...
}
那么您可以使用accessToken()
方法配置范围。
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(oauth2Client("my-app")
.accessToken(new OAuth2AccessToken(BEARER, "token", null, null, Collections.singleton("message:read"))))
)
);
mvc.get("/endpoint") {
with(oauth2Client("my-app")
.accessToken(OAuth2AccessToken(BEARER, "token", null, null, Collections.singleton("message:read")))
)
}
其他配置
还有其他方法可以进一步配置身份验证;这仅仅取决于您的控制器期望什么数据。
-
principalName(String)
- 用于配置资源所有者名称 -
clientRegistration(Consumer<ClientRegistration.Builder>)
- 用于配置关联的ClientRegistration
-
clientRegistration(ClientRegistration)
- 用于配置完整的ClientRegistration
如果您想使用真实的ClientRegistration
,则最后一个方法非常方便。
例如,假设您想使用应用程序的ClientRegistration
定义之一,如您的application.yml
中所指定。
在这种情况下,您的测试可以自动连接ClientRegistrationRepository
并查找测试所需的注册信息。
-
Java
-
Kotlin
@Autowired
ClientRegistrationRepository clientRegistrationRepository;
// ...
mvc
.perform(get("/endpoint")
.with(oauth2Client()
.clientRegistration(this.clientRegistrationRepository.findByRegistrationId("facebook"))));
@Autowired
lateinit var clientRegistrationRepository: ClientRegistrationRepository
// ...
mvc.get("/endpoint") {
with(oauth2Client("my-app")
.clientRegistration(clientRegistrationRepository.findByRegistrationId("facebook"))
)
}
测试JWT身份验证
为了对资源服务器发出授权请求,您需要一个bearer令牌。
如果您的资源服务器配置为使用JWT,则这意味着bearer令牌需要根据JWT规范进行签名,然后进行编码。所有这些都可能非常令人望而却步,尤其是在这并非您测试的重点时。
幸运的是,您可以通过多种简单的方法克服这个困难,并让您的测试专注于授权而不是表示bearer令牌。我们现在将介绍其中的两种方法。
jwt() RequestPostProcessor
第一种方法是通过jwt
RequestPostProcessor
。最简单的示例如下所示:
-
Java
-
Kotlin
mvc
.perform(get("/endpoint").with(jwt()));
mvc.get("/endpoint") {
with(jwt())
}
这将创建一个模拟的Jwt
,将其正确地传递到任何身份验证API中,以便您的授权机制可以验证它。
默认情况下,它创建的JWT
具有以下特性:
{
"headers" : { "alg" : "none" },
"claims" : {
"sub" : "user",
"scope" : "read"
}
}
如果进行测试,生成的Jwt
将通过以下方式:
-
Java
-
Kotlin
assertThat(jwt.getTokenValue()).isEqualTo("token");
assertThat(jwt.getHeaders().get("alg")).isEqualTo("none");
assertThat(jwt.getSubject()).isEqualTo("sub");
assertThat(jwt.tokenValue).isEqualTo("token")
assertThat(jwt.headers["alg"]).isEqualTo("none")
assertThat(jwt.subject).isEqualTo("sub")
当然,这些值可以进行配置。
可以使用相应的方法配置任何标头或声明。
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(jwt().jwt(jwt -> jwt.header("kid", "one").claim("iss", "https://idp.example.org"))));
mvc.get("/endpoint") {
with(
jwt().jwt { jwt -> jwt.header("kid", "one").claim("iss", "https://idp.example.org") }
)
}
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(jwt().jwt(jwt -> jwt.claims(claims -> claims.remove("scope")))));
mvc.get("/endpoint") {
with(
jwt().jwt { jwt -> jwt.claims { claims -> claims.remove("scope") } }
)
}
scope
和scp
声明在此处的处理方式与在正常的bearer令牌请求中相同。但是,这可以通过简单地提供测试所需的GrantedAuthority
实例列表来覆盖。
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(jwt().authorities(new SimpleGrantedAuthority("SCOPE_messages"))));
mvc.get("/endpoint") {
with(
jwt().authorities(SimpleGrantedAuthority("SCOPE_messages"))
)
}
或者,如果您有自定义的Jwt
到Collection<GrantedAuthority>
转换器,您也可以使用它来派生授权机构。
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(jwt().authorities(new MyConverter())));
mvc.get("/endpoint") {
with(
jwt().authorities(MyConverter())
)
}
您还可以指定一个完整的Jwt
,Jwt.Builder
对此非常方便。
-
Java
-
Kotlin
Jwt jwt = Jwt.withTokenValue("token")
.header("alg", "none")
.claim("sub", "user")
.claim("scope", "read")
.build();
mvc
.perform(get("/endpoint")
.with(jwt().jwt(jwt)));
val jwt: Jwt = Jwt.withTokenValue("token")
.header("alg", "none")
.claim("sub", "user")
.claim("scope", "read")
.build()
mvc.get("/endpoint") {
with(
jwt().jwt(jwt)
)
}
authentication()
RequestPostProcessor
第二种方法是使用authentication()
RequestPostProcessor
。本质上,您可以实例化您自己的JwtAuthenticationToken
并在您的测试中提供它,如下所示:
-
Java
-
Kotlin
Jwt jwt = Jwt.withTokenValue("token")
.header("alg", "none")
.claim("sub", "user")
.build();
Collection<GrantedAuthority> authorities = AuthorityUtils.createAuthorityList("SCOPE_read");
JwtAuthenticationToken token = new JwtAuthenticationToken(jwt, authorities);
mvc
.perform(get("/endpoint")
.with(authentication(token)));
val jwt = Jwt.withTokenValue("token")
.header("alg", "none")
.claim("sub", "user")
.build()
val authorities: Collection<GrantedAuthority> = AuthorityUtils.createAuthorityList("SCOPE_read")
val token = JwtAuthenticationToken(jwt, authorities)
mvc.get("/endpoint") {
with(
authentication(token)
)
}
请注意,作为替代方法,您还可以使用@MockBean
注解模拟JwtDecoder
bean本身。
测试不透明令牌身份验证
与JWT类似,不透明令牌需要授权服务器才能验证其有效性,这可能会使测试更加困难。为了解决这个问题,Spring Security 对不透明令牌提供了测试支持。
假设我们有一个控制器,它将身份验证检索为BearerTokenAuthentication
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(BearerTokenAuthentication authentication) {
return (String) authentication.getTokenAttributes().get("sub");
}
@GetMapping("/endpoint")
fun foo(authentication: BearerTokenAuthentication): String {
return authentication.tokenAttributes["sub"] as String
}
在这种情况下,我们可以告诉Spring Security使用opaqueToken
RequestPostProcessor
方法包含默认的BearerTokenAuthentication
,如下所示:
-
Java
-
Kotlin
mvc
.perform(get("/endpoint").with(opaqueToken()));
mvc.get("/endpoint") {
with(opaqueToken())
}
这将使用包含简单的OAuth2AuthenticatedPrincipal
、属性的Map
和授权机构的Collection
的BearerTokenAuthentication
配置关联的MockHttpServletRequest
。
具体来说,它将包含一个键/值对为sub
/user
的Map
。
-
Java
-
Kotlin
assertThat((String) token.getTokenAttributes().get("sub")).isEqualTo("user");
assertThat(token.tokenAttributes["sub"] as String).isEqualTo("user")
以及一个只有一个权限的 `Collection` 权限,`SCOPE_read`
-
Java
-
Kotlin
assertThat(token.getAuthorities()).hasSize(1);
assertThat(token.getAuthorities()).containsExactly(new SimpleGrantedAuthority("SCOPE_read"));
assertThat(token.authorities).hasSize(1)
assertThat(token.authorities).containsExactly(SimpleGrantedAuthority("SCOPE_read"))
Spring Security会完成必要的工作,以确保BearerTokenAuthentication
实例可用于您的控制器方法。
配置授权机构
在许多情况下,您的方法受过滤器或方法安全保护,并且需要您的 `Authentication` 具有某些已授予的权限才能允许请求。
在这种情况下,您可以使用 `authorities()` 方法提供所需的已授予权限
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(opaqueToken()
.authorities(new SimpleGrantedAuthority("SCOPE_message:read"))
)
);
mvc.get("/endpoint") {
with(opaqueToken()
.authorities(SimpleGrantedAuthority("SCOPE_message:read"))
)
}
配置属性
虽然授权机构在所有Spring Security中都很常见,但在OAuth 2.0的情况下,我们也有属性。
例如,假设您有一个user_id
属性,它指示系统中用户的ID。您可以在控制器中像这样访问它:
-
Java
-
Kotlin
@GetMapping("/endpoint")
public String foo(BearerTokenAuthentication authentication) {
String userId = (String) authentication.getTokenAttributes().get("user_id");
// ...
}
@GetMapping("/endpoint")
fun foo(authentication: BearerTokenAuthentication): String {
val userId = authentication.tokenAttributes["user_id"] as String
// ...
}
在这种情况下,您需要使用attributes()
方法指定该属性
-
Java
-
Kotlin
mvc
.perform(get("/endpoint")
.with(opaqueToken()
.attributes(attrs -> attrs.put("user_id", "1234"))
)
);
mvc.get("/endpoint") {
with(opaqueToken()
.attributes { attrs -> attrs["user_id"] = "1234" }
)
}
其他配置
还有其他方法可以进一步配置身份验证;这仅仅取决于您的控制器期望什么数据。
其中一种方法是principal(OAuth2AuthenticatedPrincipal)
,您可以使用它来配置作为BearerTokenAuthentication
基础的完整的OAuth2AuthenticatedPrincipal
实例。
如果您:1. 有自己的OAuth2AuthenticatedPrincipal
实现,或 2. 想指定不同的主体名称,则这将非常方便。
例如,假设您的授权服务器在user_name
属性中而不是sub
属性中发送主体名称。在这种情况下,您可以手动配置OAuth2AuthenticatedPrincipal
-
Java
-
Kotlin
Map<String, Object> attributes = Collections.singletonMap("user_name", "foo_user");
OAuth2AuthenticatedPrincipal principal = new DefaultOAuth2AuthenticatedPrincipal(
(String) attributes.get("user_name"),
attributes,
AuthorityUtils.createAuthorityList("SCOPE_message:read"));
mvc
.perform(get("/endpoint")
.with(opaqueToken().principal(principal))
);
val attributes: Map<String, Any> = Collections.singletonMap("user_name", "foo_user")
val principal: OAuth2AuthenticatedPrincipal = DefaultOAuth2AuthenticatedPrincipal(
attributes["user_name"] as String?,
attributes,
AuthorityUtils.createAuthorityList("SCOPE_message:read")
)
mvc.get("/endpoint") {
with(opaqueToken().principal(principal))
}
请注意,作为使用opaqueToken()
测试支持的替代方法,您还可以使用@MockBean
注解模拟OpaqueTokenIntrospector
bean本身。