cobertura和surefire之间的关系

时间:2013-02-18 21:02:28

标签: maven pom.xml cobertura maven-surefire-plugin

1句中的问题:“Cobertura无法生成正确的代码覆盖率”

下面是我的pom.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>
    <groupId>a.b.c</groupId>
    <artifactId>MyProject</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>war</packaging>
    <repositories>
        <repository>
            <id>google-api-services</id>
            <url>http://google-api-client-libraries.appspot.com/mavenrepo</url>
        </repository>
    </repositories>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java-version>1.6</java-version>
        <maven.test.skip.exec>false</maven.test.skip.exec>
        <cobertura-maven-plugin.version>2.5.2</cobertura-maven-plugin.version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>com.google.appengine</groupId>
                <artifactId>appengine-maven-plugin</artifactId>
                <version>1.7.4</version>
            </plugin>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <extensions>false</extensions>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>${java-version}</source>
                    <target>${java-version}</target>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.1.3</version>
                <configuration>
                    <testFailureIgnore>false</testFailureIgnore>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>${cobertura-maven-plugin.version}</version>
                <configuration>
                    <formats>
                        <format>xml</format>
                        <format>html</format>
                    </formats>
                    <check/>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>cobertura</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>${cobertura-maven-plugin.version}</version>
            </plugin>
        </plugins>
    </reporting>
    <dependencies>
       ...
    </dependencies>
</project>

当我尝试用这个pom构建时,会发生两件事

  1. 所有测试运行2次
  2. 生产战争
  3. Cobertura报告显示0%的覆盖率
  4. 请帮我调试这个问题。

2 个答案:

答案 0 :(得分:3)

我注意到的第一件事是您使用的是maven-surefire-plugin的极旧版本(2.1.3大约是2006年!),但当前版本是2.13。

除此之外,您已将cobertura-maven-plugin与报告目标 cobertura 捆绑在一起,这是完全错误的。

最好是首先简化您的设置并让它运行,这意味着只需在属性中定义cobertura-maven-plugin的版本,然后在报告区域中进行设置,如下所示:

  <properties>
    <cobertura-maven-plugin.version>2.5.2</cobertura-maven-plugin.version>
  </properties>

以及以下内容进入报告区域:

<project>
  ..
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>${cobertura-maven-plugin.version}</version>
      </plugin>
      ...
    </plugins>
  </reporting>
</project>

只需使用此设置对其进行测试,然后检查是否已创建代码覆盖率。如果不是,你需要展示更多你的项目(pom,测试等)。

答案 1 :(得分:2)

首先,我建议您在希望生成覆盖率报告时运行mvn clean install cobertura:cobertura。这不太可能是你想要为每一个版本做的事情(我个人只在詹金斯使用Cobertura)。

其次,让所有测试运行两次似乎很烦人,但是有些人认为这更可靠,所以预期的行为。 这是因为cobertura会检测你的字节码。因此,(很少)有机会与测试结果混淆。

但是,当然,对于这个双重测试运行是耗时的,这是你不能在标准生命周期中运行cobertura:cobertura的另一个原因