Surefire Maven 插件:“通过直接写入分叉 JVM 中的本机流来损坏 STDOUT”

2022-08-31 12:42:44

我的JUnit测试在通过Maven和Surefire插件运行时失败(版本信息如下)。我看到错误消息:

Corrupted STDOUT by directly writing to native stream in forked JVM 4. See FAQ web page and the dump file C:\(...)\target\surefire-reports\2019-03-20T18-57-17_082-jvmRun4.dumpstream

FAQ页面指出了一些可能的原因,但我不明白如何使用此信息开始解决此问题:

通过直接写入分叉 JVM 中的本机流来损坏 STDOUT

如果您的测试使用打印到 STDOUT 的本机库,则会出现此警告消息,因为该库损坏了插件使用的通道,以便将具有测试状态的事件传输回 Maven 进程。如果你通过System.setOut覆盖Java流,情况会更糟,因为该流也应该被损坏,但Maven永远不会看到测试完成,并且构建可能会挂起。

如果您使用 FileDescriptor.out 或 JVM 打印 GC 摘要,则会出现此警告消息。

在这种情况下,警告被打印为“通过直接写入分叉的JVM中的本机流而损坏了STDOUT”,并且可以在报告目录中找到转储文件。

如果启用了调试级别,则控制台中将显示损坏流的消息。

它指的是一些原生库直接打印到STDOUT,但是我如何弄清楚哪一个,即使我这样做了,如果我的项目需要库,我该如何处理这个问题?

它提到了“调试级别”,但目前还不清楚这是否意味着Maven的调试级别或Surefire插件的调试级别。我启用了 Maven 的调试,但我没有看到常见问题解答中提到的控制台输出。Surefire的调试选项似乎是关于暂停测试并等待调试器连接到进程,而不仅仅是在控制台上显示更多信息。

转储文件似乎也不是很有帮助:

# Created on 2019-03-20T18:42:58.323
Corrupted STDOUT by directly writing to native stream in forked JVM 2. Stream 'FATAL ERROR in native method: processing of -javaagent failed'.
java.lang.IllegalArgumentException: Stream stdin corrupted. Expected comma after third character in command 'FATAL ERROR in native method: processing of -javaagent failed'.
    at org.apache.maven.plugin.surefire.booterclient.output.ForkClient$OperationalData.<init>(ForkClient.java:511)
    at org.apache.maven.plugin.surefire.booterclient.output.ForkClient.processLine(ForkClient.java:209)
    at org.apache.maven.plugin.surefire.booterclient.output.ForkClient.consumeLine(ForkClient.java:176)
    at org.apache.maven.plugin.surefire.booterclient.output.ThreadedStreamConsumer$Pumper.run(ThreadedStreamConsumer.java:88)
    at java.base/java.lang.Thread.run(Thread.java:834)

那么,我该如何解决这个问题呢?

更新:下面请求的配置信息。

我在Windows 10,Maven 3.5.3和Surefire 2.21.0上使用OpenJDK 11(Zulu发行版)(完整配置如下)。

我使用文件上的“Run As...”上下文菜单选项从Eclipse运行Maven,但在控制台上运行它时获得相同的结果。pom.xml

在对这个问题的第一条评论之前,我从未听说过JaCoco,但是我看到几条错误消息提到了它:

[ERROR] ExecutionException The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[ERROR] Command was cmd.exe /X /C ""C:\Program Files\Zulu\zulu-11\bin\java" -javaagent:C:\\Users\\E26638\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.8.0\\org.jacoco.agent-0.8.0-runtime.jar=destfile=C:\\Users\\E26638\\git\\aic-expresso\\target\\jacoco.exec -Xms256m -Xmx1028m -jar C:\Users\E26638\AppData\Local\Temp\surefire10089630030045878403\surefirebooter8801585361488929382.jar C:\Users\E26638\AppData\Local\Temp\surefire10089630030045878403 2019-03-21T21-26-04_829-jvmRun12 surefire10858509118810158083tmp surefire_115439010304069944813tmp"
[ERROR] Error occurred in starting fork, check output in log
[ERROR] Process Exit Code: 1

这是Surefire Maven插件配置:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.21.0</version>
        <configuration>
            <skipTests>${skipUnitTests}</skipTests>
            <testFailureIgnore>false</testFailureIgnore>
            <forkCount>1.5C</forkCount>
            <reuseForks>true</reuseForks>
            <parallel>methods</parallel>
            <threadCount>4</threadCount>
            <perCoreThreadCount>true</perCoreThreadCount>
            <reportFormat>plain</reportFormat>
            <trimStackTrace>false</trimStackTrace>
            <redirectTestOutputToFile>true</redirectTestOutputToFile>
        </configuration>
    </plugin>

答案 1

在将项目从 JAVA 8 迁移到 JAVA 11 时,在相同的问题中运行,将 jacoco 插件从 0.8.1 升级到 0.8.4 完成了这项工作。

分析maven依赖关系,查看从哪里拉动jacoco,然后修复版本应该可以解决问题。


答案 2

我在使用自定义运行器运行 Junit 测试时遇到了此问题。如果我对自定义运行器或测试类进行了任何输出,或者在自定义运行器或测试类中进行了任何输出,则会显示此确切的警告。在我的情况下,问题不是由一些较旧的Jacoco版本引起的。将 surefire 插件更新到版本 2.22.2 或更新的 3.0.0-M4 未解决问题。System.outSystem.err

根据Jira问题SUREFIRE-1614,该问题将在maven-surefire-插件的3.0.0-M5版本中修复(截至2020年5月21日未发布)。

更新Maven Surefire插件版本3.0.0-M5现已发布。在您的应用程序中,您可以执行以下操作:pom.xml

    <plugin>
      <artifactId>maven-surefire-plugin</artifactId>
      <version>3.0.0-M5</version>
      <configuration>
        <!-- Activate the use of TCP to transmit events to the plugin -->
        <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
      </configuration>
    </plugin>

原始答案

如果您不能等待3.0.0-M5插件的发布,则可以使用插件的“SNAPSHOT”版本。它确实为我解决了这个问题。您必须在插件中启用某些特定设置,以便插件使用TCP而不是标准输出/错误来获取测试中引发的事件。配置更改如下:

在我的 :pom.xml

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

...
  <!-- Add the repository to download the "SNAPSHOT" of maven-surefire-plugin -->
  <pluginRepositories>
    <pluginRepository>
      <id>apache.snapshots</id>
      <url>https://repository.apache.org/snapshots/</url>
    </pluginRepository>
  </pluginRepositories>

  <build>
    <pluginManagement>
      <plugins>
    ...
    <artifactId>maven-surefire-plugin</artifactId>
      <!-- Use the SNAPSHOT version -->
      <version>3.0.0-SNAPSHOT</version>
      <configuration>
        <!-- Activate the use of TCP to transmit events to the plugin -->
        <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
      </configuration>
    </plugin>


推荐