Mockito、jacoco和surefire导致记忆丧失



我使用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 agent,我就会在PermGen中出现OOO问题。

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

当OOO发生时,我试图通过向surefire插件添加参数来获得核心转储,但从未在任何文件夹中看到转储文件。我怀疑我的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插件的内存,如下所示:

<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>

相关内容

  • 没有找到相关文章