Junit使用教程(四)

2024-09-06 15:18
文章标签 使用 教程 junit

本文主要是介绍Junit使用教程(四),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、会用Spring测试套件的好处

在开发基于Spring的应用时,如果你还直接使用Junit进行单元测试,那你就错过了Spring为我们所提供的饕餮大餐了。使用Junit直接进行单元测试有以下四大不足:

1)导致多次Spring容器初始化问题

根据JUnit测试方法的调用流程,每执行一个测试方法都会创建一个测试用例的实例并调用setUp()方法。由于一般情况下,我们在setUp()方法中初始化Spring容器,这意味着如果测试用例有多少个测试方法,Spring容器就会被重复初始化多次。虽然初始化Spring容器的速度并不会太慢,但由于可能会在Spring容器初始化时执行加载Hibernate映射文件等耗时的操作,如果每执行一个测试方法都必须重复初始化Spring容器,则对测试性能的影响是不容忽视的;

使用Spring测试套件,Spring容器只会初始化一次

2)需要使用硬编码方式手工获取Bean

在测试用例类中我们需要通过ctx.getBean()方法从Spirng容器中获取需要测试的目标Bean,并且还要进行强制类型转换的造型操作。这种乏味的操作迷漫在测试用例的代码中,让人觉得烦琐不堪;

使用Spring测试套件,测试用例类中的属性会被自动填充Spring容器的对应Bean,无须在手工设置Bean!

3)数据库现场容易遭受破坏

测试方法对数据库的更改操作会持久化到数据库中。虽然是针对开发数据库进行操作,但如果数据操作的影响是持久的,可能会影响到后面的测试行为。举个例子,用户在测试方法中插入一条ID为1的User记录,第一次运行不会有问题,第二次运行时,就会因为主键冲突而导致测试用例失败。所以应该既能够完成功能逻辑检查,又能够在测试完成后恢复现场,不会留下“后遗症”;

使用Spring测试套件,Spring会在你验证后,自动回滚对数据库的操作,保证数据库的现场不被破坏,因此重复测试不会发生问题!

4)不方便对数据操作正确性进行检查

假如我们向登录日志表插入了一条成功登录日志,可是我们却没有对t_login_log表中是否确实添加了一条记录进行检查。一般情况下,我们可能是打开数据库,肉眼观察是否插入了相应的记录,但这严重违背了自动测试的原则。试想在测试包括成千上万个数据操作行为的程序时,如何用肉眼进行检查?

只要你继承Spring的测试套件的用例类,你就可以通过jdbcTemplate(或Dao等)在同一事务中访问数据库,查询数据的变化,验证操作的正确性!

Spring提供了一套扩展于Junit测试用例的测试套件,使用这套测试套件完全解决了以上四个问题,让我们测试Spring的应用更加方便。这个测试套件主要由org.springframework.test包下的若干类组成,使用简单快捷,方便上手。

二、使用方法

1)基本用法

[java] view plain copy
print ?
  1. package com.test;  
  2.   
  3. import javax.annotation.Resource;  
  4.   
  5. import org.junit.Test;  
  6. import org.junit.runner.RunWith;  
  7. import org.springframework.test.context.ContextConfiguration;  
  8. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;  
  9.   
  10. @RunWith(SpringJUnit4ClassRunner.class)  
  11. @ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml""classpath:services/ext/service-*.xml" })  
  12. public class UserServiceTest {  
  13.   
  14.     @Resource  
  15.     private IUserService userService;  
  16.   
  17.     @Test  
  18.     public void testAddOpinion1() {  
  19.         userService.downloadCount(1);  
  20.         System.out.println(1);  
  21.     }  
  22.   
  23.     @Test  
  24.     public void testAddOpinion2() {  
  25.         userService.downloadCount(2);  
  26.         System.out.println(2);  
  27.     }  
  28. }  
package com.test;import javax.annotation.Resource;import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml", "classpath:services/ext/service-*.xml" })
public class UserServiceTest {@Resourceprivate IUserService userService;@Testpublic void testAddOpinion1() {userService.downloadCount(1);System.out.println(1);}@Testpublic void testAddOpinion2() {userService.downloadCount(2);System.out.println(2);}
}

@RunWith(SpringJUnit4ClassRunner.class) 用于配置spring中测试的环境

@ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml", "classpath:services/ext/service-*.xml" })用于指定配置文件所在的位置

@Resource注入Spring容器Bean对象,注意与@Autowired区别

2)事务用法

[java] view plain copy
print ?
  1. package com.test;  
  2.   
  3. import javax.annotation.Resource;  
  4.   
  5. import org.junit.Test;  
  6. import org.junit.runner.RunWith;  
  7. import org.springframework.test.annotation.Rollback;  
  8. import org.springframework.test.context.ContextConfiguration;  
  9. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;  
  10. import org.springframework.test.context.transaction.TransactionConfiguration;  
  11. import org.springframework.transaction.annotation.Transactional;  
  12.   
  13. @RunWith(SpringJUnit4ClassRunner.class)  
  14. @ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml""classpath:services/ext/service-*.xml" })  
  15. @Transactional  
  16. @TransactionConfiguration(transactionManager = "transactionManager")  
  17. //@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)  
  18. public class UserServiceTest {  
  19.   
  20.     @Resource  
  21.     private IUserService userService;  
  22.   
  23.     @Test  
  24. //  @Transactional  
  25.     public void testAddOpinion1() {  
  26.         userService.downloadCount(1);  
  27.         System.out.println(1);  
  28.     }  
  29.   
  30.     @Test  
  31.     @Rollback(false)  
  32.     public void testAddOpinion2() {  
  33.         userService.downloadCount(2);  
  34.         System.out.println(2);  
  35.     }  
  36. }  
package com.test;import javax.annotation.Resource;import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;
import org.springframework.transaction.annotation.Transactional;@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml", "classpath:services/ext/service-*.xml" })
@Transactional
@TransactionConfiguration(transactionManager = "transactionManager")
//@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)
public class UserServiceTest {@Resourceprivate IUserService userService;@Test
//	@Transactionalpublic void testAddOpinion1() {userService.downloadCount(1);System.out.println(1);}@Test@Rollback(false)public void testAddOpinion2() {userService.downloadCount(2);System.out.println(2);}
}

@TransactionConfiguration(transactionManager="transactionManager")读取Spring配置文件中名为transactionManager的事务配置,defaultRollback为事务回滚默认设置。该注解是可选的,可使用@Transactional与@Rollback配合完成事务管理。当然也可以使用@Transactional与@TransactionConfiguration配合。

@Transactional开启事务。可放到类或方法上,类上作用于所有方法。

@Rollback事务回滚配置。只能放到方法上。

3)继承AbstractTransactionalJUnit4SpringContextTests

[java] view plain copy
print ?
  1. package com.test;  
  2.   
  3. import javax.annotation.Resource;  
  4.   
  5. import org.junit.Test;  
  6. import org.springframework.test.context.ContextConfiguration;  
  7. import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;  
  8. import org.springframework.test.context.transaction.TransactionConfiguration;  
  9.   
  10. @ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml""classpath:services/ext/service-*.xml" })  
  11. @TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = false)  
  12. public class UserServiceTest extends AbstractTransactionalJUnit4SpringContextTests {  
  13.   
  14.     @Resource  
  15.     private IUserService userService;  
  16.   
  17.     @Test  
  18.     public void testAddOpinion1() {  
  19.         userService.downloadCount(1);  
  20.         System.out.println(1);  
  21.     }  
  22.   
  23.     @Test  
  24.     public void testAddOpinion2() {  
  25.         userService.downloadCount(2);  
  26.         System.out.println(2);  
  27.     }  
  28. }  
package com.test;import javax.annotation.Resource;import org.junit.Test;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
import org.springframework.test.context.transaction.TransactionConfiguration;@ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml", "classpath:services/ext/service-*.xml" })
@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = false)
public class UserServiceTest extends AbstractTransactionalJUnit4SpringContextTests {@Resourceprivate IUserService userService;@Testpublic void testAddOpinion1() {userService.downloadCount(1);System.out.println(1);}@Testpublic void testAddOpinion2() {userService.downloadCount(2);System.out.println(2);}
}

AbstractTransactionalJUnit4SpringContextTests:这个类为我们解决了在web.xml中配置OpenSessionInview所解决的session生命周期延长的问题,所以要继承这个类。该类已经在类级别预先配置了好了事物支持,因此不必再配置@Transactional和@RunWith

4)继承

