我的 pom.xml 看起来像这样
<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>com.cvent</groupId>
<artifactId>soa-readyapi</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>OnSite Solutions ReadyAPI Tests</name>
<properties>
<soapui.environment/>
<soapui.test-suite/>
<soapui.test-case/>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.smartbear</groupId>
<artifactId>ready-api-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>${soapui.projectFile}</projectFile>
<iface>IOrderService</iface>
<tool>wsi,axis1,axis2</tool>
<settingsFile>soapui-settings.xml</settingsFile>
<!-- <environment>${soapui.environment}</environment> -->
<outputFolder>output</outputFolder>
<junitReport>true</junitReport>
<printReport>true</printReport>
<projectProperties>
<value>one_api="https://someurl:4000"</value>
<value>two_api="https://someurl:4001"</value>
<!-- <value>environment=${soapui.environment}</value> -->
</projectProperties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
当我尝试使用以下命令运行此项目时 -
mvn clean test -Dsoapui.projectFile=smokeTest
无论在 ReadyAPI 中设置的最后一个活动环境如何,测试似乎都可以运行。它忽略
<value>one_api="https://someurl:4000"</value>
<value>two_api="https://someurl:4001"</value>
我知道我可以使用环境功能来执行此操作,但这对我当前的用例没有帮助。我想在运行时设置它,现在我正在对 pom.xml 进行硬编码以查看它是否有效,但它没有。
关于为什么 readyAPI 忽略我在 pom.xml 中设置的值的任何想法?
谢谢