我正在使用JUnit
API测试方法,我想测试局部变量的值,以便获得更好的分支覆盖率。在测试中的方法widgets
是List
类型的变量,在调试时我发现它不是null。我想为Null
测试它,但我不确定如何更改它的价值?
待测方法:
public boolean preProcess(ServiceContext ctx) throws ProcessorException {
logMethodStartDebug( ctx, CLASS_NAME, "preProcess(ServiceContext, Object)" );
try {
if( Constants.YES.equalsIgnoreCase( EISSpringUtil.getMessage( ENABLE_SELF_HEALING_FLAG ) ) ) {
if( AppContext.getApplicationContext().containsBean( ISO + AGGREGATOR_HEALTH_PREFIX ) ) {
IMonitoringWidgetAggregator aggregator = (IMonitoringWidgetAggregator)AppContext.getBean( ISO + AGGREGATOR_HEALTH_PREFIX );
List<MonitoringWidget> widgets = aggregator.aggregate();
if( widgets != null && widgets.size() > 0 ) {
for( MonitoringWidget mw : widgets ) {
if( mw.getStatus().equals( MonitoringStatus.FAIL ) ) {
ctx.addMessage( ErrorMessageUtil.generateMessage( getMessageFactory(), ErrorCodeConstants.STATUS_6000, new Object[] { ctx.getSystemName(), mw.getMonitoringCode()} ) );
return false;
}
}
}
}
}
return true;
} finally {
logMethodEndDebug( ctx, CLASS_NAME, "preProcess(ServiceContext, Object)" );
}
}
正面情景的JUnit测试用例
@Test
public void testPreProcess() throws Exception {
AppContext.setApplicationContext( applicationContext );
ServiceContext ctx = new ServiceContext();
boolean b = preProcess( ctx );
assertFalse( b );
assertNotNull( ctx );
assertNotNull( ctx.getMessages() );
assertNotNull( ctx.getMessages().get( 0 ) );
assertEquals( "code:6000", ctx.getMessages().get( 0 ) .getMessageCode() );
}
先谢谢
答案 0 :(得分:0)
您需要在AppContext中为单元测试定义测试bean:
IMonitoringWidgetAggregator aggregator = (IMonitoringWidgetAggregator)AppContext.getBean( ISO + AGGREGATOR_HEALTH_PREFIX );
您可以访问聚合器,这意味着,例如,如果您使用像Spring这样的CDI / IoC兼容框架(或者只是普通的旧J2EE或甚至像KumulzuEE这样的东西),您可以使用@ContextConfiguration和@Configuration注释指定从哪里注入@Beans。因此,如果您希望测试整个集成,可以选择使用模拟IMonitoringWidgetAggregator或实现的实例进行注入。
答案 1 :(得分:0)
使窗口小部件处理成为单元测试重点的简单选项是将该处理重构为单独的方法:
public boolean preProcess(ServiceContext ctx) throws ProcessorException {
logMethodStartDebug( ctx, CLASS_NAME, "preProcess(ServiceContext, Object)" );
try {
if( Constants.YES.equalsIgnoreCase( EISSpringUtil.getMessage( ENABLE_SELF_HEALING_FLAG ) ) ) {
if( AppContext.getApplicationContext().containsBean( ISO + AGGREGATOR_HEALTH_PREFIX ) ) {
IMonitoringWidgetAggregator aggregator = (IMonitoringWidgetAggregator)AppContext.getBean( ISO + AGGREGATOR_HEALTH_PREFIX );
List<MonitoringWidget> widgets = aggregator.aggregate();
return preProcessWidgets(widgets);
}
}
return true;
} finally {
logMethodEndDebug( ctx, CLASS_NAME, "preProcess(ServiceContext, Object)" );
}
}
private boolean preProcessWidgets(final List<MonitoringWidget> widgets) {
if( widgets != null && widgets.size() > 0 ) {
for( MonitoringWidget mw : widgets ) {
if( mw.getStatus().equals( MonitoringStatus.FAIL ) ) {
ctx.addMessage( ErrorMessageUtil.generateMessage( getMessageFactory(), ErrorCodeConstants.STATUS_6000, new Object[] { ctx.getSystemName(), mw.getMonitoringCode()} ) );
return false;
}
}
}
return true;
}
使用此结构,您现在可以轻松编写新的JUnit测试用例,这些测试用例专注于在preProcessWidgets
方法中执行的窗口小部件处理,例如:传递null
List
,传递空List
,您也可以以适用于您的应用程序的其他方式模拟widgets
参数。