5

私は Jacoco Junit タスクを使用しており、次のことを試しました。

    <!-- run the junit tests -->
    <echo>DEBUG: $${junit.fork} = "${junit.fork}"</echo>
    <jacoco:coverage
        destfile="${target.dir}/jacoco.exec"
        append="false">
        <junit fork="${junit.fork}" includeAntRuntime="true">
            <classpath>
                <pathelement path="${main.destdir}"/>
                <pathelement path="${test.destdir}"/>
            </classpath>
            <classpath refid="test.classpath"/>
            <formatter type="${junit.formatter.type}"/>
            <batchtest      todir="${junit.batchtest.todir}">
                <fileset dir="${test.destdir}" />
            </batchtest>
        </junit>
    </jacoco:coverage>

そして、以下を得ました:

test:
     [echo] DEBUG: ${junit.fork} = "true"
[jacoco:coverage] Enhancing junit with coverage

BUILD FAILED
D:\build.xml:233: Coverage can only be applied on a forked VM

Total time: 6 seconds

D:\>

ご覧のとおり、${junit.fork}プロパティは に設定されてtrueおり、そのプロパティを で使用しました<junit fork="${junit.fork}"/>

ただし、そのプロパティを使用する代わりに、 を設定<junit fork="true">するだけで問題なく動作します。

    <jacoco:coverage
        destfile="${target.dir}/jacoco.exec"
        append="false">
        <junit fork="true" includeAntRuntime="true">
            <classpath>
                <pathelement path="${main.destdir}"/>
                <pathelement path="${test.destdir}"/>
            </classpath>
            <classpath refid="test.classpath"/>
            <formatter type="${junit.formatter.type}"/>
            <batchtest      todir="${junit.batchtest.todir}">
                <fileset dir="${test.destdir}" />
            </batchtest>
        </junit>
    </jacoco:coverage>

プロパティant -d testを使用するときに Java JVM がフォークしていることを確認するために実行しました。${junit.fork}

forkパラメータをtrueequals のプロパティではなく文字列に設定しない限り、JUnit テストはフォークされないと JaCoCo が主張するのはなぜtrueですか?

4

1 に答える 1

3

Jacocoカバレッジタスクのソースコードによると:

...
public void enhanceTask(final Task task) {
    final RuntimeConfigurable configurableWrapper = task.getRuntimeConfigurableWrapper();

    final String forkValue = (String) configurableWrapper.getAttributeMap().get("fork");
    if (!Project.toBoolean(forkValue)) {
        throw new BuildException("Coverage can only be applied on a forked VM", getLocation());
    }
    addJvmArgs(task);
}
...

forkValue は configurableWrapper から読み取られます。属性マップ値 ( など) は、によって呼び出される${junit.fork}メソッドを使用して評価されます。そして、Jacoco のソース コードを見続けると、次のようになります。 RuntimeConfigurable.maybeConfigureTask.mayBeConfigure

...
public void addTask(final Task task) {
    if (childTask != null) {
        throw new BuildException("Only one child task can be supplied to the coverge task", getLocation());
    }
    this.childTask = task;
    final String subTaskTypeName = task.getTaskType();
    final TaskEnhancer enhancer = findEnhancerForTask(subTaskTypeName);
    if (enhancer == null) {
        throw new BuildException(format("%s is not a valid child of the coverage task", subTaskTypeName), getLocation());
}
    if (isEnabled()) {
        log(format("Enhancing %s with coverage", childTask.getTaskName()));
        enhancer.enhanceTask(task);
    }
    task.maybeConfigure();
}
...

このメソッド ( mayBeConfigure) は、タスクが強化された ( enhancer.enhanceTask(task);) 後に呼び出されます。それはあなたの問題であり、バグだと思います... jacocoバグトラッカーに報告する必要があります。

ジャココ号

于 2012-08-21T10:20:51.703 に答える