Junit多策略测试切换

发表于:2018-1-30 11:13

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:寻风1980    来源:简书

  介绍
  最近在弄单元测试,之前基础版本的测试基本都是写好的,但是缺少高级版本的测试,又不想把代码copy一份,要就地实现基础版和高级版的测试复用,并且需要从配置读取测试策略来指定当前测试策略。因为基础版和高级版只是大部分功能差不多,因此还要做到通过注解的方式来限定当前测试方法或测试类是否运行于当前测试策略。下面废话少说,Let's Go!
  实践
  之前也没有好好深入junit,仔细想了一下,我们要做到以下两点:
  1.需要做到通过注解限定当前测试类或测试方法是否执行。这个使用Category注解可以实现,但是Category的作用太过于简单,仅仅只能做到限定测试是否执行。
  2.需要做到针对同一测试方法在不同测试策略下可以有不相同的处理,其中可能请求地址不一样,返回结果以及断言处理不一样等。这个之前最初考虑的时候太过于复杂,当时想实现自定义注解,然后通过aop拦截去改写请求参数和处理流程。这样做太过于复杂,而且不同测试策略不会同时运行。最后的做法就是将测试流程提取到接口,各自的测试策略自己去实现,然后在初始化时,根据当前测试策略去绑定对应的实例,测试使用时直接使用接口就可以实现多策略测试的切换,再结合第一点基本上就可以满足需求了。
  主要代码如下:
package com.lux.junit;
import com.lux.junit.category.BasicCategory;
import com.lux.junit.category.SeniorCategory;
import com.lux.junit.helper.BaseUserHelper;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class JunitApplicationTests {
@Autowired
private BaseUserHelper userHelper;
@Test
public void contextLoads() {
}
@Test
@Category({BasicCategory.class, SeniorCategory.class})
public void getUserTest() {
System.out.println(userHelper.getUser());
}
@Test
@Category(SeniorCategory.class)
public void getSeniorUserTest() {
System.out.println(userHelper.getUser());
}
}
package com.lux.junit.configure;
import com.lux.junit.category.BasicCategory;
import com.lux.junit.helper.BaseUserHelper;
import com.lux.junit.helper.BasicUserHelper;
import com.lux.junit.helper.SeniorUserHelper;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Created with IntelliJ IDEA.
* User: chenfeilong
* Date: 2018/1/28
* Time: 23:30
* Description:
*/
@Configuration
public class CategoryConfigure {
@Value("${test.category}")
String currentCategory;
@Bean("userHelper")
public BaseUserHelper userHelper() {
if (BasicCategory.class.getName().equals(currentCategory)) {
return new BasicUserHelper();
} else {
return new SeniorUserHelper();
}
}
}
  最后
  Category需要传递includeCategories参数,其实它可以是多个策略。通常使用命令行传入或使用gradle传入。但是我们需要从配置文件读入,需要像下面这样做。
test {
useJUnit {
includeCategories getCategory()
}
}
String getCategory() {
def category = doGetCategory()
println("current catagory: " + category)
return category
}
String doGetCategory() {
def propertiesFilePath = "src/main/resources/application.properties"
def defaultCategory = "com.lux.junit.category.BasicCategory"
File propFile = new File(propertiesFilePath)
if (propFile.canRead()) {
Properties props = new Properties()
props.load(new FileInputStream(propFile))
return props.getProperty("test.category")
}
println("can't find catagory config,use default catagory " + defaultCategory)
return defaultCategory
}

上文内容不用于商业目的,如涉及知识产权问题,请权利人联系博为峰小编(021-64471599-8017),我们将立即处理。
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号