gpt4 book ai didi

soap - 如何将soapUI与Jenkins集成?

转载 作者:行者123 更新时间:2023-12-03 07:50:49 25 4
gpt4 key购买 nike

任何人都知道将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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com