2
我嘗試爲我的Spring MVC應用程序編寫集成測試。Spring MVC + Tiles:集成測試
問題:
似乎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>
//....
Asse田:
java.lang.AssertionError: Forwarded URL expected:</WEB-INF/jsp/manageEntities.jsp> but was:</WEB-INF/jsp/layout.jsp>
請,更多的細節。你的意思是找到另一個驗證答覆。 –
修改我的答案。 –