-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown-summary.sh
executable file
·52 lines (44 loc) · 3.02 KB
/
markdown-summary.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
#!/bin/sh
#
# Copyright 2021 Daniel Bornkessel
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
cargo_test_results_file=$1
: ${cargo_test_results_file:?}
# cargo output has some nasty combination of escape characters which confuse bash
sed -i.bak -e 's/\\"//g' ${cargo_test_results_file}
echo "| |test |duration|" > results.md
echo "|--|------|-------:|" >> results.md
while read line
do
title=$(echo "${line}"|jq -r .name)
if [ "${title}" = "${title:0:80}" ]
then
name="${title}"
else
name="${title:0:77}..."
fi
duration_title=$(echo "${line}"|jq -r ".exec_time" 2>/dev/null)
duration=$(printf "%.2f" ${duration_title} 2>/dev/null)
echo "${line}"|jq -r 'if .event != "started" and .type != "suite" and .event == "ok" then ["|","<span title=\"test succeeded\" >✅</span>|", "<span title=\"'${title}'\">'${name}'</span>","|","<tt title=\"test finished within '${duration_title}' seconds\">'${duration}'s</tt>","|"]|add else empty end'
echo "${line}"|jq -r 'if .event != "started" and .type != "suite" and .event == "failed" then ["|","<span title=\"test failed\" >❌</span>|", "<span title=\"'${title}'\">'${name}'</span>","|","<tt title=\"test finished within '${duration_title}' seconds\">'${duration}'s</tt>","|"]|add else empty end'
echo "${line}"|jq -r 'if .event != "started" and .type != "suite" and .event == "ignored" then ["|","<span title=\"test was ignored\" >🙈</span>|", "<span title=\"'${title}'\">'${name}'</span>","|","<tt title=\"test finished within '${duration_title}' seconds\">'${duration}'s</tt>","|"]|add else empty end'
echo "${line}"|jq -r 'if .event != "started" and .type != "suite" and .event == "timeout" then ["|","<span title=\"test timed out\" >⌛️</span>|", "<span title=\"'${title}'\">'${name}'</span>","|","<tt title=\"test finished within '${duration_title}' seconds\">'${duration}'s</tt>","|"]|add else empty end'
echo "${line}"|jq -r 'if .event != "started" and .type != "suite" and .event == "allowed_failure" then ["|","<span title=\"test failed, but failure was allowed\">🤷</span>|", "<span title=\"'${title}'\">'${name}'</span>","|","<tt title=\"test finished within '${duration_title}' seconds\">'${duration}'s</tt>","|"]|add else empty end'
done < ${cargo_test_results_file} >> results.md
export SUMMARY="$(cat results.md)"
SUMMARY="${SUMMARY//'%'/'%25'}"
SUMMARY="${SUMMARY//$'\n'/'%0A'}"
SUMMARY="${SUMMARY//$'\r'/'%0D'}"
echo "${SUMMARY}"