-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_cov.sh
81 lines (66 loc) · 2.07 KB
/
run_cov.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
#!/bin/sh
# run_cov.sh
#
# this program measure coverage for IOS Code
# Not only Object-C but also Swift Language..
# By Using Slather(Open Source : https://github.com/SlatherOrg/slather)
#
#
function install_coverage_program() {
# install xcpretty
xcpretty_str=$(gem list -i xcpretty)
if [[ "$xcpretty_str" == false ]];then
echo "xcpretty install..."
gem install xcpretty
fi
# install slather
slather_str=$(gem list -i slather)
if [[ "$slather_str" == false ]];then
echo "slather install..."
gem install slather
fi
}
function build_and_test() {
echo "\033[1;32m=== Run Test Project($1), Scheme($2) === \033[0m"
xcodebuild clean build test \
-project $1 \
-scheme $2 \
-destination "platform=iOS Simulator,name=iPhone 6,OS=10.2" \
-configuration Debug \
-enableCodeCoverage YES \
| xcpretty -r junit -r html
}
function measure_coverage() {
echo "\033[1;32m=== Test Coverage Report for $1 === \033[0m"
BUILD_SETTINGS=$(xcodebuild \
-project $1 \
-scheme $2 \
-destination "platform=iOS Simulator,name=iPhone 6,OS=10.2" \
-configuration Debug \
-showBuildSettings)
PROJECT_TEMP_ROOT=$(echo "${BUILD_SETTINGS}" | grep -m1 PROJECT_TEMP_ROOT | cut -d= -f2 | xargs)
PROFDATA=$(find ${PROJECT_TEMP_ROOT} -name "Coverage.profdata")
BINARY=$(find ${PROJECT_TEMP_ROOT} -path "*$2.app/$2")
# SKIP Detail Report
# xcrun llvm-cov show -instr-profile ${PROFDATA} ${BINARY}
xcrun llvm-cov report \
-instr-profile ${PROFDATA} \
${BINARY}
slather coverage \
--html \
--cobertura-xml \
--output-directory slather-report \
--scheme $2 \
$1
}
#Check Input Arguments
if [ -z "$1" ]; then
echo "\033[0;36m=== No argument supplied, please check example === \033[0m"
echo " example) sh run_cov.sh Foo.xcodeproj Foo"
else
project="$1"
scheme="$2"
install_coverage_program
build_and_test $project $scheme
measure_coverage $project $scheme
fi