问题 使用spring-test-mvc自定义测试http标头


我正在测试我的MVC服务 spring-test-mvc 我使用了类似的东西:

MockMvc mockMvc = standaloneSetup(controller).build();
mockMvc.perform(get("<my-url>")).andExpect(content().bytes(expectedBytes)).andExpect(content().type("image/png"))
       .andExpect(header().string("cache-control", "max-age=3600"));

哪个工作正常。

现在我将缓存图像更改为在特定范围内随机。例如,而不是 3600 它可能是 3500-3700。我试图找出如何获取标头值并对其进行一些测试,而不是使用此模式 andExpect


1238
2017-09-30 13:51


起源



答案:


也许你的意思是这样的。

    MvcResult mvcResult = mvc.perform(get("/")).andReturn();
    String headerValue = mvcResult.getResponse().getHeader("headerName");

13
2017-09-30 14:17





要向Admit的答案添加更多细节:如果您还可以在代码中访问JAX-RS实现,则可以使用CacheControl对象进行非常明确的测试(使用hamcrest匹配器的示例):

int maxAge = CacheControl
                .valueOf(mvcResult.getResponse().getHeader("Cache-Control"))
                .getMaxAge();

assertThat(maxAge, is(both(greaterThanOrEqualTo(3500)).and(lessThanOrEqualTo(3700))));

3
2017-10-24 19:49