我有一个名为template.welcome.email的json字段,我正在编写一个单元测试,用于检查服务器的回复中是否存在该字段,但我找不到名称中的点的转义符领域的。 我的测试代码是:
@Test
public 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 path
at 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的任何转义字符吗?
答案 0 :(得分:39)
在字段周围使用括号和引号。例如,如果您的字段是 valid.key.with.dot
将其称为['valid.key.with.dot']
,在JsonPath中,尝试
JsonPath.read(jsonString, "$.['valid.key.with.dot']")
另请参阅此主题:https://groups.google.com/forum/#!topic/jsonpath/7YvgXWP1_7Y
答案 1 :(得分:16)
作为Ida pointed out:
在字段周围使用括号和引号。例如,如果您的字段是valid.key.with.dot
将其称为['valid.key.with.dot']并在JsonPath中尝试
JsonPath.read(jsonString, "$.['valid.key.with.dot']")
答案 2 :(得分:4)
这些天(例如io.rest-assured.json-path:3.0.1
)符号似乎没有括号:
// Some Groovy OData V4 $count test
// Response looks like:
// { "@odata.count": 2, ... }
body "'@odata.count'", equalTo(2)
我找到了相应的提示in this Git issue。