在我的jersey-2应用程序中,我使用一个非常简单的ContainerRequestFilter
来检查基本身份验证(可能重新发明轮子,但请耐心等待)。过滤器有点像这样
@Override
public void filter(ContainerRequestContext context) throws IOException {
String authHeader = context.getHeaderString(HttpHeaders.AUTHORIZATION);
if (StringUtils.isBlank(authHeader)) {
log.info("Auth header is missing.");
context.abortWith(Response.status(Response.Status.UNAUTHORIZED)
.type(MediaType.APPLICATION_JSON)
.entity(ErrorResponse.authenticationRequired())
.build());
}
}
现在我想为它编写测试,模拟ContainerRequestContext
对象。
@Test
public void emptyHeader() throws Exception {
when(context.getHeaderString(HttpHeaders.AUTHORIZATION)).thenReturn(null);
filter.filter(context);
Response r = Response.status(Response.Status.UNAUTHORIZED)
.type(MediaType.APPLICATION_JSON)
.entity(ErrorResponse.authenticationRequired())
.build();
verify(context).abortWith(eq(r));
}
此测试在eq(r)
调用失败,即使查看Response
对象的字符串表示也是相同的。知道什么是错的吗?
答案 0 :(得分:0)
我不相信你需要eq()方法。您应该验证该上下文。 abortWith(r)被召唤。我可能会遗漏一些东西,因为你没有包括eq(r)是什么。