15

我想使用 maven-failsafe-plugin 来运行一些集成测试。如果任何测试失败,我希望 Maven 使构建失败而不是 BUILD SUCCESS。

Tests run: 103, Failures: 1, Errors: 0, Skipped: 26
[INFO] BUILD SUCCESS*


我该如何配置它,构建不成功是什么?

我的故障保护插件配置为:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>${failsafe.version}</version>
    <configuration>
        <systemProperties>
            <CI_INTEGRATION_OVERRIDE_PATH>${basedir}/..</CI_INTEGRATION_OVERRIDE_PATH>
        </systemProperties>
        <includes>
            <include>**/integration/**/*.java</include>
        </includes>
        <excludes>
            <exclude>**/integration/**/*TestSuite.java</exclude>
        </excludes>
    </configuration>
    <executions>
        <execution>
            <id>integration-test</id>
            <goals>
                <goal>integration-test</goal>
                <goal>verify</goal>
            </goals>
        </execution>
    </executions>
</plugin>
4

3 回答 3

12

正如 Andrew 指出的那样,正确的解决方案是按预期使用故障保护。集成测试目标专门设计为不会使构建失败。如果您想使构建失败,请致电mvn verifymvn failsafe:verify

为了实现verify目标,它需要读取默认写入的集成测试的结果,以${project.build.directory}/failsafe-reports/failsafe-summary.xml确保生成该结果。

此外,您必须确保将maven-failsafe-plugin配置绑定到integration-test目标和部件中的verify目标executions

未能添加其中任何一个都将导致 maven 成功构建,而不是在集成测试失败时失败。

于 2013-10-02T13:36:17.377 回答
2

由于您正在运行和mvn clean install阶段应该正在执行。根据故障安全插件文档和目标绑定到这些阶段,所以我认为不需要额外的调用。integration-testverifyfailsafe:integration-testfailsafe:verifyfailsafe:integration-test

尽管如此,我不确定我是否信任故障安全插件文档。今年早些时候,我为某人回答了一个类似的问题。事实证明,他必须明确地将每个目标绑定到正确的阶段,然后故障保护按预期工作。可能值得一试。

于 2012-09-05T13:36:01.277 回答
0

解决方案。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <skip>true</skip>
  </configuration>
  <executions>
    <execution>
      <id>unit-test</id>
      <phase>test</phase>
      <goals>
        <goal>test</goal>
      </goals>
      <configuration>
        <skip>false</skip>
        <excludes>
          <exclude>**/*IntegrationTest.java</exclude>
        </excludes>
      </configuration>
      </execution>
      <execution>
        <id>integration-test</id>
        <phase>integration-test</phase>
        <goals>
          <goal>test</goal>
        </goals>
        <configuration>
          <skip>false</skip>
          <enableAssertions>false</enableAssertions>
          <includes>
            <include>**/*IntegrationTest.java</include>
          </includes>
          <systemPropertyVariables>
            <integration>${integration}</integration>
          </systemPropertyVariables>
        </configuration>
      </execution>
    </executions>
</plugin>
于 2012-10-04T08:00:34.267 回答