JsonPath JUnit转义点字符
我有一个名为template.welcome.email的json字段,并且我正在编写一个单元测试,以检查服务器的回复中是否存在该字段,但是我找不到该字段名称中的点的转义符。我的测试代码是:
@Testpublic void testEmailTemplates() throws Exception {
mockMvc.perform(get("/emailTemplates")
.contentType(MediaType.APPLICATION_JSON)
.locale(Locale.UK)
.accept(MediaType.APPLICATION_JSON))
.andDo(print())
.andExpect(status().isOk())
.andExpect(jsonPath("$.template.welcome.email").exists())
.andExpect(redirectedUrl(null))
.andExpect(forwardedUrl(null));
}
但是我得到以下异常,因为点的解释就像路径一样:
java.lang.AssertionError: No value for JSON path: $.template.welcome.email, exception: invalid pathat org.springframework.test.util.JsonPathExpectationsHelper.evaluateJsonPath(JsonPathExpectationsHelper.java:74)
at org.springframework.test.util.JsonPathExpectationsHelper.exists(JsonPathExpectationsHelper.java:121)
at org.springframework.test.web.servlet.result.JsonPathResultMatchers$3.match(JsonPathResultMatchers.java:77)
at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:141)
at
您知道jsonPath的任何转义字符吗?
回答:
正如Ida所指出的:
在您的字段周围使用括号和引号。例如,如果您的字段是有效的.key.with.dot
将其称为[‘valid.key.with.dot’],然后在JsonPath中尝试
JsonPath.read(jsonString, "$.['valid.key.with.dot']")
以上是 JsonPath JUnit转义点字符 的全部内容, 来源链接: utcz.com/qa/426056.html