2

我正在测试一个 Spring MVC 应用程序。
我需要确保对浏览器的响应具有一定的模式,我的应用程序会发回一些 json,并且对于每个 Json 项都有一个名为 DT_RowId 的字段,我不想比较它,因为 DT_RowId 包含一个随机数。因此,我想比较所有 Json 主体,除了 DT_RowId 及其内容。
顺便说一句,DT_RowId 的典型出现是“DT_RowId”:“8407709537703772”。一个典型的 json 响应是:

{"id":-1,"fieldErrors":[],"aaData":[{"id":8002,"firstname":"Bob","lastname":"Jones","email":"bob.jones@gmail.com","DT_RowId":"8407709537703772"},{"id":8002,"firstname:"Dan","lastname":"Jones","email":"dan.jones@gmail.com","DT_RowId":"8404309537701754"}]}

下面,我的测试:

@Test
public void testGetUsersJson() throws Exception {
    mockMvc.perform(get("/users")
        .accept(MediaType.APPLICATION_JSON))

        .andDo(print())

        .andExpect(content().contentType("application/json"))
        // How can I modify the line below??
        .andExpect(content().bytes(IOUtils.toByteArray(ctx.getResource("classpath:responses/users.getUsersJson.mywebapp.response.json").getInputStream())))
        .andExpect(status().isOk())
        .andExpect(redirectedUrl(null))
        .andExpect(forwardedUrl(null));
}

如何修改上面的代码?我想比较除字段“DT_RowId”之外的所有 Json 响应。有什么聪明的主意吗?

4

1 回答 1

0

您可以使用 andExpect(content().matches(regex here)),并编写一个正则表达式来匹配您的 users.getUsersJson.mywebapp.response.json 内容,不包括您的 DT_RowId。

于 2013-09-18T06:41:38.960 回答