代码之家  ›  专栏  ›  技术社区  ›  Andrea Di Lisio

OSGi代码覆盖率-Jacoco+Easymock

  •  1
  • Andrea Di Lisio  · 技术社区  · 6 年前

    我目前正在开发一个Java OSGi项目(基于Apache felix runtime),项目设置如下:

    • 包装 |父maven项目
    • 坚持不懈 |real插件
    • 坚持不懈测验 |测试插件(实际上是一个带有上面持久性插件的片段项目)
    • ... 其他人喜欢上面的

    基本上,我使用maven+tycho来管理项目的生命周期。整个流程都通过一个continuos集成管道,jenkins负责构建、测试、部署代码分析并将其转发到Sonarqube服务器。正如上面提到的,测试是通过指向要测试的OSGi包的片段项目来实现的。在这些测试中,我使用 EasyMock公司 库来生成模拟的OSGi包。 为了让Sonarqu了解测试覆盖范围,我必须添加 雅科科 (maven插件)到我的工具集中。在对我的 父母亲 pom。xml文件我最终得到了一些部分有效的东西:jacoco代码覆盖率仅适用于测试插件(片段项目)中包含的类。正如你可能猜到的那样——尽管总比什么都没有好——这个结果远远没有用处。我需要评估真实OSGi捆绑包的测试覆盖率。在一些之后 googling 我知道这个问题可能与EasyMock库的使用有关,因为这会在执行过程中改变原始类,导致测试类和实际类之间不匹配。根据我的理解,要解决这个问题,我需要禁用jacoco动态检测,而使用脱机检测。

    然而,我无法理解:

    • 这到底意味着什么
    • 如何做到这一点

    有人能回过头来谈谈吗?

    这是我运行的maven命令,用于生成jacoco报告

    mvn -f com.mycompany.osgi.myproject.pkg/pom.xml clean test
    

    低于我的当前值 父母亲 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>com.mycompany.osgi</groupId>
    <artifactId>com.mycompany.osgi.myproject.pkg</artifactId>
    <packaging>pom</packaging>
    <version>1.0.0</version>
    
    <properties>
        <tycho.version>1.0.0</tycho.version>
        <surefire.version>2.16</surefire.version>
        <main.basedir>${project.basedir}</main.basedir>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <jacoco.version>0.7.9</jacoco.version>
    
        <!-- Sonar-JaCoCo properties -->
    <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
    <sonar.junit.reportPaths>${project.basedir}/target/surefire-reports</sonar.junit.reportPaths>
    <sonar.jacoco.reportPaths>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPaths>
    </properties>
    
    
    <modules>
    
        <module>../com.mycompany.osgi.myproject.core.persistence</module>
        <module>../com.mycompany.osgi.myproject.core.persistence.tests</module> 
    
    </modules>
    
    <build>
            <plugins>
                <plugin>
              <groupId>org.jacoco</groupId>
              <artifactId>jacoco-maven-plugin</artifactId>
              <version>${jacoco.version}</version>
            </plugin>
        </plugins>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.eclipse.tycho</groupId>
                    <artifactId>tycho-compiler-plugin</artifactId>
                    <version>${tycho.version}</version>
                    <configuration>
                        <source>1.8</source>
                        <target>1.8</target>
                        <encoding>UTF-8</encoding>
                    </configuration>
                </plugin>
    
                <plugin>
                    <groupId>org.eclipse.tycho</groupId>
                    <artifactId>tycho-maven-plugin</artifactId>
                    <version>${tycho.version}</version>
                    <extensions>true</extensions>
                </plugin>
    
    
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>${surefire.version}</version>
    
    
                    <dependencies>
                        <dependency>
                            <groupId>org.apache.maven.surefire</groupId>
                            <artifactId>surefire-junit47</artifactId>
                            <version>${surefire.version}</version>
                        </dependency>
                    </dependencies>
    
                    <executions>
                        <execution>
                            <id>test</id>
                            <phase>test</phase>
                            <configuration>
                                <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
                            </configuration>
                            <goals>
                                <goal>test</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
    
    
    <repositories>
        ...
    </repositories>
    
    <distributionManagement>
        ...
    </distributionManagement>
    

    1 回复  |  直到 6 年前
        1
  •  1
  •   Godin    6 年前

    As suggested by @Godin ,使用以下jacoco插件配置解决了我的问题

    <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>${jacoco.version}</version>
        <configuration>
            <dataFile>../com.mycompany.myproject.pkg/target/jacoco.exec</dataFile>
            <destFile>../com.mycompany.myproject.pkg/target/jacoco.exec</destFile>
            <outputDirectory>../com.mycompany.myproject.pkg/target/site/jacoco</outputDirectory>
        </configuration>
    </plugin>
    

    此项目配置用于指示sonarqube读取预期资源

    <properties>
            ...
    
            <!-- Sonar-JaCoCo properties -->
            <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
    <sonar.junit.reportPaths>com.mycompany.myproject.pkg/target/surefire-reports</sonar.junit.reportPaths>
            <sonar.jacoco.reportPaths>com.mycompany.myproject.pkg/target/jacoco.exec</sonar.jacoco.reportPaths>
        </properties>