我正在为单元测试用例模拟JdbcTemplate,因为不想达到实际的数据库集成.
但它正在减少我的代码覆盖率(红色表示缺少覆盖率).
以下是使用的代码段.使用用户定义的映射器会发生同样的情况.
final List<String> resultList = new ArrayList<String>();
resultList.add("test1");
resultList.add("test2");
final JdbcTemplate template = Mockito.mock(JdbcTemplate.class);
Mockito.when(
template.query(Mockito.anyString(), Mockito.any(Object[].class),
Mockito.any(RowMapper.class))).thenReturn(resultList);
sampleDao.setJdbcTemplate(template);
任何增加dao类代码覆盖率的想法.在我的情况下,所有方法都不适合用户定义的行映射器.
解决方法:
一种方法如下:
final List<String> resultList = new ArrayList<String>();
resultList.add("test1");
resultList.add("test2");
final JdbcTemplate template = mock(JdbcTemplate.class);
when(template.query(anyString(), any(Object[].class), any(RowMapper.class)))
.thenAnswer(new Answer<List<String>>() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
// Fetch the method arguments
Object[] args = invocation.getArguments();
// Fetch the row mapper instance from the arguments
RowMapper<String> rm = (RowMapper<String>) args[2];
// Create a mock result set and setup an expectation on it
ResultSet rs = mock(ResultSet.class);
String expected = "value returned by query";
when(rs.getString(1)).thenReturn(expected);
// Invoke the row mapper
String actual = rm.mapRow(rs, 0);
// Assert the result of the row mapper execution
assertEquals(expected, actual);
// Return your created list for the template#query call
return resultList;
}
});
但正如您所看到的,测试行映射器的代码很多:)
就个人而言,我更倾向于进行集成测试或将行映射器移动到它自己的类中,并单独测试它.