我有一个类似这样的控制器方法:
@GetMapping
@JsonView(View.IAm.class)
public User myProfile(@CurrentUser User user) throws ResourceNotFoundException {
if(user == null) throw new ResourceNotFoundException("Undefined User");
return userRepository.findById(user.getId()).orElseThrow(ResourceNotFoundException::new);
}
@CurrentUser 基本上是一个自定义注释,定义如下:
@Target({ElementType.PARAMETER, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@AuthenticationPrincipal
public @interface CurrentUser {}
这是我的控制器测试用例:
@Test()
public void myProfile_return200() throws UnsupportedEncodingException, Exception {
User user = new User();
user.setId("1");
when(mockUserRepository.findById(eq("1"))).thenReturn(Optional.of(user));
mockedMvc.perform(get("/api/user").contentType(MediaType.APPLICATION_JSON)).andExpect(status().isOk())
.andReturn().getResponse().getContentAsString();
}
包括存储库和服务类在内的所有内容都被正确模拟,但我总是为@CurrentUser 获取空值。
知道我需要做什么来模拟自定义带注释的参数或任何带注释的参数。