白盒测试
白盒测试,要求对代码中的每行代码至少覆盖一次。
@ApiModelProperty("学科类别")
@ManyToOne
// 设置学科类别字段不能为空
@JoinColumn(nullable = false)
@JsonView({NoneJsonView.class,
MeasurementUnitCategoryJsonView.getAllByDisciplineId.class})
private Discipline discipline;
错误信息测试
以之前对学科设置不为空为例,我们需要测试两种情况,为空时的异常和不为空时保存正常。
@Test
public void saveTest() {
logger.debug("新建计量单位类别");
MeasurementUnitCategory measurementUnitCategory = new MeasurementUnitCategory();
logger.debug("测试保存");
measurementUnitCategoryService.save(measurementUnitCategory);
}
这里我们调用了save
方法,但是IDE
并没有提示我们需要捕获异常,但是并不代表这个save
方法不抛出异常,可以抛出非检查的RuntimeException
或其派生的异常。
为了测试这个异常,我们首先运行这行代码,看看出现什么异常。
异常抛出
org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement
Caused by: org.hibernate.exception.ConstraintViolationException: could not execute statement
Caused by: org.h2.jdbc.JdbcSQLException: NULL not allowed for column "DISCIPLINE_ID"; SQL statement:
insert into measurement_unit_category (id, discipline_id, is_asc) values (null, ?, ?) [23502-194]
我们看到有三个异常,先是插入这条记录时的JdbcSQLException
,然后该异常引起了ConstraintViolationException
,新异常又引起了DataIntegrityViolationException
。
当底层抛出了一个JdbcSQLException
,然后调用它的Hibernate
就catch
了这个异常,并用该异常构建了一个新的异常ConstraintViolationException
(限制违反异常),然后再向上层抛出,再到上层Spring
捕获,构建新异常DataIntegrityViolationException
并抛给了我们,我们没有处理,然后控制台就报错了。
捕获异常
好了,我们这里需要捕获的异常就是Spring
抛给我们的DataIntegrityViolationException
异常。
@Test
public void saveTest() {
logger.debug("基础测试数据准备");
MeasurementUnitCategory measurementUnitCategory = new MeasurementUnitCategory();
Boolean catchException = false;
logger.debug("测试保存,期待抛出异常");
try {
measurementUnitCategoryService.save(measurementUnitCategory);
} catch (DataIntegrityViolationException e) {
catchException = true;
}
logger.debug("断言捕获异常为真");
assertThat(catchException).isTrue();
}
运行测试,通过。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。