-
Notifications
You must be signed in to change notification settings - Fork 319
/
getcov
executable file
·165 lines (139 loc) · 3.57 KB
/
getcov
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/bash
# XcodeCoverage by Jon Reid, https://qualitycoding.org
# Copyright 2021 Quality Coding, Inc. See LICENSE.txt
usage() {
echo "usage: getcov [[-s] [-x] [-xc] [-o output_dir] [-i info_file] [-v]] | [-h]]"
}
main() {
scripts="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "${scripts}/envcov.sh"
LCOV_INFO=Coverage.info
output_dir="${BUILT_PRODUCTS_DIR}"
while [ "$1" != "" ]; do
case $1 in
-s|--show)
show_html=1
echo "Show HTML Report"
;;
-x|--xml)
generate_xml=1
echo "Generate Cobertura XML"
;;
-xc|--xmlclover)
generate_xml=1
generate_xml_clover=1
echo "Generate Clover XML"
;;
-o)
shift
output_dir=$1
echo "output_dir = ${output_dir}"
;;
-i)
shift
LCOV_INFO=$1
echo "LCOV_INFO = ${LCOV_INFO}"
;;
-v)
verbose=1
echo "Verbose"
;;
-h|--help)
usage
echo "Show Help"
exit
;;
*)
usage
exit 1
esac
shift
done
if [ "$verbose" = "1" ]; then
report_values
fi
remove_old_report
enter_lcov_dir
gather_coverage
exclude_data
if [ "$generate_xml" = "1" ]; then
generate_cobertura_xml
fi
if [ "$generate_xml_clover" = "1" ]; then
generate_clover_xml
fi
generate_html_report
if [ "$show_html" = "1" ]; then
show_html_report
fi
}
report_values() {
echo "XcodeCoverage: Environment"
echo "scripts : ${scripts}"
echo "output_dir : ${output_dir}"
echo "LCOV_INFO : ${LCOV_INFO}"
echo "BUILD_DIR : ${BUILT_PRODUCTS_DIR}"
echo "SRCROOT : ${SRCROOT}"
echo "OBJ_DIR : ${OBJ_DIR}"
echo "LCOV_PATH : ${LCOV_PATH}"
echo "IGNORED : ${XCODECOV_IGNORED_PATHS}"
}
remove_old_report() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Removing old report"
fi
pushd "${output_dir}"
if [ -e lcov ]; then
rm -r lcov
fi
popd
}
enter_lcov_dir() {
cd "${output_dir}"
mkdir lcov
cd lcov
}
gather_coverage() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Gathering coverage"
fi
LCOV --capture --derive-func-data -b "${SRCROOT}" -d "${OBJ_DIR}" -o "${LCOV_INFO}"
}
exclude_data() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Excluding data"
fi
LCOV --remove "${LCOV_INFO}" "Developer/SDKs/*" -d "${OBJ_DIR}" -o "${LCOV_INFO}"
LCOV --remove "${LCOV_INFO}" "main.m" -d "${OBJ_DIR}" -o "${LCOV_INFO}"
#Remove anything the .xcodecoverageignore file has specified should be ignored.
(cat "${SRCROOT}/.xcodecoverageignore"; echo) | while read IGNORE_THIS; do
#use eval to expand any of the variables and then pass them to the shell - this allows
#use of wildcards in the variables.
eval LCOV --remove "${LCOV_INFO}" "${IGNORE_THIS}" -d "${OBJ_DIR}" -o "${LCOV_INFO}"
done
}
generate_cobertura_xml() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Generating Cobertura XML"
fi
python "${scripts}/lcov_cobertura.py" ${LCOV_INFO} --base-dir "${SRCROOT}" --output "coverage.xml"
}
generate_html_report() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Generating HTML report"
fi
"${LCOV_PATH}/genhtml" --output-directory . "${LCOV_INFO}"
}
generate_clover_xml () {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Generating Clover XML"
fi
xsltproc "${scripts}/transform.xslt" "coverage.xml" > "clover.xml"
}
show_html_report() {
if [ "$verbose" = "1" ]; then
echo "XcodeCoverage: Opening HTML report"
fi
open index.html
}
main "$@"