求学者

Spring 中引入单元测试

Spring 中引入单元测试
操作步骤

  1. 下载 junit-*.jar 并引入项目中。
  2. 创建 UnitTestBase 类,完成对 Spring 配置文件的加载、销毁
  3. 所有的单元测试类都继承 UnitTestBase,通过它的 getBean 方法获取想要得到的对象
  4. 子类(具体执行单元测试的类)加注解:@RunWith(BlockJUnit4ClassRunner.class)
  5. 单元测试方法加注解:@Test
  6. 右键执行

UnitTestBase 类(加载 spring.xml 配置文件)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.imooc.test.base;
import org.junit.After;
import org.junit.Before;
import org.springframework.beans.BeansException;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.util.StringUtils;
public class UnitTestBase {
private ClassPathXmlApplicationContext context;
// springxml的路径
private String springXmlpath;
public UnitTestBase() {}
// 构造器传入路径,子类构造器传入具体路径
public UnitTestBase(String springXmlpath) {
this.springXmlpath = springXmlpath;
}
// 执行顺序 @Before -- @Test -- @After
@Before
public void before() {
// 判空处理
if (StringUtils.isEmpty(springXmlpath)) {
springXmlpath = "classpath*:spring-*.xml";
}
try {
// 上下文,Spring的容器
// 查找配置文件中的配置信息,加载信息到context中,获取信息时使用context.getBean(String id)方法获取相应对象
context = new ClassPathXmlApplicationContext(springXmlpath.split("[,\\s]+"));
context.start();
} catch (BeansException e) {
e.printStackTrace();
}
}
@After
public void after() {
context.destroy();
}
// context的bean方法
@SuppressWarnings("unchecked")
protected <T extends Object> T getBean(String beanId) {
try {
return (T)context.getBean(beanId);
} catch (BeansException e) {
e.printStackTrace();
return null;
}
}
protected <T extends Object> T getBean(Class<T> clazz) {
try {
return context.getBean(clazz);
} catch (BeansException e) {
e.printStackTrace();
return null;
}
}
}

注意:

  • springxml为配置文件路径,构造器传入路径,子类构造器传入具体路径
  • 执行顺序 @Before – @Test – @After
  • @Before 中查找并加载配置信息,存放于 Spring 的容器 context 中,使用context.getBean获取相应对象。
  • @Test 子类中需要测试的方法
  • @After 关闭context