我有一个Spring MVC 3.2项目,我想与他们合作。集成测试。问题是我所有的依赖关系,即使使用Sprint测试也会使测试变得非常困难。
我有一个像这样的控制器:
@Controller
@RequestMapping( "/" )
public class HomeController {
@Autowired
MenuService menuService; // will return JSON
@Autowired
OfficeService officeService;
@RequestMapping( method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE )
@ResponseBody
public AuthenticatedUser rootCall( HttpServletRequest request ) {
AuthenticatedUser authentic = new AuthenticatedUser();
Office office = officeService.findByURL(request.getServerName());
authentic.setOffice(office);
// set the user role to authorized so they can navigate the site
menuService.updateVisitorWithMenu(authentic);
return returnValue;
}
这将返回一个JSON对象。我想测试这个调用返回一个200和带有JSON的正确对象。但是,我有许多其他类被@Autowired类调用,即使我像这样嘲笑它们:
@Bean public MenuRepository menuRepository() {
return Mockito.mock(MenuRepository.class);
}
这会创建很多模拟类。以下是我试图测试的方法:
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration( classes = JpaTestConfig.class )
@WebAppConfiguration
public class HomeControllerTest {
private EmbeddedDatabase database;
@Resource
private WebApplicationContext webApplicationContext;
@Autowired
OfficeService officeService;
private MockMvc mockMvc;
@Test
public void testRoot() throws Exception { mockMvc.perform(get("/")).andDo(print()).andExpect(status().isOk())
.andExpect(content().contentType(IntegrationTestUtil.APPLICATION_JSON_UTF8))
.andExpect(content().string(<I would like canned data here>));
}
我可以通过设置H2嵌入式数据库并填充它,但我想知道这是否真的是对这个控制器或应用程序的测试?有人能推荐一些更好的方法来进行这种集成测试吗如何编写单元测试控制器?
谢谢!
答案 0 :(得分:1)
查看spring show case项目并查看您将能够理解的控制器测试用例,并查看测试控制器的标准方法。 MappingControllerTests.java有一些基于json的控制器测试