我如何使用 spring junit 集成测试检查数组中的每个对象是否具有特定的 属性?

How can i check if each object in an array has a specific property exists using spring junit integration test?

我正在为我的资源 class 中的方法编写 spring 集成测试。访问资源方法 returns 一个 json 响应。我想做一个断言。

以下是我的测试方法

@Test
public void testGetPerformanceCdrStatusesByDateRangeAndFrequencyMonthly() throws Exception {
    this.restMvc.perform(MockMvcRequestBuilders.get(
            "/api/performance/cdrStatus?startDate=2019-09-01T00:00:00.000Z&endDate=2019-09-30T23:59:59.999Z&frequency=PER_MONTH"))
            .andDo(print()).andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
            .andExpect(status().isOk())
               .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
               .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").exists())
               .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").isArray())
               .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").isNotEmpty());

}

回复如下

{"histogramDistributionbyCdrStatuses":[{"dateRange":"2019-09","total":19,"delivered":7,"undeliverable":4,"expired":4,"enroute":4}]}

我想做的断言是数组 histogramDistributionbyCdrStatuses 中的每个对象都有字段 dateRange、total、delivered、undeliverable、expired 和 enroute exists。 我该怎么做 。我也可以使用 hamcrest 匹配器。

非常感谢任何帮助

我刚刚扩展了我的测试如下,它有效

@Test
    public void testGetPerformanceCdrStatusesByEnrouteStatus() throws Exception {
        this.restMvc.perform(MockMvcRequestBuilders.get(
                "/api/performance/cdrStatus?startDate=2019-09-01T00:00:00.000Z&endDate=2022-12-31T23:59:59.999Z&frequency=PER_DAY"))
                .andDo(print()).andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
                .andExpect(status().isOk())
                   .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").isArray())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses").isNotEmpty())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].dateRange").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].total").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].delivered").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].undeliverable").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].expired").exists())
                   .andExpect(jsonPath("$.histogramDistributionbyCdrStatuses.[*].enroute").exists());


    }