一尘不染

JsonPath JUnit转义点字符

spring-mvc

我有一个名为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的任何转义字符吗?


阅读 760

收藏
2020-06-01

共1个答案

一尘不染

正如Ida所指出的:

在您的字段周围使用括号和引号。例如,如果您的字段是有效的.key.with.dot

将其称为[‘valid.key.with.dot’],然后在JsonPath中尝试

JsonPath.read(jsonString, "$.['valid.key.with.dot']")

2020-06-01