1

Maven Web アプリケーション (Spring + ApacheCXF Web サービス) があり、いくつかの IntegrationTests (*IT.java) があります。cargo-maven プラグインを使用して war ファイルをデプロイし、フェイルセーフ プラグインを使用して統合テストを実行したいと考えています。

これが私の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 を実行しようとすることです。その時までにアプリケーションがデプロイされないため、テストは失敗します。

同じ構成で、2 つのステップで統合テストを正常に実行できます。1. cargo:deployer-deploy を実行します 2. 統合テストを実行します

アプリケーションが貨物プラグインによってデプロイされた後にのみ、フェイルセーフプラグインをトリガーする方法はありますか?

4

1 に答える 1

0

pingURLパラメータを使用して、デプロイが完了したことを確認するための URL を提供できると思います: http://cargo.codehaus.org/Maven2+Plugin+Reference+Guideを参照してください。

アプリケーションをデプロイする必要がない cargo を使用すると、次のサポートもあります: http://cargo.codehaus.org/Functional+testing (ただし、もちろんテストによって異なります)

于 2012-10-30T17:51:32.400 に答える