maven-surefire-plugin包含/排除优先级

时间:2012-08-14 19:15:30

标签: java maven maven-3 pom.xml maven-surefire-plugin

当使用maven-surefire-plugin并且包括和排除时,它们处理的顺序是什么?此外,如果您有3组测试,第一组是基本集,第二组和第三组是特殊情况,您是否可以使用配置文件进一步包含/排除?如何合并配置文件包含/排除设置?例如,我想做这样的事情:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.12.2</version>
        <configuration>
          <excludes>
            <exclude>/org/mycompany/dataset/test/ExtractProd*.java</exclude> <!-- requires special network connectivity -->
            <exclude>/org/mycompany/dataset/test/LargeDataset*.java</exclude> <!-- requires lengthy processing -->
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>connectedToProdNetwork</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <includes>
                <include>/org/mycompany/dataset/test/ExtractProd*.java</include>
              </includes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
    <profile>
      <id>runForAsLongAsYouNeed</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <includes>
                <include>/org/mycompany/dataset/test/LargeDataset*.java</include>
              </includes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

然后能够像这样跑:

mvn package -P connectedToProdNetwork

mvn package -P runForAsLongAsYouNeed

mvn package -P connectedToProdNetwork,runForAsLongAsYouNeed

----更新-----

使用mvn help:effective-pom -P [profileA]我能够确定如果我指定一个配置文件,那么产生的有效pom将是:

        <configuration>
          <includes>
            <include>[includeFromProfileA]</include>
          </includes>
          <excludes>
            <exclude>/org/mycompany/dataset/test/ExtractProd*.java</exclude> <!-- requires special network connectivity -->
            <exclude>/org/mycompany/dataset/test/LargeDataset*.java</exclude> <!-- requires lengthy processing -->
          </excludes>
        </configuration>

如果我提供多个个人资料,mvn help:effective-pom -P [profileA],[profileB]

        <configuration>
          <includes>
            <include>[includeFromProfileAOrBSeeminglyArbitraryChoice]</include>
          </includes>
          <excludes>
            <exclude>/org/mycompany/dataset/test/ExtractProd*.java</exclude> <!-- requires special network connectivity -->
            <exclude>/org/mycompany/dataset/test/LargeDataset*.java</exclude> <!-- requires lengthy processing -->
          </excludes>
        </configuration>

最后,如果我将属性combine.children="append"添加到配置文件配置的<includes>元素,并提供两个配置文件,mvn help:effective-pom -P [profileA],[profileB]

        <configuration>
          <includes combine.children="append">
            <include>[includeFromProfileA]</include>
            <include>[includeFromProfileB]</include>
          </includes>
          <excludes>
            <exclude>/org/mycompany/dataset/test/ExtractProd*.java</exclude> <!-- requires special network connectivity -->
            <exclude>/org/mycompany/dataset/test/LargeDataset*.java</exclude> <!-- requires lengthy processing -->
          </excludes>
        </configuration>

但是,现在每个文件都指定为<include><exclude>,会发生什么?

----更新2 ----

实际上使用此配置运行构建:

<configuration>
  <includes>
    <include>**/TestA.java</include>
  </includes>
  <excludes>
    <exclude>**/TestA.java</exclude>
  </excludes>
</configuration>

NOT 是否会运行TestA,因此<exclude>似乎会压倒<include>请注意,为了完整起见,我确实颠倒了顺序并将<excludes>放在<includes>之前,但行为没有改变。如果有人能找到某个地方的源代码,那么这个行为概述,我很乐意给他们答案......

2 个答案:

答案 0 :(得分:10)

我无法找到有关surefire插件的官方文档,但排除覆盖包含确实是一种常见的方法,也可以由Maven在其他类似的上下文中应用,例如资源。

唯一官方相关信息(我发现)来自官方Maven POM参考文档,here

  

包括:一组文件模式,使用*作为通配符指定要包含在指定目录下的资源的文件。

     

排除:与includes相同的结构,但指定要忽略的文件。 在包含和排除之间的冲突中,排除胜利

注意:我在有趣的声明中添加了最终的粗体格式。

因此,在官方maven插件中使用相同的方法(通常,所有插件都具有org.apache.maven.plugins groupId和maven-前缀作为artifactId)。

答案 1 :(得分:0)

您是否尝试过使用JUnit类别?

http://www.agile-engineering.net/2012/04/unit-and-integration-tests-with-maven.html

使用这种方法,您可以为测试提供许多不同的类别,并使用它来排除/包含它们,而不是类名。这将是一种更具扩展性的方法。