Spring 使用 Hamcrest 进行 MVC 测试:如何测试通用集合的大小和值

Spring MVC Test with Hamcrest: How test size and value for a Generic Collection

我正在与:

它用于在以下位置生成数据:

我有这个 class:

@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 的包装class。 JSON.

可以安心重复使用

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

@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());         
    }

XML/JSON 的 @RequestMapping

@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";
}

它returns一个视图名称并使用一个模型。它在 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 = []

仔细看:

为了测试我有:

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

直到有效果。因此返回了一些数据而不是 null。

如何查看大小和数据?

我试过尺码:

.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 class 中的集合编写断言,您需要先获取对实际集合的引用,然后才能为其编写断言。这应该可以解决问题:

.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"))

                                )
                             )
                           )
                         )
                     )