gpt4 book ai didi

xpath - 使用 Hamcrest 进行 Spring MVC 测试 : How test size and value for a Generic Collection

转载 作者:行者123 更新时间:2023-12-01 19:30:12 26 4
gpt4 key购买 nike

我正在合作:

  • Spring MVC
  • 春歇
  • Spring MVC 测试

它用于生成数据:

  • XML
  • JSON
  • HTML

我有这门课:

@XmlRootElement(name="generic-collection")
public class GenericCollection<T> {

private Collection<T> collection;

public GenericCollection(){

}

public GenericCollection(Collection<T> collection){
this.collection = collection;
}

@XmlElement(name="item")
public Collection<T> getCollection() {
return collection;
}

public void setCollection(Collection<T> collection) {
this.collection = collection;
}

@Override
public String toString() {
StringBuilder builder = new StringBuilder();
for(Object object : collection){
builder.append("[");
builder.append(object.toString());
builder.append("]");
}
return builder.toString();
}

}

我需要 XML 的包装类。对于 JSON 来说可以安心复用。

@Controller has(观察集合是如何创建的):

@RequestMapping(method=RequestMethod.GET, produces={MediaType.APPLICATION_XML_VALUE, MediaType.APPLICATION_JSON_UTF8_VALUE})
public class PersonaFindAllController {

private GenericCollection<Persona> personas;

public PersonaFindAllController(){
personas = new GenericCollection<>(PersonaFactory.crearPersonas());
}

@RequestMapping对于 XML/JSON 来说是

@RequestMapping(value={PersonaFindAllURLSupport.FINDALL})
public @ResponseBody GenericCollection<Persona> findAll(){
return personas;
}

考虑上面的Rest,因为它使用 @ResponseBody

通过 Spring MVC 测试和 Hamcrest

我可以分别检查XML和JSON的内容,如下所示:

resultActions.andExpect(xpath("generic-collection").exists())
.andExpect(xpath("generic-collection").nodeCount(is(1)))

.andExpect(xpath("generic-collection/item").exists())
.andExpect(xpath("generic-collection/item").nodeCount(is(5)))

.andExpect(xpath("generic-collection/item[1]").exists())
.andExpect(xpath("generic-collection/item[1]/*").nodeCount(is(4)))
.andExpect(xpath("generic-collection/item[1]/id").exists())
.andExpect(xpath("generic-collection/item[1]/id").string(is("88")))
….

resultActions.andExpect(jsonPath('collection').exists())
.andExpect(jsonPath('collection').isArray())

.andExpect(jsonPath('collection',hasSize(is(5))))

.andExpect(jsonPath('collection[0]').exists())
.andExpect(jsonPath('collection[0].*', hasSize(is(4))))
.andExpect(jsonPath('collection[0].id').exists())
.andExpect(jsonPath('collection[0].id').value(is("88")))
….

我的问题是 Spring MVC。在相同 @Controller低于其他@RequestMapping方法:

@RequestMapping(value={PersonaFindAllURLSupport.FINDALL},       produces=MediaType.TEXT_HTML_VALUE)
public String findAll(Model model){
model.addAttribute(personas);
return "some view";
}

它返回 View 名称并使用模型。 Spring MVC 中常见的情况

感谢 Spring MVC 测试 print()方法我可以确认以下内容:

ModelAndView:
View name = persona/findAll
View = null
Attribute = genericCollection
value = [Persona [id=88, nombre=Manuel, apellido=Jordan, fecha=Mon Jul 06 00:00:00 PET 1981]][Persona [id=87, nombre=Leonardo, apellido=Jordan, fecha=Sun Jul 05 00:00:00 PET 1981]]...]
errors = []

仔细看:

  • value数据
  • 记住 GenericCollection<T>toString()方法。

为了测试我有:

resultActions.andExpect(model().attribute("genericCollection", notNullValue()))

直到有效果。因此返回了一些非空数据。

如何查看大小和数据?

我尝试过尺寸:

.andExpect(model().attribute("genericCollection", hasSize(5)))

我明白了

java.lang.AssertionError: Model attribute 'genericCollection'
Expected: a collection with size <5>
but: was <[Persona [id=88, nombre=Manuel, apellido=Jordan, fecha=Mon Jul 06 00:00:00 PET 1981]….]

如果我使用

.andExpect(model().attribute("genericCollection", hasItem("collection")))

我总是

java.lang.AssertionError: Model attribute 'genericCollection'
Expected: a collection containing "collection"
but: was <[Persona [id=88, nombre=Manuel, apellido=Jordan, fecha=Mon Jul 06 00:00:00 PET 1981]]

那么正确的语法是什么。

最佳答案

因为您尝试为包装在 GenericConnection 类中的 Collection 编写断言,所以您需要首先获取对实际 Collection 的引用,然后才能为其编写断言。这应该可以解决问题:

.andExpect(model().attribute("genericCollection", 
hasProperty("collection", hasSize(5))
))

检查内容的方法如下:

.andExpect(model().attribute("genericCollection", 
hasProperty("collection",
hasItem(
allOf(
hasProperty("id", is("100")),
hasProperty("nombre", is("Jesús")),
hasProperty("apellido", is("Mão"))

)
)
)
)
)

关于xpath - 使用 Hamcrest 进行 Spring MVC 测试 : How test size and value for a Generic Collection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34473750/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com