0

マルチモジュールのmavenプロジェクトがあります。1 つの親モジュールと 2 つのサブモジュール。最初のモジュールには、Web アプリケーションをテストする統合テスト、特にセレン化テストがあります。Web アプリケーションは 2 番目のモジュールにあります。jetty サーバー経由でアプリケーションをデプロイし、1 つの maven コマンドで selenide テストを実行したいと考えています。私はより多くの解決策を試しましたが、ここにそれらのいくつかがあります。

Web アプリを含むモジュールでは、テストの前にサーバーを実行するために jetty プラグインをセットアップしました。

 <plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
    <configuration>
      <contextPath>web-app</contextPath>
        <stopPort>8005</stopPort>
        <stopKey>STOP</stopKey>
    </configuration>
    <executions>
      <execution>
        <id>start-jetty</id>
        <phase>pre-integration-test</phase>
        <goals>
          <goal>run</goal>
        </goals>
        <configuration>
          <scanIntervalSeconds>0</scanIntervalSeconds>
          <daemon>true</daemon>
        </configuration>
      </execution>
      <execution>
        <id>stop-jetty</id>
        <phase>post-integration-test</phase>
        <goals>
          <goal>stop</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

そしてfailsafe-maven-plugin。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>failsafe-maven-plugin</artifactId>
    <version>2.4.3-alpha-1</version>
    <executions>
      <execution>
        <goals>
          <goal>integration-test</goal>
          <goal>verify</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

しかし問題は、他のモジュールにあるため、プラグインがテストを見つけられないことです。

最初のモジュールでテストを見つけるためにフェイルセーフを設定する方法を教えてもらえますか? または、たとえば親から実行するなどの他の解決策はありますか?

4

1 に答える 1