我正在尝试测试特定的球衣资源,但是当我期待InboundJaxrsResponse
时,球衣客户端正在返回回复OutboundJaxrsResponse
。我不明白这种行为。
我确实调查了调试器,资源正在按预期返回OutboundJaxrsResponse
,这意味着泽西客户端正在某处进行包装/转换,但我不明白为什么。
如果我做得不对,你可以告诉我一个比较响应的好方法。
我正在使用dropwizard。
@Test
public void itShouldRetrieveListOfComputations() {
List<Computation> computations = new ArrayList<Computation>();
computations.add(new Computation("name1", "description1", "expression1"));
computations.add(new Computation("name2", "description2", "expression2"));
when(computationDAO.findAll()).thenReturn(computations);
Response expected = Response.ok(computations).build();
assertThat(resource.client().target("/computations").request().get()).isEqualTo(expected);
verify(computationDAO).findAll();
}
受测试资源
@GET
@UnitOfWork
@Timed
public Response list() {
List<Computation> computations = computationDAO.findAll();
Response response = Response.ok(computations).build();
return response;
}
后果
org.junit.ComparisonFailure:
Expected :OutboundJaxrsResponse{status=200, reason=OK, hasEntity=true, closed=false, buffered=false}
Actual :InboundJaxrsResponse{context=ClientResponse{method=GET, uri=/computations, status=200, reason=OK}}
答案 0 :(得分:0)
Response.ok(computations).build();
创建Jersey用于发送给客户端的传出响应。您无法将其用于与来自客户端呼叫的即将到来的响应进行比较。它们是抽象类的两种不同实现。
这就是我通常验证回复的方式:
Response response = resource.client().target("/computations").request().get(Response.class);
assertThat( response.getStatusInfo.getFamily() ).isEqualTo( Response.Status.Family.Success );
assertThat( response.getMediaType() ).isEqualTo( MediaType.APPLICATION_JSON_TYPE );
assertThat( response.readEntity(new GenericType<List<Computation>>() {}) ).isEqualTo( computations );