我有一个maven Web应用程序(Spring + ApacheCXF webservices)并且有几个IntegrationTests(* IT.java)。我想通过使用cargo-maven插件部署war文件来使用failsafe插件运行集成测试。
这是我的pom配置:
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.0.3</version>
<configuration>
<container>
<containerId>jboss51x</containerId>
<home>C:/jboss-5.1.0.GA</home>
<append>false</append>
<log>${project.build.directory}/logs/jboss51x.log</log>
<output>${project.build.directory}/logs/jboss51x.out</output>
<timeout>300000</timeout>
</container>
<configuration>
<type>existing</type>
<home>C:/jboss-5.1.0.GA/server/default</home>
<properties>
<cargo.servlet.port>8080</cargo.servlet.port>
<cargo.jboss.configuration>default</cargo.jboss.configuration>
<cargo.rmi.port>1099</cargo.rmi.port>
<cargo.logging>high</cargo.logging>
</properties>
<deployables>
<deployable>
<groupId>${project.groupId}</groupId>
<artifactId>admin-services</artifactId>
<type>war</type>
</deployable>
</deployables>
</configuration>
</configuration>
<executions>
<execution>
<id>start-container</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deployer-deploy</goal>
</goals>
</execution>
<execution>
<id>stop-container</id>
<phase>post-integration-test</phase>
<goals>
<goal>deployer-undeploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>failsafe-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugin>
但问题是货物插件部署了WAR文件,并且立即故障安全插件正在尝试执行IntegrationTests,到那时应用程序未部署,因此测试失败。
使用相同的配置,我可以成功地分两步运行集成测试。 1.执行货物:部署 - 部署 2.执行集成测试
无论如何只有在货物插件部署应用程序后触发故障安全插件?
答案 0 :(得分:0)
我认为您可以使用pingURL
参数提供验证部署已完成的网址:请参阅http://cargo.codehaus.org/Maven2+Plugin+Reference+Guide
使用货物,您不必部署应用程序,也支持:http://cargo.codehaus.org/Functional+testing(但这取决于您的测试当然)