我拥有宁静的服务,并且我想在不连接数据库的情况下对它们进行单元测试,因此我编写了以下代码:
@Before
public void setup() throws Exception {
this.mockMvc = webAppContextSetup(webApplicationContext).build();
adminDao = mock(AdminDaoImpl.class);
adminService = new AdminServiceImpl(adminDao);
}
@Test
public void getUserList_test() throws Exception {
User user = getTestUser();
List<User> expected = spy(Lists.newArrayList(user));
when(adminDao.selectUserList()).thenReturn(expected);
mockMvc.perform(get("/admin/user"))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$", hasSize(1)))
;
}
服务被调用,但是我的问题是这行代码
when(adminDao.selectUserList()).thenReturn(expected);
不起作用,我的意思是它确实调用了adminDao.select方法,因此从数据库中获取结果.我不要
您是否知道如何模拟方法调用?
解决方法:
感谢@M. Deinum,我解决了我的问题,添加了一个TestContext配置文件:
@Configuration
public class TestContext {
@Bean
public AdminDaoImpl adminDao() {
return Mockito.mock(AdminDaoImpl.class);
}
@Bean
public AdminServiceImpl adminService() {
return new AdminServiceImpl(adminDao());
}
}
然后在我的测试课中,我用
@ContextConfiguration(classes = {TestContext.class})
值得一提的是在测试类的setUp中,我需要重置嘲笑类以防止泄漏:
@Before
public void setup() throws Exception {
Mockito.reset(adminDaoMock);
mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
}