一
下载并解压缩cactus
下载地址为将cactus的lib目录下的cactusantjar复制到ant的lib目录
二配置cactus
cactus的配置很简单新建一个cactusproperties文件并把它放在ant脚本中的cactus任务的classpath下文件中包括如下内容
cactussysproperties=ntextURL
#cactussampleservletcactified就是你的测试应用所在路径是端口号
ntextURL =//localhost:/cactussampleservletcactified
cactusservletRedirectorName = ServletRedirector
cactusjspRedirectorName = JspRedirector
cactusfilterRedirectorName = FilterRedirector
具体的做法结合ant脚本再进一步解释
三运行ant脚本
ant脚本主要执行以下任务
设定classpath
<path id=projectclasspath>
<fileset dir=${libdir}>
<include name=*jar/>
</fileset>
<! cactusproperties文件就需要放在libdir所对应的路径中 >
<pathelement location=${libdir}/>
<pathelement location=${tomcathome}/common/lib/jspapijar/>
<pathelement location=${tomcathome}/common/lib/servletapijar/>
</path>
定义相关任务
<taskdef resource=cactustasks classpat/>
<taskdef name=runservertests classname=orgapachecactusintegrationantRunServerTestsTask>
<classpath>
<path refid=projectclasspath/>
</classpath>
</taskdef>
编译应用的类文件和测试的类文件
打包整个应用为war文件
需要注意的是不仅要打包应用类测试类也要打包
<target name=war depends=compilejava
description=Generate the runtime war>
<war warfile=${targetdir}/${projectname}war
webxml=${srcwebappdir}/WEBINF/webxml>
<fileset dir=${srcwebappdir}>
<exclude name=cactusreportxsl/>
<exclude name=WEBINF/cactuswebxml/>
<exclude name=WEBINF/webxml/>
</fileset>
<classes dir=${targetclassesjavadir}/>
<! 别忘了打包测试类 >
<classes dir=${targetclassestestdir}/>
<! 别忘了打包各种相关的jar文件 >
< lib dir=projectclasspath/>
</war>
</target>
在应用的webxml文件中添加测试所需的各种映射
cactus提供了两个task来完成这个工作CactifyWar和WebXmlMerge
CactifyWar的功能是自动在已经打包的应用的webxml文件中添加所需的映射WebXmlMerge是提供合并两个webxml文件的功能
<target name=testprepare
depends=war compilecactus testpreparelogging>
<! Cactify the webapp archive >
<cactifywar srcfile=${targetdir}/${projectname}war
destfile=${tomcathome}/webapps/${projectname}cactifiedwar
>
<classes dir=${targetclassesjavadir}/>
<classes dir=${targetclassestestdir}/>
<lib dir=projectclasspath/>
</cactifywar>
</target>
运行测试
cactus提供了cactus和RunServerTests两个task来运行测试
cactus task是通过复制容器服务器的最小文件并运行来运行测试因此需要制定容器服务器的类型启动速度稍快点另外配置比较方便但是无法测试象tomcat连接池等资源另外对tomcat的支持也不好
RunServerTests是通过直接启动容器服务起来运行测试因此速度稍慢且配置较麻烦但能测试各种资源
<target name=test depends=testprepare
description=Run tests on Tomcat >
<! Start the servlet engine wait for it to be started run the
unit tests stop the servlet engine wait for it to be stopped
The servlet engine is stopped if the tests fail for any reason >
<! 是服务器的端口号${projectname}cactified是项目的路径和上一步的cactifywar 的destfile相对应 >
<runservertests
testURL=//localhost:/${projectname}cactified/ServletRedirector?Cactus_Service=RUN_TEST
startTarget=_StartTomcat
stopTarget=_StopTomcat
testTarget=_Test/>
</target>
<! _Test就是一个普通的junit任务 >
<target name=_Test>
<junit printsummary=yes fork=yes>
<classpath>
<path refid=projectclasspath/>
<pathelement location=${targetclassesjavadir}/>
<pathelement location=${targetclassestestdir}/>
</classpath>
<formatter type=brief usefile=false/>
<formatter type=xml/>
<batchtest>
<fileset dir=${srctestdir}>
<! Due to some Cactus synchronization bug the unit tests need
to run before the sample tests >
<include name=**/Test*java/>
<exclude name=**/Test*Alljava/>
</fileset>
</batchtest>
</junit>
</target>