maven-surefire-plugin - fork 的 VM 没有正确告别就终止了。 VM 崩溃或 System.exit 调用?

标签 maven-surefire-plugin jacoco-maven-plugin

我已经配置了 maven-surefire-plugin 和 jacoco 插件来生成 junit 代码覆盖率报告。但是,我在 2 个不同的场景中遇到了 2 个不同的错误。你能看看下面的错误并帮助我吗?任何帮助都是非常可观的。

当我在 maven-surefire-plugin 配置中将我的 forkCount 保持为 0(零)时,所有测试都会成功执行,但不会生成 jacoco 报告。它给我的消息是“由于缺少执行数据文件而跳过 JaCoCo 执行”。

当我在 maven-surefire-plugin 配置中将我的 forkCount 保持为 1 时,我收到以下错误,
[错误] fork 的虚拟机在没有正确告别的情况下终止。 VM 崩溃或 System.exit 调用?
[ERROR] 启动 fork 时发生错误,请检查日志中的输出
[错误] 进程退出代码:1
[错误] 在 org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:671)
[错误] 在 org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:533)
[错误] 在 org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:278)
[错误] 在 org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:244)
[错误] 在 org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1194)
[错误] 在 org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1022)
[错误] 在 org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:868)
[错误] 在 org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)

如果需要,您可以引用以下 pom.xml 文件以了解引起关注的原因,

http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
com.testmodule
测试模块
1.0.6
测试模块

<properties>
    <maven.compiler.source>10</maven.compiler.source>
    <maven.compiler.target>10</maven.compiler.target>
    <tomcat.version>8.5.4</tomcat.version>
    <maven.test.skip>false</maven.test.skip>
    <maven.build.timestamp.format>yy.MM</maven.build.timestamp.format>
    <powermock.version>2.0.0-beta.5</powermock.version>

    <!-- Sonar-JaCoCo properties -->
    <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
    <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
    <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
    <sonar.language>java</sonar.language>
</properties>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.3.RELEASE</version>
</parent>

<dependencies>
    <!-- START Spring boot dependencies -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-logging</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </exclusion>
            <exclusion>
                <groupId>javax.annotation</groupId>
                <artifactId>javax.annotation-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-xml</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-oxm</artifactId>
    </dependency>

    <dependency>
        <groupId>com.testmodule</groupId>
        <artifactId>test-module-common</artifactId>
        <version>1.0.6</version>
        <exclusions>
            <exclusion>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-databind</artifactId>
            </exclusion>
            <exclusion>
                <groupId>javax.xml.ws</groupId>
                <artifactId>jaxws-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-core</artifactId>
        <version>2.9.6</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-annotations</artifactId>
        <version>2.9.6</version>
    </dependency>
    <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.9.6</version>
    </dependency>

    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.6</version>
    </dependency>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
    </dependency>

    <dependency>
        <groupId>org.json</groupId>
        <artifactId>json</artifactId>
        <version>20180813</version>
    </dependency>

    <!-- START JUnit Test dependencies -->
    <dependency>
        <groupId>com.google.code.tempus-fugit</groupId>
        <artifactId>tempus-fugit</artifactId>
        <version>1.1</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-core</artifactId>
        <version>${powermock.version}</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-module-junit4</artifactId>
        <version>${powermock.version}</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-api-mockito2</artifactId>
        <version>${powermock.version}</version>
        <scope>test</scope>
    </dependency>
    <!-- END JUnit Test dependencies -->

    <dependency>
        <groupId>com.fasterxml.jackson.datatype</groupId>
        <artifactId>jackson-datatype-jdk8</artifactId>
    </dependency>
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
    </dependency>

    <dependency>
        <groupId>javax.xml.soap</groupId>
        <artifactId>javax.xml.soap-api</artifactId>
        <version>1.4.0</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.0</version>
            <configuration>
                <forkCount>1</forkCount>
                <reuseForks>true</reuseForks>
                <argLine>${jacoco.agent.argLine}</argLine>
            </configuration>        
            <dependencies>
                <dependency>
                    <groupId>org.ow2.asm</groupId>
                    <artifactId>asm</artifactId>
                    <version>6.2</version>
                </dependency>
            </dependencies>
        </plugin>
        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.8.1</version>
            <configuration>
                 <append>true</append>
            </configuration>
            <executions>
                <execution>
                    <id>jacoco-initialize</id>
                    <phase>initialize</phase>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                      <configuration>
                          <propertyName>jacoco.agent.argLine</propertyName>
                          <destFile>target/jacoco.exec</destFile>                                 
                      </configuration>
                    </execution>
                    <execution>
                      <id>jacoco-report</id>
                      <phase>verify</phase>
                      <goals>
                        <goal>report</goal>
                      </goals>                        
                 </execution>           
            </executions>
        </plugin>   
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
              <mainClass>com.testmodule.module</mainClass>
              <finalName>test-module</finalName>
              <outputDirectory>${project.build.directory}/lib</outputDirectory>
             </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>repackage</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <!-- Added for java 10 -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.ow2.asm</groupId>
                    <artifactId>asm</artifactId>
                    <version>6.2</version>
                </dependency>
            </dependencies>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <finalName>test-module</finalName>
                <appendAssemblyId>false</appendAssemblyId>
                <descriptors>
                    <descriptor>resources/distribution.xml</descriptor>
                </descriptors>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id> <!-- this is used for inheritance merges -->
                    <phase>package</phase> <!-- append to the packaging phase. -->
                    <goals>
                        <goal>single</goal> <!-- goals == mojos -->
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.1</version>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                    <tasks>
                      <echo file="version.txt">${maven.build.timestamp}.${BUILD_NUMBER}</echo>
                    </tasks>
                </configuration>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifestEntries>
                        <Implementation-Version>${maven.build.timestamp}.${BUILD_NUMBER}</Implementation-Version>
                    </manifestEntries>
                </archive>
            </configuration>  
        </plugin>
    </plugins>
</build>

最佳答案

使用 java10 时必须升级 jacoco 版本。你可以使用 JaCoCo 0.8.3 版本似乎可以解决问题。

关于maven-surefire-plugin - fork 的 VM 没有正确告别就终止了。 VM 崩溃或 System.exit 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53956712/

相关文章:

java - JaCoco MVN 未知 block 类型

maven - 如何附加到使用 DLL 的 Maven Surefire 测试的系统路径?

java - Jacoco 从未调用过 "mvn install"。手动触发时(("mvn jacoco:report"),表示执行数据文件丢失

java - 尽管经过测试,Jacoco 0.8.0 在所有 switch 案例中标记 throw 和 break

eclipse - 如何从 jacoco.exec 生成 HTML 报告?

maven-3 - 单元测试代码的 Jacoco 覆盖率

maven - 将环境变量传递给 TestNG for Automation 的最佳方法是什么

java - SoapUI、Maven、Surefire 和 Jenkins 集成

java - junit 测试可以并行运行吗?

java - SonarQube + Reports 中未显示的依赖模块中的聚合覆盖率或覆盖率由 Jacoco 生成