我尝试为我的spring MVC app编写集成测试。
问题:
似乎TilesView在我的spring mvc测试中无法解析视图。 在我的测试中,MockMvcResultMatchers.forwardedUrl()返回“/WEB-INF/jsp/layout.jsp”,而不是“/WEB-INF/jsp/manageEntities.jsp”
*我的应用程序运行正常,只有测试中存在问题!
在我的测试类中查看'//断言错误'评论
代码:
也许代码比文字更具说明性。我试图尽可能清楚地表达它。
的控制器: 的
@Controller
public class MyController {
@RequestMapping("/manageEntities.html")
public String showManageEntitiesPage(Map<String, Object> model) {
//some logic ...
return "manageEntities";
}
的测试: 的
@WebAppConfiguration
@ContextHierarchy({
@ContextConfiguration(locations = { "classpath:ctx/persistenceContextTest.xml" }),
@ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/servlet.xml" })
})
@RunWith(SpringJUnit4ClassRunner.class)
public class EntityControllerTest {
@Autowired
protected WebApplicationContext wac;
private MockMvc mockMvc;
@Before
public void setUp() throws Exception {
this.mockMvc = webAppContextSetup(this.wac).build();
}
@Test // FAILS!!
public void entity_test() throws Exception {
//neede mocks
//........
mockMvc.perform(get("/manageEntities.html"))
.andExpect(status().isOk())
.andExpect(forwardedUrl("/WEB-INF/jsp/manageEntities.jsp")); //Assertion error!!!
}
}
的 tiles.xml: 的
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
"http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
<tiles-definitions>
<definition name="base.definition" template="/WEB-INF/jsp/layout.jsp">
<put-attribute name="title" value="" />
<put-attribute name="header" value="/WEB-INF/jsp/header.jsp"/>
<put-attribute name="menu" value="/WEB-INF/jsp/menu.jsp" />
<put-attribute name="body" value="" />
<put-attribute name="footer" value="/WEB-INF/jsp/footer.jsp" />
</definition>
<definition name="manageEntities" extends="base.definition">
<put-attribute name="title" value="Manage Entities"/>
<put-attribute name="body" value="/WEB-INF/jsp/manageEntities.jsp"/>
</definition>
//....
的的AssertionError: 的
java.lang.AssertionError: Forwarded URL expected:</WEB-INF/jsp/manageEntities.jsp> but was:</WEB-INF/jsp/layout.jsp>
答案 0 :(得分:4)
你的断言是错误的。您正在使用Tiles
,因此也咨询了ViewResolver
,请记住您基本上是在进行集成测试而不是单元测试。您正在测试整个组件链一起工作。
您需要为测试切换ViewResovler
,基本上使您的测试不再有价值,因为您没有测试实际配置,或者找到另一个验证响应。 (例如,您可能需要内容并检查标题。)
mockMvc.perform(get("/manageEntities.html"))
.andExpect(status().isOk())
.andExpect(content().source(containsString("Manage Entities"));
基本上上面检查结果页面,包含给定的String。 (从我的头脑中可能需要一些调整)。
更多信息