Spring测试 其实很简单
在过去的职业生涯里,我经常发现有些人不写测试代码,而他们声称不写的理由是无法轻易地写出覆盖多个不同模块的测试用例。好吧,我相信他们中的大部分要么是缺乏一些比较易掌握的技术手段,要么就是没时间来把它搞清楚,毕竟工作中总会有进度之类的各种压力。因为不知道该如何测试,所以就经常忽略集成测试,由此带来的问题就是越来越糟糕的软件、越来越多的bug和更加失望的客户。所以我想分享一些个人的经验,揭开集成测试神秘的面纱。
如何对基于spring的工程更好地进行集成测试
使用工具: spring, junit, mockito
想象有这样一个spring工程,它集成了一些外部服务,例如,一些银行的web服务。那么,为这个工程写测试用例以及在持续集成系统中完成这些测试时所遇到的问题基本都差不多:
1.每次测试都会有交易进行,每次交易都需要付出金钱成本,这些成本最终由客户承担;
2.测试时发出的过多的请求有可能被认为是恶意请求,可能造成在银行的账户被封,后果是测试失败;
3.当使用非生产环境进行测试时,测试结果并不十分可靠,同样,后果是测试失败。
通常情况下,你对单个类进行测试的时候,问题很容易解决,因为你可以虚拟一些外部服务来供调用。但是当对整个巨大的业务流程进行测试的时候,意味你需要对多个部件进行测试,这时,需要你将这些部件都纳入到spring容器中进行管理。所幸,spring包含了非常优秀的测试框架,允许你将来自生产环境配置文件中的bean注入到测试环境中,但是对那些被调用的外部服务,需要我们自己去写模拟实现。一般人第一反应可能是在测试的setup阶段对由spring注入的bean进行重新注入(修改),但是这种方法需要再仔细考虑一下。
警告:通过这种方式,你的测试代码打破了容器自身的行为,所以没法保证在真实的环境中也如你测试的结果一样。
事实上,我们无需先实现模拟类然后再把它重新注入到所需的bean中,我们可以让spring帮助我们一开始就注入模拟类。让我们用代码演示一下。
示例工程包含一个名为bankservice的类,代表调用的外部服务,一个名为userbalanceservice的类,它会调用bankservice。userbalanceservice实现的非常简单,仅仅完成将余额从string向double类型的转换。
bankservice.java的源码:
public interface bankservice { string getbalancebyemail(string email); }
bankserviceimpl.java的源码:
public class bankserviceimpl implements bankservice { @override public string getbalancebyemail(string email) { throw new unsupportedoperationexception("operation failed due to external exception"); } }
userbalanceservice.java的源码:
interface userbalanceservice { double getaccountbalance(string email); }
userbalanceserviceimpl.java的源码:
public class userbalanceserviceimpl implements userbalanceservice { @autowired private bankservice bankservice; @override public double getaccountbalance(string email) { return double.valueof(bankservice.getbalancebyemail(email)); } }
然后是spring的xml配置文件,添加所需要的bean声明。
applicationcontext.xml的源代码:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="bankservice" class="ua.eshepelyuk.blog.springtest.springockito.bankserviceimpl"/> <bean id="userbalanceservice" class="ua.eshepelyuk.blog.springtest.springockito.userbalanceserviceimpl"/> </beans>
下面是测试类userbalanceserviceimpltest.java的源代码:
@runwith(springjunit4classrunner.class) @contextconfiguration(locations = "classpath:/springtest/springockito/applicationcontext.xml") public class userbalanceserviceimplprofiletest { @autowired private userbalanceservice userbalanceservice; @autowired private bankservice bankservice; @test public void shouldreturnmockedbalance() { double balance = userbalanceservice.getaccountbalance("user@bank.com"); assertequals(balance, double.valueof(123.45d)); } }
如我们预料的一样,测试方法报unsupportedoperationexception异常。我们现在的目的是把bankservice换成我们的模拟实现。直接使用mockito来生成factory bean的方法是没问题的,但是有更好的选择,使用springockito框架。继续之前可以先大概了解一下。
剩下的问题就简单了:如何让spring注入模拟的bean而不是真实的bean,在spring 3.1版之前除了新建一个xml配置文件之外没有其他的方法。但是自从spring引入了bean的profile定义之后,我们有了更加优雅的解决方式,虽然这种方式也需要一个额外的专门用作测试的xml配置文件。下面是这个用来测试的配置文件testapplicationcontext.xml的代码:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:mockito="http://www.mockito.org/spring/mockito" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.mockito.org/spring/mockito https://bitbucket.org/kubek2k/springockito/raw/tip/springockito/src/main/resources/spring/mockito.xsd"> <import resource="classpath:/springtest/springockito/applicationcontext.xml"/> <beans profile="springtest"> <mockito:mock id="bankservice" class="ua.eshepelyuk.blog.springtest.springockito.bankservice"/> </beans> </beans>
做相应修改过之后的测试类userbalanceserviceimplprofiletest.java的源代码:
@runwith(springjunit4classrunner.class) @contextconfiguration(locations = "classpath:/springtest/springockito/testapplicationcontext.xml") @activeprofiles(profiles = {"springtest"}) public class userbalanceserviceimplprofiletest { @autowired private userbalanceservice userbalanceservice; @autowired private bankservice bankservice; @before public void setup() throws exception { mockito.when(bankservice.getbalancebyemail("user@bank.com")).thenreturn(string.valueof(123.45d)); } @test public void shouldreturnmockedbalance() { double balance = userbalanceservice.getaccountbalance("user@bank.com"); assertequals(balance, double.valueof(123.45d)); } }
你可能注意到了,在setup方法里,我们定义了模拟的行为,并且在类上面加了@profile的注解。这个注解激活了名为springtest的profile,因此使用springockito模拟的bean就可以自动注入到任何它所需要的地方了。这个测试的运行结果会成功,因为spring注入了springockito 所模拟的版本,而不是applicationcontext.xml里所声明的版本。
继续优化我们的测试
如果我们能将解决这个问题的方法更加推进一步的话,这篇文章看起来才没有缺憾。springockito提供了另外一个名字叫作
springockito annotation的框架,它允许我们在测试类中使用注解来注入模拟类。继续看下去之前,您最好先去网站上大概瞧瞧。好了,下面是经过修改后的测试代码。
userbalanceserviceimplannotationtest.java的源代码: @runwith(springjunit4classrunner.class) @contextconfiguration(loader = springockitocontextloader.class, locations = "classpath:/springtest/springockito/applicationcontext.xml") public class userbalanceserviceimplannotationtest { @autowired private userbalanceservice userbalanceservice; @autowired @replacewithmock private bankservice bankservice; @before public void setup() throws exception { mockito.when(bankservice.getbalancebyemail("user@bank.com")).thenreturn(string.valueof(valueof(123.45d))); } @test public void shouldreturnmockedbalance() { double balance = userbalanceservice.getaccountbalance("user@bank.com"); assertequals(balance, valueof(123.45d)); } }
请注意,这里并没有新引入的xml配置文件,而是直接使用了正式环境的applicationcontext.xml。我们使用@replacewithmock这个注解标记了类型为bankservice的bean,而后在setup方法中对模拟类的行为进行了定义。
后记
springockito-annotations项目有个巨大的优点,那就是,它使我们的测试代码建立在依赖覆盖的基础之上,通过这样,我们既不需要定义额外的xml配置文件,也不需要为了测试而去改动生产环境的配置文件。如果不使用springockito-annotations的话,我们除了定义额外的xml配置文件别无他选了。因此,我强烈建议您在集成测试中使用springockito-annotations,这样你可以最大限度减少测试用例对生产代码的影响,也能消除维护额外xml配置文件的负担。
附言
为spring工程写集成测试真是简单多了吧,文章中的代码参考自我的github。
译文链接:http://www.codeceo.com/article/spring-test-is-easy.html
英文原文:test me if you can #1 (spring framework)
翻译作者:码农网 – sandbox wang
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Spring测试 其实很简单
-
Spring中使用HSQLDB测试ibatis的dao 博客分类: Spring DAOiBATISHSQLDBSpringCMS
-
Spring Boot 单元测试JUnit的实践
-
spring-mvc/springboot使用MockMvc对controller进行测试
-
Spring Boot单元测试中使用mockito框架mock掉整个RedisTemplate的示例
-
spring aop 原理 测试 博客分类: spring AOPSpringBeanXML
-
spring aop 原理 测试 博客分类: spring AOPSpringBeanXML
-
在Spring boot的项目中使用Junit进行单体测试
-
Spring Boot整合Swagger测试api构建全纪录
-
Spring Boot单元测试中使用mockito框架mock掉整个RedisTemplate的示例