对于Spring MVC测试(与Java Hamcrest一起工作):
测试必要的场景渲染一个带有Model
对象的jsp文件,该对象只包含Person
类的实例,我有以下(工作正常):
.andExpect(model().size(1))
.andExpect(model().attributeExists("persona"))
.andExpect(model().errorCount(0))
.andExpect(model().hasNoErrors())
.andExpect(model().attribute("persona", notNullValue()))
.andExpect(model().attribute("persona", isA(Persona.class)))
.andExpect(model().attribute("persona", hasProperty("id", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("id", is(persona.getId()))))
.andExpect(model().attribute("persona", hasProperty("nombre", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("nombre", is(persona.getNombre()))))
.andExpect(model().attribute("persona", hasProperty("apellido", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("apellido", is(persona.getApellido()))))
.andExpect(model().attribute("persona", hasProperty("fecha", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("fecha", is(persona.getFecha()))));
我想知道是否可能以及如何计算java对象的属性/属性数,在本例中为Person
类。
当Person
类有新字段时,我需要这个,即:age
和height
。因此,测试方法应该不允许我更新count
号并添加
.andExpect(model().attribute("persona", hasProperty("age", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("age", is(persona.getAge()))))
.andExpect(model().attribute("persona", hasProperty("height", notNullValue())))
.andExpect(model().attribute("persona", hasProperty("height", is(persona.getHeight()))));
json
与
.andExpect(jsonPath("$").exists())
.andExpect(jsonPath("$.*", hasSize(is(4))))
答案 0 :(得分:0)
int attrCount = model().getClass().getDeclaredFields().length;
assertThat(attrCount, equalTo(10));