我在路径“/ test”中有这个无用的端点:
@PUT
public Response doSomething() {
return Response.status(409).build();
}
我用这种方式测试:
@Test
public void uselessTest() {
put("/test").then().assertThat().statusCode(409);
}
但我得到一个断言错误:
预期状态代码< 409>与实际状态代码< 404>不匹配。
这种情况发生在更多代码中:400,500 ...除了200。
我正在使用Spring Boot。如果我在运行测试时在端点方法中放置断点,则执行停止,因此测试中的请求正确完成。如果我将状态代码(在资源和测试中)更改为200,则测试通过。
发生了什么事?
答案 0 :(得分:11)
当出现错误状态(4xx,5xx)时,Jersey的默认行为是使用servlet' Response.sendError
,这会导致重定向到错误页面。由于没有设置错误页面,因此会产生404.
我们可以通过设置Jersey属性
来改变这种行为您可以在ResourceConfig
子类
public JerseyConfig extends ResourceConfig {
public JerseyConfig() {
property(ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR, true);
}
}
或者(使用Spring Boot)您可以将其添加到application.properties
文件中。
spring.jersey.init.jersey.config.server.response.setStatusOverSendError=true
答案 1 :(得分:3)
我也有这个问题,并通过从spring boot auto config中排除ErrorMvcAutoConfiguration来解决它:
val inputSmall = Seq(
("A", 0.3, "B", 0.25),
("A", 0.3, "g", 0.4),
("d", 0.0, "f", 0.1),
("d", 0.0, "d", 0.7),
("A", 0.3, "d", 0.7),
("d", 0.0, "g", 0.4),
("c", 0.2, "B", 0.25)).toDF("column1", "transformedCol1", "column2", "transformedCol2")