使用Hamcrest进行Spring MVC测试:如何测试Generic Collection的大小和值

时间:2015-12-26 17:53:23

标签: xpath junit hamcrest jsonpath spring-test-mvc

我正在使用:

  • Spring MVC
  • 春季休息
  • Spring MVC Test

用于生成数据:

  • XML
  • JS​​ON
  • 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有(观察集合的创建方式):

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

返回视图名称并使用模型。它在Spring MVC中是多么常见

感谢Spring MVC Test 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>的{​​{1}}方法。

为了测试,我有:

toString()

直到有效。因此,返回了一些数据而非null。

如何查看尺寸和数据?

我试过这个尺寸:

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

那么正确的语法是什么。

1 个答案:

答案 0 :(得分:3)

因为您尝试为包含在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"))

                                )
                             )
                           )
                         )
                     )