blob: a5fce75f067f5264c9fc71ec12f93caabcf0a8d1 [file] [log] [blame]
#!/bin/sh
#
# Usage
#
# COVERAGE_CPUS=32 tools/coverage.sh [/path/to/report-directory/] [targets]
#
# COVERAGE_CPUS defaults to 2, and the default destination is a temp
# dir.
set -e
genhtml=$(which genhtml)
if [[ -z "${genhtml}" ]]; then
echo "Install 'genhtml' (contained in the 'lcov' package)"
exit 1
fi
destdir="$1"
if [[ -z "${destdir}" ]]; then
destdir=$(mktemp -d /tmp/gerritcov.XXXXXX)
fi
targets="$2"
if [[ -z "${targets}" ]]; then
targets="apps/... java/..."
fi
echo "Running 'bazel coverage'; this may take a while"
# coverage is expensive to run; use --jobs=2 to avoid overloading the
# machine.
bazel coverage -k --jobs=${COVERAGE_CPUS:-2} -- $targets
# The coverage data contains filenames relative to the Java root, and
# genhtml has no logic to search these elsewhere. Workaround this
# limitation by running genhtml in a directory with the files in the
# right place. Also -inexplicably- genhtml wants to have the source
# files relative to the output directory.
rm -rf ${destdir}/* || true
mkdir -p ${destdir}/
for ROOT in java apps/paymentmethodtoken; do
rsync -a $ROOT/src/{main,test}/java/ ${destdir}/
done
base=$(bazel info bazel-testlogs)
for f in $(find ${base} -name 'coverage.dat') ; do
cp $f ${destdir}/$(echo $f| sed "s|${base}/||" | sed "s|/|_|g")
done
cd ${destdir}
find -name '*coverage.dat' -size 0 -delete
genhtml -o . --ignore-errors source *coverage.dat
echo "coverage report at file://${destdir}/index.html"