作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
任何人都知道将soapUI测试添加到我的CI构建的好方法吗?
最佳答案
soapUI 通过 Maven 或 Ant 提供测试自动化。 Maven 集成描述HERE .
一个月前我尝试过,但 eviware 存储库出现了一些奇怪的问题......因此我现在通过 Ant 运行我的测试。您需要做的是调用testrunner.bat
(或 testrunner.sh
)soapUI bin 目录中的脚本。您可以找到可用的参数 HERE .
你必须在你的 Hudson 构建服务器上安装soapUI。然后您只需创建一个通过 Ant 构建的新作业。
sample build.xml
:
<project name="IntegrationTest" default="soapui-tests" basedir=".">
<description>Runs the soapUI integration tests</description>
<property file="build.properties"/>
<target name="checkos">
<condition property="testrunner.cmd" value="${soapUI.home}/bin/testrunner.bat">
<os family="windows" />
</condition>
<condition property="testrunner.cmd" value="${soapUI.home}/bin/testrunner.sh">
<os family="unix" />
</condition>
</target>
<target name="soapui-tests" depends="checkos">
<exec executable="${testrunner.cmd}"
failonerror="yes"
failifexecutionfails="yes"
>
<arg value="-e ${service.endpoint}"/>
<arg value="-P dbUrl=${db.Url}"/>
<arg value="-rajf"/>
<arg path="${report.dir}"/>
<arg path="${soapui.project.folder}"/>
</exec>
</target>
</project>
关于soap - 如何将soapUI与Jenkins集成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6648244/
我是一名优秀的程序员,十分优秀!