Mockito、jacoco 和 surefire 导致内存不足

Mockito, jacoco and surefire causes out of memory

我正在使用 mockito 1.8.3、jacoco 0.72 和 maven 3.0.5 surefire 插件 (2.12.4) 执行单元测试并生成覆盖率报告,它工作正常。

随着越来越多的测试被添加,它开始不起作用。我在执行测试的过程中不断遇到内存不足的错误,一直找不到解决问题的方法。

我有大约 1800 多个使用 mockito 作为模拟工具的测试用例。如果我在测试阶段之前使用 "org.jacoco:jacoco-maven-plugin:prepare-agent " 在 Maven 测试期间不 运行 jacoco,它工作正常,但只要我添加 jacoco 代理,我就会遇到 PermGen 完整的 OOO 问题。

我已经通过修改 MAVEN_OPTS(这不应该工作,因为 surefire 会派生一个新进程)和 pom 中的 surefire argline 参数将 PermGen 添加到 2GB,但它没有太大帮助。

我尝试通过向 surefire 插件添加参数来在发生 OOO 时获取核心转储,但从未在任何文件夹中看到转储文件。我怀疑我的 JVM 设置不适用于 surefire 插件,但不确定哪里出了问题。谁能帮我一个忙?谢谢

            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${surefire.version}</version>
                <inherited>true</inherited>
                <configuration>
                    <properties>
                        <property>
                            <name>argLine</name>                                    <value>-server -ea -XX:-UseSplitVerifier -XX:MaxPermSize=2g -Xmx3g -XX:+HeapDumpOnOutOfMemoryError </value>
                        </property>
                        <property>
                            <name>forkMode</name>
                            <value>once</value>
                        </property>
                        <property>
                            <name>reportFormat</name>
                            <value>plain</value>
                        </property>
                        <property>
                            <name>skipTests</name>
                            <value>${maven.test.skip}</value>
                        </property>
                    </properties>
                </configuration>
            </plugin>

您需要为 maven-surefire-plugin 设置内存,如下所示:

<plugins>
[...]
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.18.1</version>
    <configuration>
        <forkCount>3</forkCount>
        <reuseForks>true</reuseForks>
        <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
        <systemPropertyVariables>
            <databaseSchema>MY_TEST_SCHEMA_${surefire.forkNumber}</databaseSchema>
        </systemPropertyVariables>
    </configuration>
  </plugin>
[...]
</plugins>

如果你配置了 jacoco 和 maven failsafe plugin,那么你也需要将内存参数传递给那个:

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-failsafe-plugin</artifactId>
   <version>2.14.1</version>
   <configuration>
      <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
   </configuration>
</plugin>