[java] view plain copy
print ?
  1. package com.test;  
  2.   
  3. import org.springframework.test.context.ContextConfiguration;  
  4. import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;  
  5. import org.springframework.test.context.transaction.TransactionConfiguration;  
  6.   
  7. @ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml""classpath:services/ext/service-*.xml" })  
  8. @TransactionConfiguration(transactionManager = "transactionManager")  
  9. public class BaseTestCase extends AbstractTransactionalJUnit4SpringContextTests {  
  10.   
  11. }  
package com.test;import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;
import org.springframework.test.context.transaction.TransactionConfiguration;@ContextConfiguration(locations = { "classpath:config/applicationContext-*.xml", "classpath:services/ext/service-*.xml" })
@TransactionConfiguration(transactionManager = "transactionManager")
public class BaseTestCase extends AbstractTransactionalJUnit4SpringContextTests {}
[java] view plain copy
print ?
  1. package com.test;  
  2.   
  3. import javax.annotation.Resource;  
  4.   
  5. import org.junit.Test;  
  6. import org.springframework.test.annotation.Rollback;  
  7.   
  8. public class UserServiceTest extends BaseTestCase {  
  9.   
  10.     @Resource  
  11.     private IUserService userService;  
  12.   
  13.     @Test  
  14.     public void testAddOpinion1() {  
  15.         userService.downloadCount(1);  
  16.         System.out.println(1);  
  17.     }  
  18.   
  19.     @Test  
  20.     @Rollback(false)  
  21.     public void testAddOpinion2() {  
  22.         userService.downloadCount(2);  
  23.         System.out.println(2);  
  24.     }  
  25. }  
package com.test;import javax.annotation.Resource;import org.junit.Test;
import org.springframework.test.annotation.Rollback;public class UserServiceTest extends BaseTestCase {@Resourceprivate IUserService userService;@Testpublic void testAddOpinion1() {userService.downloadCount(1);System.out.println(1);}@Test@Rollback(false)public void testAddOpinion2() {userService.downloadCount(2);System.out.println(2);}
}

5)综合

