Emmaコード カバレッジ レポートを生成する Ant タスクをセットアップするにはどうすればよいですか?
3 に答える
ソース ディレクトリとインストルメント化されたディレクトリの場所に関する質問に答えるには (これらは、標準のディレクトリ構造に切り替えることができます):
<property file="build.properties" />
<property name="source" location="src/main/java" />
<property name="test.source" location="src/test/java" />
<property name="target.dir" location="target" />
<property name="target" location="${target.dir}/classes" />
<property name="test.target" location="${target.dir}/test-classes" />
<property name="instr.target" location="${target.dir}/instr-classes" />
クラスパス:
<path id="compile.classpath">
<fileset dir="lib/main">
<include name="*.jar" />
</fileset>
</path>
<path id="test.compile.classpath">
<path refid="compile.classpath" />
<pathelement location="lib/test/junit-4.6.jar" />
<pathelement location="${target}" />
</path>
<path id="junit.classpath">
<path refid="test.compile.classpath" />
<pathelement location="${test.target}" />
</path>
最初に、Ant が Emma ライブラリを見つけることができる場所をセットアップする必要があります。
<path id="emma.lib" >
<pathelement location="${emma.dir}/emma.jar" />
<pathelement location="${emma.dir}/emma_ant.jar" />
</path>
次に、タスクをインポートします。
<taskdef resource="emma_ant.properties" classpathref="emma.lib" />
次に、コードをインストルメント化します。
<target name="coverage.instrumentation">
<mkdir dir="${instr.target}"/>
<mkdir dir="${coverage}"/>
<emma>
<instr instrpath="${target}" destdir="${instr.target}" metadatafile="${coverage}/metadata.emma" mode="copy">
<filter excludes="*Test*"/>
</instr>
</emma>
<!-- Update the that will run the instrumented code -->
<path id="test.classpath">
<pathelement location="${instr.target}"/>
<path refid="junit.classpath"/>
<pathelement location="${emma.dir}/emma.jar"/>
</path>
</target>
次に、次のような適切な VM 引数を使用してターゲットを実行します。
<jvmarg value="-Demma.coverage.out.file=${coverage}/coverage.emma" />
<jvmarg value="-Demma.coverage.out.merge=true" />
最後にレポートを生成します。
<target name="coverage.report" depends="coverage.instrumentation">
<emma>
<report sourcepath="${source}" depth="method">
<fileset dir="${coverage}" >
<include name="*.emma" />
</fileset>
<html outfile="${coverage}/coverage.html" />
</report>
</emma>
</target>
ユーザー ガイドには、インストルメント化されたコードを実行から分離するだけでなく、一連の異なるターゲットを実行する必要がないように、すべて同じコードに含まれるようにビルド スクリプトをセットアップする方法の良い例があります。<target>
、代わりに次のようなことを行うことができますant emma tests
(ant tests
たとえば、ユニットテストを通常どおり実行した場合)。
これが彼らの例です:
<target name="emma" description="turns on EMMA instrumentation/reporting" >
<property name="emma.enabled" value="true" />
<!-- EMMA instr class output directory: -->
<property name="out.instr.dir" value="${basedir}/outinstr" />
<mkdir dir="${out.instr.dir}" />
</target>
<target name="run" depends="init, compile" description="runs the examples" >
<emma enabled="${emma.enabled}" >
<instr instrpathref="run.classpath"
destdir="${out.instr.dir}"
metadatafile="${coverage.dir}/metadata.emma"
merge="true"
/>
</emma>
<!-- note from matt b: you could just as easily have a <junit> task here! -->
<java classname="Main" fork="true" >
<classpath>
<pathelement location="${out.instr.dir}" />
<path refid="run.classpath" />
<path refid="emma.lib" />
</classpath>
<jvmarg value="-Demma.coverage.out.file=${coverage.dir}/coverage.emma" />
<jvmarg value="-Demma.coverage.out.merge=true" />
</java>
<emma enabled="${emma.enabled}" >
<report sourcepath="${src.dir}" >
<fileset dir="${coverage.dir}" >
<include name="*.emma" />
</fileset>
<txt outfile="${coverage.dir}/coverage.txt" />
<html outfile="${coverage.dir}/coverage.html" />
</report>
</emma>
</target>
Emma 2.1 では、ランタイム カバレッジ情報 (.ec ファイル) を取得する別の方法が導入されています。インストルメント化されたアプリケーションが実行されているコンピューターの特定のポートからデータをリモートで要求できます。したがって、VM を停止する必要はありません。
ランタイム カバレッジ データを含むファイルを取得するには、テストの実行とカバレッジ レポートの生成の間に次のスニペットを Ant スクリプトに挿入する必要があります。
<emma>
<ctl connect="${emma.rt.host}:${emma.rt.port}" >
<command name="coverage.get" args="${emma.ec.file}" />
<command name="coverage.reset" />
</ctl>
</emma>
その他の手順は Emma 2.0 と同様です。それらは前の投稿で完全に説明されています
Emma 2.1 機能の詳細: http://sourceforge.net/project/shownotes.php?group_id=108932&release_id=336859