MockMvc: ожидаемый перенаправленный URL-адрес:</ WEB-INF / views / layout.vm>, но был:<null>
У меня есть следующий конфигурационный файл Velocity для тестового и основного в моем весеннем приложении MVC:
@Bean
public VelocityConfigurer velocityConfig(){
VelocityConfigurer velocityConfig = new VelocityConfigurer();
velocityConfig.setResourceLoaderPath("/WEB-INF/views/");
return velocityConfig;
}
@Bean
public VelocityLayoutViewResolver viewResolver(){
VelocityLayoutViewResolver viewResolver = new VelocityLayoutViewResolver();
viewResolver.setCache(true);
viewResolver.setLayoutUrl("layout.vm");
viewResolver.setPrefix("");
viewResolver.setSuffix(".vm");
return viewResolver;
}
Он работает правильно, когда я развернул WAR и все мои MockMvcResultMatchers
в тесте за исключением `forwardedUrl, который возвращает ноль:
@Test
public void testHome() throws Exception{
mockMvc.perform(MockMvcRequestBuilders.get("/"))
.andExpect(MockMvcResultMatchers.status().isOk())
.andExpect(MockMvcResultMatchers.view().name("index"))
.andExpect(MockMvcResultMatchers.forwardedUrl("/WEB-INF/views/layout.vm"))
.andExpect(MockMvcResultMatchers.model().attribute("myData", Matchers.is(Matchers.not(Matchers.empty()))));
Соответствующий тестируемый контроллер имеет следующее начало:
@RequestMapping({"/index", "/"})
public ModelAndView home(){
Начинается трассировка стека:
java.lang.AssertionError: Forwarded URL expected:</WEB-INF/views/layout.vm> but was:<null>
at org.springframework.test.util.AssertionErrors.fail(AssertionErrors.java:60)
at org.springframework.test.util.AssertionErrors.assertEquals(AssertionErrors.java:89)
at org.springframework.test.web.servlet.result.MockMvcResultMatchers$1.match(MockMvcResultMatchers.java:93)
at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:152)
at com...
Почему переадресованный URL неверен? Это проблема с MockMvc или настройкой скорости?