[java] view plain copy
print ?
  1. @RunWith(SpringJUnit4ClassRunner.class)  
  2. @ContextConfiguration  
  3. @TransactionConfiguration  
  4. @Transactional  
  5. public class PersonDaoTransactionUnitTest extends AbstractTransactionalJUnit4SpringContextTests {  
  6.   
  7.     final Logger logger = LoggerFactory.getLogger(PersonDaoTransactionUnitTest.class);  
  8.   
  9.     protected static int SIZE = 2;  
  10.     protected static Integer ID = new Integer(1);  
  11.     protected static String FIRST_NAME = "Joe";  
  12.     protected static String LAST_NAME = "Smith";  
  13.     protected static String CHANGED_LAST_NAME = "Jackson";  
  14.   
  15.     @Autowired  
  16.     protected PersonDao personDao = null;  
  17.   
  18.     /** 
  19.      * Tests that the size and first record match what is expected before the transaction. 
  20.      */  
  21.     @BeforeTransaction  
  22.     public void beforeTransaction() {  
  23.         testPerson(true, LAST_NAME);  
  24.     }  
  25.   
  26.     /** 
  27.      * Tests person table and changes the first records last name. 
  28.      */  
  29.     @Test  
  30.     public void testHibernateTemplate() throws SQLException {  
  31.         assertNotNull("Person DAO is null.", personDao);  
  32.   
  33.         Collection<Person> lPersons = personDao.findPersons();  
  34.   
  35.         assertNotNull("Person list is null.", lPersons);  
  36.         assertEquals("Number of persons should be " + SIZE + ".", SIZE, lPersons.size());  
  37.   
  38.         for (Person person : lPersons) {  
  39.             assertNotNull("Person is null.", person);  
  40.   
  41.             if (ID.equals(person.getId())) {  
  42.                 assertEquals("Person first name should be " + FIRST_NAME + ".", FIRST_NAME, person.getFirstName());  
  43.                 assertEquals("Person last name should be " + LAST_NAME + ".", LAST_NAME, person.getLastName());  
  44.   
  45.                 person.setLastName(CHANGED_LAST_NAME);  
  46.   
  47.                 personDao.save(person);  
  48.             }  
  49.         }  
  50.     }  
  51.   
  52.     /** 
  53.      * Tests that the size and first record match what is expected after the transaction. 
  54.      */  
  55.     @AfterTransaction  
  56.     public void afterTransaction() {  
  57.         testPerson(false, LAST_NAME);  
  58.     }  
  59.   
  60.     /** 
  61.      * Tests person table. 
  62.      */  
  63.     protected void testPerson(boolean beforeTransaction, String matchLastName) {  
  64.         List<Map<String, Object>> lPersonMaps = simpleJdbcTemplate.queryForList("SELECT * FROM PERSON");  
  65.   
  66.         assertNotNull("Person list is null.", lPersonMaps);  
  67.         assertEquals("Number of persons should be " + SIZE + ".", SIZE, lPersonMaps.size());  
  68.   
  69.         Map<String, Object> hPerson = lPersonMaps.get(0);  
  70.   
  71.         logger.debug((beforeTransaction ? "Before" : "After") + " transaction.  " + hPerson.toString());  
  72.   
  73.         Integer id = (Integer) hPerson.get("ID");  
  74.         String firstName = (String) hPerson.get("FIRST_NAME");  
  75.         String lastName = (String) hPerson.get("LAST_NAME");  
  76.   
  77.         if (ID.equals(id)) {  
  78.             assertEquals("Person first name should be " + FIRST_NAME + ".", FIRST_NAME, firstName);  
  79.             assertEquals("Person last name should be " + matchLastName + ".", matchLastName, lastName);  
  80.         }  
  81.     }  
  82.   
  83. }  
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@TransactionConfiguration
@Transactional
public class PersonDaoTransactionUnitTest extends AbstractTransactionalJUnit4SpringContextTests {final Logger logger = LoggerFactory.getLogger(PersonDaoTransactionUnitTest.class);protected static int SIZE = 2;protected static Integer ID = new Integer(1);protected static String FIRST_NAME = "Joe";protected static String LAST_NAME = "Smith";protected static String CHANGED_LAST_NAME = "Jackson";@Autowiredprotected PersonDao personDao = null;/*** Tests that the size and first record match what is expected before the transaction.*/@BeforeTransactionpublic void beforeTransaction() {testPerson(true, LAST_NAME);}/*** Tests person table and changes the first records last name.*/@Testpublic void testHibernateTemplate() throws SQLException {assertNotNull("Person DAO is null.", personDao);Collection<Person> lPersons = personDao.findPersons();assertNotNull("Person list is null.", lPersons);assertEquals("Number of persons should be " + SIZE + ".", SIZE, lPersons.size());for (Person person : lPersons) {assertNotNull("Person is null.", person);if (ID.equals(person.getId())) {assertEquals("Person first name should be " + FIRST_NAME + ".", FIRST_NAME, person.getFirstName());assertEquals("Person last name should be " + LAST_NAME + ".", LAST_NAME, person.getLastName());person.setLastName(CHANGED_LAST_NAME);personDao.save(person);}}}/*** Tests that the size and first record match what is expected after the transaction.*/@AfterTransactionpublic void afterTransaction() {testPerson(false, LAST_NAME);}/*** Tests person table.*/protected void testPerson(boolean beforeTransaction, String matchLastName) {List<Map<String, Object>> lPersonMaps = simpleJdbcTemplate.queryForList("SELECT * FROM PERSON");assertNotNull("Person list is null.", lPersonMaps);assertEquals("Number of persons should be " + SIZE + ".", SIZE, lPersonMaps.size());Map<String, Object> hPerson = lPersonMaps.get(0);logger.debug((beforeTransaction ? "Before" : "After") + " transaction.  " + hPerson.toString());Integer id = (Integer) hPerson.get("ID");String firstName = (String) hPerson.get("FIRST_NAME");String lastName = (String) hPerson.get("LAST_NAME");if (ID.equals(id)) {assertEquals("Person first name should be " + FIRST_NAME + ".", FIRST_NAME, firstName);assertEquals("Person last name should be " + matchLastName + ".", matchLastName, lastName);}}}

@BeforeTransaction在事务之前执行

@AfterTransaction在事务之后执行

@NotTransactional不开启事务

 

好了,本篇作为Junit补充就说到这里了,希望大家多多分享经验哦。

这篇关于Junit使用教程(四)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1142369

相关文章

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti