使用 Spring 的 MockMvc 框架,如何测试我的模型的属性值?
Using Spring's MockMvc framework, how do I test the value of an attribute of an attribute of my model?
我正在使用 Spring 3.2.11.RELEASE 和 JUnit 4.11。我正在使用 Spring 的 org.springframework.test.web.servlet.MockMvc
框架来测试控制器方法。在一个测试中,我有一个填充了以下对象的模型:
public class MyObjectForm
{
private List<MyObject> myobjects;
public List<MyObject> getMyObjects() {
return myobjects;
}
public void setMyObjects(List<MyObject> myobjects) {
this.myobjects = myobjects;
}
}
“MyObject”对象依次具有以下字段……
public class MyObject
{
…
private Boolean myProperty;
使用 MockMvc 框架,如何检查“myobjects”列表中的第一项是否具有等于 true 的属性“myProperty”?到目前为止,我知道事情是这样的……
mockMvc.perform(get(“/my-path/get-page”)
.param(“param1”, ids))
.andExpect(status().isOk())
.andExpect(model().attribute("MyObjectForm", hasProperty("myobjects[0].myProperty”, Matchers.equalTo(true))))
.andExpect(view().name("assessment/upload"));
但是我对如何测试属性的属性值一无所知?
如果您的对象具有 getter getMyProperty
.
,您可以嵌套 hasItem
和 hasProperty
匹配器
.andExpect(model().attribute("MyObjectForm",
hasProperty("myObjects",
hasItem(hasProperty("myProperty”, Matchers.equalTo(true))))))
如果您知道列表中有多少对象,则可以使用
检查第一项
.andExpect(model().attribute("MyObjectForm",
hasProperty("myObjects", contains(
hasProperty("myProperty”, Matchers.equalTo(true)),
any(MyObject.class),
...
any(MyObject.class)))));
以防其他人遇到这个问题。我 运行 遇到了类似的问题,试图测试 List 中 class(客户)的属性值 (firstName)。这是对我有用的:
.andExpect(model().attribute("customerList", Matchers.hasItemInArray(Matchers.<Customer> hasProperty("firstName", Matchers.equalToIgnoringCase("Jean-Luc")))))
我正在使用 Spring 3.2.11.RELEASE 和 JUnit 4.11。我正在使用 Spring 的 org.springframework.test.web.servlet.MockMvc
框架来测试控制器方法。在一个测试中,我有一个填充了以下对象的模型:
public class MyObjectForm
{
private List<MyObject> myobjects;
public List<MyObject> getMyObjects() {
return myobjects;
}
public void setMyObjects(List<MyObject> myobjects) {
this.myobjects = myobjects;
}
}
“MyObject”对象依次具有以下字段……
public class MyObject
{
…
private Boolean myProperty;
使用 MockMvc 框架,如何检查“myobjects”列表中的第一项是否具有等于 true 的属性“myProperty”?到目前为止,我知道事情是这样的……
mockMvc.perform(get(“/my-path/get-page”)
.param(“param1”, ids))
.andExpect(status().isOk())
.andExpect(model().attribute("MyObjectForm", hasProperty("myobjects[0].myProperty”, Matchers.equalTo(true))))
.andExpect(view().name("assessment/upload"));
但是我对如何测试属性的属性值一无所知?
如果您的对象具有 getter getMyProperty
.
hasItem
和 hasProperty
匹配器
.andExpect(model().attribute("MyObjectForm",
hasProperty("myObjects",
hasItem(hasProperty("myProperty”, Matchers.equalTo(true))))))
如果您知道列表中有多少对象,则可以使用
检查第一项.andExpect(model().attribute("MyObjectForm",
hasProperty("myObjects", contains(
hasProperty("myProperty”, Matchers.equalTo(true)),
any(MyObject.class),
...
any(MyObject.class)))));
以防其他人遇到这个问题。我 运行 遇到了类似的问题,试图测试 List
.andExpect(model().attribute("customerList", Matchers.hasItemInArray(Matchers.<Customer> hasProperty("firstName", Matchers.equalToIgnoringCase("Jean-Luc")))))