对Struts2进行单元测试,以struts 2.2.1.1为例 ,可以使用struts2发行包中的struts2-junit-plugin-2.2.1.1.jar,它里面提供了两个类StrutsTestCase、StrutsSpringTestCase,分别提供对纯struts应用和struts+spring整合时的单元测试支持。下面分别说明。
1.StrutsTestCase
首先准备一个纯struts2工程,建立工程过程略,但有如下的类:
Account.java,是bean
package model; public class Account { public Account() { public Account(String userName, String password) { public String getUserName() { public void setUserName(String userName) { public String getPassword() { public void setPassword(String password) { |
AccountAction.java
package action; import com.opensymphony.xwork2.ActionSupport; import java.util.logging.Logger; public class AccountAction extends ActionSupport{ private Account accountBean; public void validate(){ if (accountBean.getUserName().length()<5){ if (accountBean.getUserName().length()>10){ public Account getAccountBean() { public void setAccountBean(Account accountBean) { |
字体: 小 中 大 | 上一篇 下一篇 | 打印 | 我要投稿
测试类:
TestAccountAction.java
package ut; import action.AccountAction; import static org.testng.AssertJUnit.*;
private void init() { public void testUserNameErrorMessage() throws Exception { init(); assertTrue("Problem There were no errors present in fieldErrors but there should have been one error present", public void testUserNameCorrect() throws Exception{ init(); assertTrue("Problem There were errors present in fieldErrors but there should not have been any errors present", assertEquals("Result returned form executing the action was not success but it should have been.", } |
测试逻辑比较简单,action中的validate方法会保证用户名长度在5--9之间。
定义struts.xml,放在类路径的根目录下,而非web-inf/classes下,否则会找不到,不会加载你定义的内容。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC |
至于action/result的定义中用到的jsp页面,不必真实存在,保持不为空就行,否则,action测试的时候,会说result未定义之类的错误,因为此测试会模拟action真实状态下的运行。运行,一切OK。
正因为会模拟真实状态下的运行,所以拦截器也会正常被触发,下面再定义一个拦截器测试一下:
MyInterceptor.java
package interceptor; import com.opensymphony.xwork2.ActionInvocation; public class MyInterceptor extends AbstractInterceptor{ public String intercept(ActionInvocation actionInvocation) throws Exception { |
修改一下struts.xml,加入拦截器的定义:
<package name="testit" namespace="/" extends="struts-default"> <interceptors> <interceptor name="testInterceptor" class="interceptor.MyInterceptor"/> </interceptors> <action name="createaccount" class="action.AccountAction"> <result name="success">/index.jsp</result> <result name="input">/createaccount.jsp</result> <interceptor-ref name="defaultStack"/> <interceptor-ref name="testInterceptor"/> </action> </package> |
运行,控制台会输出:
before processing
bye bye execute
都是struts发行包提供的,其它不相关的jar不要加,尤其是以plugin.jar结尾的文件,更不要加struts2-spring-plugin-2.2.1.1.jar,加了会加载相关的东西,但这里却提供不了,导致测试无法运行。实际spring-beans-2.5.6.jar和spring-context-2.5.6.jar也不是必须的,但加了也无所谓,在StrutsSpringTestCase是需要的。另外,web.xml不需要配置,根本不会去这里找配置信息。
2.StrutsSpringTestCase
这个和前面的过程类似,需要的类分别如下。
MathAction.java
package action; import com.opensymphony.xwork2.ActionContext; public class MathAction extends ActionSupport{ public String execute() throws Exception { public MathService getService() { public void setService(MathService service) { |
MathService.java
package service; public class MathService { |
测试类TestMathAction,测试一下MathService.add是否能正确地返回两个数相加的值。
import action.MathAction; public class TestMathAction extends StrutsSpringTestCase{ protected String getContextLocations() { private void init(){ |
这里有一个小trick,默认情况下,applicationContext.xml也要放在classpath的根目录下,但如果项目需要不放在那里,就要覆盖getContextLocations方法返回其class path,开头可以有也可以没有“/”,这里我放在包spring下,所以就返回spring/applicationContext.xml,至于struts和spring整合的配置就不用写了,想必大家都会。需要的jar在上面的基础上,加入struts2-spring-plugin-2.2.1.1.jar就行了,对了,两种测试都需要jsp-api.jar和servlet-api.jar,去tomcat里copy一份即可,junit.jar也是需要的(废话?!)
最新内容请见作者的GitHub页:http://qaseven.github.io/