正在获取SnippetException:未记录有效负载的以下部分:数组元素错误

时间:2019-06-24 09:23:15

标签: java json spring spring-restdocs

我试图在这里使用Spring-RestDocs记录我的REST服务。但是到目前为止,我还无法记录数组元素。

测试方法:

@Test
public void listAll() throws Exception {

  MockHttpServletRequestBuilder requestBuilder =
            RestDocumentationRequestBuilders.post("/diagnosis/search/{term}", "headache")
                    .header("Authorization",TestHelper.TOKEN).with(csrf());
    TestHelper.httpRequestBuilder(requestBuilder, new SearchEntity("5b55aabd0550de0021097b64",Arrays.asList("PL01", "PL02"),true));

    MvcResult result = mockMvc.perform(requestBuilder)
            .andDo(DiagnosisDocument.documentSearchTerm())
            .andExpect(status().isOk())
            .andReturn();
    MockHttpServletResponse response = result.getResponse();
    System.out.println(response.getContentAsString());
    assertEquals(HttpStatus.OK.value(), response.getStatus());
}

记录方法:

 public static ResultHandler documentSearchTerm() {
    return document("search-diagnosis", pathParameters(
   parameterWithName("term").description("Term")),

   requestFields(fieldWithPath("clinicId").description("bla bla")),

   requestFields(fieldWithPath("isGlobalSearch").description("bla bla")),

   requestFields(subsectionWithPath("[].planIds").description("bla bla")),
   responseAPI(true));

}

SearchEntity类:

@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
@ToString
public class DiagnosisSearchEntiry {

   private String clinicId;
   private List<String> planIds = new ArrayList<>();
   private boolean isGlobalSearch;

}
But in this implementation, im getting following exception and the test fails.

org.springframework.restdocs.snippet.SnippetException: The following parts of the payload were not documented:
{
  "planIds" : [ "PL01", "PL02" ],
  "globalSearch" : true
}

我是否有任何特定原因导致此错误?我记录错了吗?预先感谢

1 个答案:

答案 0 :(得分:0)

DiagnosisSearchEntiry序列化为JSON时,isGlobalSearch字段将映射到JSON中名为globalSearch的字段。您的请求字段路径需要更新以反映这一点:

requestFields(fieldWithPath("globalSearch").description("bla bla"))

路径[].planIds正在寻找具有planIds字段的对象数组。它将像这样匹配JSON:

[
  {
    "planIds": ["PL01", "PL02"]
  },
  {
    "planIds": ["PL03", "PL04"]
  }
]

正在记录的JSON的结构如下:

{
  "clinicId": "the clinic id",
  "planIds": [ "PL01", "PL02" ],
  "globalSearch": true  
}

要记录计划ID的数组,路径应为planIds.[]

requestFields(subsectionWithPath("planIds.[]").description("bla bla"))