如何使用MockMvc在响应主体中检查JSON

这是我的控制器内部的方法,其注释为 @Controller

@RequestMapping(value = "/getServerAlertFilters/{serverName}/", produces = "application/json; charset=utf-8")

@ResponseBody

public JSONObject getServerAlertFilters(@PathVariable String serverName) {

JSONObject json = new JSONObject();

List<FilterVO> filteredAlerts = alertFilterService.getAlertFilters(serverName, "");

JSONArray jsonArray = new JSONArray();

jsonArray.addAll(filteredAlerts);

json.put(SelfServiceConstants.DATA, jsonArray);

return json;

}

我期望{"data":[{"useRegEx":"false","hosts":"v2v2v2"}]}作为我的json。

这是我的JUnit测试:

@Test

public final void testAlertFilterView() {

try {

MvcResult result = this.mockMvc.perform(get("/getServerAlertFilters/v2v2v2/").session(session)

.accept("application/json"))

.andDo(print()).andReturn();

String content = result.getResponse().getContentAsString();

LOG.info(content);

} catch (Exception e) {

e.printStackTrace();

}

}

这是控制台输出:

MockHttpServletResponse:

Status = 406

Error message = null

Headers = {}

Content type = null

Body =

Forwarded URL = null

Redirected URL = null

Cookies = []

Even result.getResponse().getContentAsString()是一个空字符串。

有人可以建议如何在我的JUnit测试方法中获取JSON,以便完成测试用例。

回答:

我使用TestNG进行单元测试。但是在Spring Test Framework中,它们看起来都很相似。所以我相信你的测试如下

@Test

public void testAlertFilterView() throws Exception {

this.mockMvc.perform(get("/getServerAlertFilters/v2v2v2/").

.andExpect(status().isOk())

.andExpect(content().json("{'data':[{'useRegEx':'false','hosts':'v2v2v2'}]}"));

}

如果要检查json键和值,可以使用jsonpath .andExpect(jsonPath("$.yourKeyValue",

is("WhatYouExpect")));

您可能会发现content().json()无法解决,请添加

import static

org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;

以上是 如何使用MockMvc在响应主体中检查JSON 的全部内容, 来源链接: utcz.com/qa/409619.html

回到顶部