EMMA
EMMA Integration Notes
The following steps are performed when collecting coverage with EMMA:
After each compilation step (with javac/javac2), build agent invokes EMMA to instrument compiled classes and to store the location of the source files. As a result,
coverage.em
file is created in the build checkout directory, which contains classes metadata. The collected source paths of java files are used to generate the final HTML report.Test run. On this stage, actual runtime coverage information is collected. This process results in creation of the file
coverage.ec
. If there are several test tasks, data is appended tocoverage.ec
.Report generation. When build ends, TeamCity generates HTML coverage report, creates a zip file with the report (
coverage.zip
) and uploads it to the server. It also generates and uploads summary report -coverage.txt
file, and originalcoverage.e(c|m)
files to allow viewing coverage from TeamCity plugin for IntelliJ IDEA.
Configuring Coverage with EMMA
To configure code coverage by means of EMMA engine, follow these steps:
While creating/editing Build Configuration, go to the Build Runner page.
Select Ant, or Ipr build runner.
Select EMMA as a coverage tool in the Choose coverage runner drop-down.
Set up the coverage options - find the description of the available options below.
Option
Description
Include Source Files in the Coverage Data
Check this option to include source files into the code coverage report (you'll be able to see sources on the Web).
Coverage Instrumentation Parameters
Use this field to specify the filters to be used for creating the code coverage report. These filters define classes to be exempted from instrumentation. For detailed description of filters refer to http://emma.sourceforge.net/reference_single/reference.html#prop-ref.tables.
Troubleshooting
No coverage, there is a message: EMMA: no output created: metadata is empty
Please make sure that all your classes (whose coverage is to be evaluated) are recompiled during the build. Usually, this requires adding a kind of "clean" task at the beginning of the build.
java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT
This message appears when your build loads EMMA-instrumented class files in runtime, and it cannot find emma.jar file in classpath. For test tasks, like junit
or testng
, TeamCity adds emma.jar
to classpath automatically. But for other tasks, this is not the case and you might need to modify your build script or to exclude some classes from instrumentation.
If your build runs a java task, which uses your own compiled classes, you'll have to either add emma.jar
to classpath of the java task, or to ensure that classes used in your java task are not instrumented. Another point, you should run your java task with attribute fork=true
.
Corresponding emma.jar
file can be taken from buildAgent/plugins/coveragePlugin/lib/emma.jar
. For a typical build, corresponding include path would be ../../plugins/coveragePlugin/lib/emma.jar
To exclude classes from compilation, use settings for EMMA instrumentation task. TeamCity UI has a field to pass these parameters to EMMA, labeled "Coverage instrumentation parameters". To exclude some package from instrumenting, use syntax like: -ix -com.foo.task.*,+com.foo.*,-*Test*
, where package com.foo.task.*
contains files for your custom task.
EMMA coverage results are unstable
Please make sure that your junit task has attribute fork=true
. The recommended combination of attributes is "fork=true forkmode=once
".