如何在mockmvc

时间:2017-08-26 14:33:13

标签: spring mockmvc

我有这样的测试:

    @Test
    public void blahFunction() throws Exception {
        mockMvc.perform(post("/api/todo/{id}", 1L)
        )
                .andExpect(status().isOk())
                .andExpect(jsonPath("$.file", is("Lorem ipsum")))
    }
}

我有json响应包含file属性,现在我想检查这个文件路径是否存在,我该怎么做呢, 我想知道确实存在这样的事情:

result = mockMvc.perform...
String filePath = result.jsonpath("$.file")

0 个答案:

没有答案