Java 如何使用 MockMvcResultMatchers.jsonPath
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/42725199/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to use MockMvcResultMatchers.jsonPath
提问by Pradeep Vairamani
MvcResult result = this.mockMvc.perform(
MockMvcRequestBuilders.get(mockUrl))
.andExpect(MockMvcResultMatchers.status().isOk())
.andExpect(MockMvcResultMatchers.content().contentType("application/ json;charset=UTF-8"))
.andDo(MockMvcResultHandlers.print())
Give me the following:
给我以下内容:
MockHttpServletResponse:
Status = 200
Error message = null
Headers = {Content-Type=[application/json;charset=UTF-8]}
Content type = application/json;charset=UTF-8
Body = {"version":"0.1"}
Forwarded URL = null
Redirected URL = null
Cookies = []
However, testing it with
但是,测试它
MvcResult result = this.mockMvc.perform(
MockMvcRequestBuilders.get(mockUrl))
.andExpect(MockMvcResultMatchers.status().isOk())
.andExpect(MockMvcResultMatchers.content().contentType("application/ json;charset=UTF-8"))
.andExpect(jsonPath("$.version").value("0.1"))
returns the following error:
返回以下错误:
java.lang.AssertionError: No value at JSON path "$.version", exception: net/minidev/json/writer/JsonReaderI
at org.springframework.test.util.JsonPathExpectationsHelper.evaluateJsonPath(JsonPathExpectationsHelper.java:245)
at org.springframework.test.util.JsonPathExpectationsHelper.assertValue(JsonPathExpectationsHelper.java:99)
at org.springframework.test.web.servlet.result.JsonPathResultMatchers.match(JsonPathResultMatchers.java:99)
at org.springframework.test.web.servlet.MockMvc.andExpect(MockMvc.java:171)
at com.vmware.skyscraper.rts.runbooks.RunbookControllerTest.testGetSingleRunbook(RunbookControllerTest.java:93)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94)
at org.junit.runners.ParentRunner.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access.andExpect(jsonPath("$.version", is("0.1")))
0(ParentRunner.java:58)
at org.junit.runners.ParentRunner.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:51)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:237)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
How do I use jsonPath?
我如何使用 jsonPath?
回答by Jose Martinez
I think you need to pass the Matcher to the jsonPath
method. For example.
我认为您需要将 Matcher 传递给该jsonPath
方法。例如。
public class Res {
String version;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}
参考资料:http:
//docs.spring.io/spring/docs/3.2.x/javadoc-api/org/springframework/test/web/servlet/result/MockMvcResultMatchers.html#jsonPath(java.lang.String,%20org .hamcrest.Matcher)
回答by MartinTeeVarga
Your code works for me just fine. I am using Hymanson to parse the cases and that's probably the only difference. Check my code:
你的代码对我来说很好。我正在使用 Hymanson 来解析案例,这可能是唯一的区别。检查我的代码:
Result class:
结果类:
@RequestMapping(value = "/blah",
method = GET,
produces = APPLICATION_JSON_VALUE)
public HttpEntity<Res> doIt() {
Res res = new Res();
res.setVersion("0.1");
return new HttpEntity<>(res);
}
Controller:
控制器:
@Test
public void blahTest() throws Exception {
this.mockMvc.perform(
MockMvcRequestBuilders.get("/blah"))
.andExpect(MockMvcResultMatchers.status().isOk())
.andExpect(MockMvcResultMatchers.content().contentType("application/json;charset=UTF-8"))
.andExpect(jsonPath("$.version").value("0.1"))
.andDo(MockMvcResultHandlers.print());
}
Test:
测试:
MockHttpServletResponse:
Status = 200
Error message = null
Headers = {Content-Type=[application/json;charset=UTF-8]}
Content type = application/json;charset=UTF-8
Body = {"version":"0.1"}
Forwarded URL = null
Redirected URL = null
Cookies = []
Response:
回复:
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>asm</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
I can only recommend trying to change the Json parser library you are using. Otherwise, try to update your code with all the parts that are needed to create a simple, minimal and reproducible example of your problem.
我只能建议尝试更改您正在使用的 Json 解析器库。否则,尝试使用创建简单、最小和可重现的问题示例所需的所有部分来更新您的代码。
回答by coltonfranco
All credit for this answer goes to @pramodh (Hidden in OP's comments)
这个答案的所有功劳都归功于@pramodh(隐藏在 OP 的评论中)
I had the exact same problem and installing his reccomended dependencies fixed everything.
我遇到了完全相同的问题,安装他推荐的依赖项解决了所有问题。
##代码##