forked from trygvis/screenshots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode_coverage.sh
executable file
·97 lines (81 loc) · 1.96 KB
/
code_coverage.sh
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
#!/usr/bin/env bash
set -e
#set -x
main() {
if ! [[ -d .git ]]; then printError "Error: not in root of repo\n"; show_help; fi
case $1 in
--help)
show_help
;;
--report)
runReport
;;
*)
runTests
;;
esac
}
show_help() {
printf "usage: %s [--help] [--report]
Tool for running tests with code coverage.
(run from root of repo)
where:
--report
run a coverage report (run code coverage first)
(requires lcov installed)
--help
print this message
requires coverage package
(install with 'pub global activate coverage')
" "$(basename "$0")"
exit 1
}
# run tests with code coverage
runTests () {
local test_path="test/all_tests.dart"
# local test_path="test/run_test.dart"
local coverage_dir="coverage"
# clear coverage directory
rm -rf "$coverage_dir"
mkdir "$coverage_dir"
OBS_PORT=9292
# Run the coverage collector to generate the JSON coverage report.
echo "Listening for coverage report on port $OBS_PORT..."
pub global run coverage:collect_coverage \
--port=$OBS_PORT \
--out="$coverage_dir"/coverage.json \
--wait-paused \
--resume-isolates &
# Start tests in one VM.
echo "Running tests with code coverage..."
dart --disable-service-auth-codes \
--enable-vm-service=$OBS_PORT \
--pause-isolates-on-exit \
"$test_path"
echo "Generating LCOV report..."
pub global run coverage:format_coverage \
--lcov \
--in="$coverage_dir"/coverage.json \
--out="$coverage_dir"/lcov.info \
--packages=.packages \
--report-on=lib
}
runReport() {
if [[ -f "coverage/lcov.info" ]]; then
genhtml -o coverage coverage/lcov.info --no-function-coverage -q
open coverage/index.html
else
printError "Error: coverage has not been run.\n"
show_help
fi
}
printError() {
local msg=$1
local red
local none
# output in red
red=$(tput setaf 1)
none=$(tput sgr0)
printf "%s$msg%s" "${red}" "${none}"
}
main "$@"