作为回归套件的一部分,我需要在触发新构建后触发自动化soap UI套件,但是我不知道将这些工具集成在一起的想法,
我找不到任何适用于soap UI / ready api的插件,因此请为我提供帮助。...
答案 0 :(得分:0)
Mule应用程序使用Maven作为构建工具,因此您可以将SoapUI测试集成为Maven构建阶段的一部分。以下是有关Maven插件的一些信息:
https://support.smartbear.com/readyapi/docs/integrations/maven/index.html
使用Googling Maven Soap UI还会返回有关设置方法和一些示例github回购的博客文章。
答案 1 :(得分:0)
您可以按照以下步骤操作-
1.在SOAP UI中编写测试用例,然后导出测试套件XML。
2.创建一个Maven项目,并使用您的测试套件详细信息配置以下POM文件。
<projectFile>soapUi-TestSuite File Location</projectFile>
<testSuite>TestSuiteName</testSuite>
<endpoint>endpoint URL</endpoint>
mvn clean test
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>RegTesting</groupId>
<artifactId>RegTesting</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>RegTesting</name>
<url>http://maven.apache.org</url>
<repositories>
<repository>
<id>Central</id>
<url>http://central.maven.org/maven2/</url>
</repository>
</repositories>
<!-- Plugin repository for test suites generated via soap UI -->
<pluginRepositories>
<pluginRepository>
<id>smartbear-sweden-plugin-repository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-maven-plugin</artifactId>
<version>5.4.0</version>
<configuration>
<projectFile>soapUi-TestSuite File Location</projectFile>
<testSuite>TestSuiteName</testSuite>
<endpoint>endpoint URL</endpoint>
<printReport>true</printReport>
<junitReport>false</junitReport>
<outputFolder>target</outputFolder>
</configuration>
<dependencies>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>com.jgoodies</groupId>
<artifactId>forms</artifactId>
<version>1.0.7</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project> ```