0

これは、単体テストの基本クラスです。

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/spring/test-context.xml")
public abstract class BaseUnitTest {}

すべての単体テストは、このクラスを拡張します。

Eclipse でテストをローカルで実行すると (Run As > Unit Test を使用)、テストは約 5 秒で実行されます。これは、同じコンテキストがすべてのテストで共有され、一度だけ読み込まれるためです。

ただし、mvn テスト ターゲットを使用して実行すると、約 5 分かかります。ログを見ると、すべてのテストでアプリケーション コンテキストが読み込まれていることがわかります。Jenkins CI サーバーで実行した場合と同じ時間 (5 分) かかります。

何が起こっているのかわからない。春のドキュメントでは、appContext は maven でも再利用する必要があると述べていますが、ここではそうではありません。

どんな助けでも大歓迎です。

更新: デバッグ フラグをオンにして mvn を実行したところ、テストごとに新しい JVM が生成されていることがわかります。

フォーク コマンド ライン: cmd.exe /X /C "java -Xverify:none -jar S:\git\picaxo21\picaxo\picaxoService\target\surefire\surefirebooter8169952914558366417.jar S:\git\picaxo21\picaxo\picaxoService\target\ Surefire\surefire8550033206398936560tmp S:\git\picaxo21\picaxo\picaxoService\target\surefire\surefire_05655453605766528120tmp"

フォークコマンドライン: cmd.exe /X /C "java -Xverify:none -jar S:\git\picaxo21\picaxo\picaxoService\target\surefire\surefirebooter400202447779069323.jar S:\git\picaxo21\picaxo\picaxoService\target\ Surefire\surefire6735432532690834115tmp S:\git\picaxo21\picaxo\picaxoService\target\surefire\surefire_17783676008756503456tmp"

フォーク コマンド ライン: cmd.exe /X /C "java -Xverify:none -jar S:\git\picaxo21\picaxo\picaxoService\target\surefire\ 7874269889863176184.jar S:\git\picaxo21\picaxo\picaxoService\target\ Surefire\surefire2050758518148174678tmp S:\git\picaxo21\picaxo\picaxoService\target\surefire\surefire_27591156970671336255tmp"

forkCount=1 と reuseForks=true を使用しているため、なぜこれが起こっているのかわかりません。手がかりはありますか?

親 POM :

<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
    .....
</parent>

<groupId>...</groupId>
<artifactId>picaxo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>.....</name>
<description>Build All Modules</description>

<modules>
    <module>picaxoService</module>
</modules>

<scm>
    ....
</scm>

<properties>
    <pmd.include.tests>true</pmd.include.tests>
    <findbugs.plugin.version>3.0.0</findbugs.plugin.version>
    <fb.threshold>Low</fb.threshold>
    <fb.includeTests>true</fb.includeTests>
    <fb.effort>Max</fb.effort>
    <fb.failOnError>false</fb.failOnError>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <skipTests>true</skipTests>
</properties>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <testFailureIgnore>true</testFailureIgnore>
                <skipTests>${skipTests}</skipTests>
                <reuseForks>true</reuseForks>
                <forkCount>1</forkCount>
                <excludes>
                    <exclude>**/*IntegrationTest.java</exclude>
                </excludes>
            </configuration>
            <executions>
                <execution>
                    <id>integration-test</id>
                    <goals>
                        <goal>test</goal>
                    </goals>
                    <phase>integration-test</phase>
                    <configuration>
                        <excludes>
                            <exclude>none</exclude>
                        </excludes>
                        <includes>
                            <include>**/*IntegrationTest.java</include>
                        </includes>
                    </configuration>
                </execution>
            </executions>
        </plugin>
</build>

4

1 に答える 1

0

問題が見つかりました。どうやら確実なプラグインの forkMode は pertest にデフォルト設定されていたため、テストごとに新しい JVM を生成していました。プラグイン構成で明示的に一度に設定すると、問題が解決しました。

于 2015-03-23T06:08:36.823 に答える