blob: b935f5d876b3d6c9709337569c2ec5bd19c226f4 (
plain)
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
|
#!/usr/bin/env bash
source vars
args=
focused_test=0
persist_set=0
unconfigure_set=0
debug_set=0
leak_check_set=0
debug_build=
ginkgo_args=
tc_names=()
for i in "$@"
do
case "${i}" in
--persist=*)
persist="${i#*=}"
if [ "$persist" = "true" ]; then
args="$args -persist"
persist_set=1
fi
;;
--debug=*)
debug="${i#*=}"
if [ "$debug" = "true" ]; then
args="$args -debug"
debug_set=1
fi
;;
--debug_build=*)
debug_build="${i#*=}"
if [ "$debug_build" = "true" ]; then
args="$args -debug_build"
fi
;;
--verbose=*)
verbose="${i#*=}"
if [ "$verbose" = "true" ]; then
args="$args -verbose"
fi
;;
--unconfigure=*)
unconfigure="${i#*=}"
if [ "$unconfigure" = "true" ]; then
args="$args -unconfigure"
unconfigure_set=1
fi
;;
--cpus=*)
args="$args -cpus ${i#*=}"
;;
--vppsrc=*)
args="$args -vppsrc ${i#*=}"
;;
--test=*)
tc_list="${i#*=}"
ginkgo_args="$ginkgo_args -v"
if [ "$tc_list" != "all" ]; then
focused_test=1
IFS=',' read -r -a tc_names <<< "$tc_list"
args="$args -verbose"
fi
;;
--parallel=*)
ginkgo_args="$ginkgo_args -procs=${i#*=}"
;;
--repeat=*)
ginkgo_args="$ginkgo_args --repeat=${i#*=}"
;;
--cpu0=*)
cpu0="${i#*=}"
if [ "$cpu0" = "true" ]; then
args="$args -cpu0"
fi
;;
--leak_check=*)
leak_check="${i#*=}"
if [ "$leak_check" = "true" ]; then
args="$args -leak_check"
leak_check_set=1
fi
;;
esac
done
for name in "${tc_names[@]}"; do
ginkgo_args="$ginkgo_args --focus $name"
done
if [ $focused_test -eq 0 ] && [ $persist_set -eq 1 ]; then
echo "persist flag is not supported while running all tests!"
exit 1
fi
if [ $unconfigure_set -eq 1 ] && [ $focused_test -eq 0 ]; then
echo "a single test has to be specified when unconfigure is set"
exit 1
fi
if [ $persist_set -eq 1 ] && [ $unconfigure_set -eq 1 ]; then
echo "setting persist flag and unconfigure flag is not allowed"
exit 1
fi
if [ $focused_test -eq 0 ] && [ $debug_set -eq 1 ]; then
echo "VPP debug flag is not supported while running all tests!"
exit 1
fi
if [ $leak_check_set -eq 1 ]; then
if [ $focused_test -eq 0 ]; then
echo "a single test has to be specified when leak_check is set"
exit 1
fi
ginkgo_args="--focus $tc_name"
sudo -E go run github.com/onsi/ginkgo/v2/ginkgo $ginkgo_args -- $args
exit 0
fi
if [ -n "${BUILD_NUMBER}" ]; then
ginkgo_args="$ginkgo_args --no-color"
fi
mkdir -p summary
# shellcheck disable=SC2086
sudo -E go run github.com/onsi/ginkgo/v2/ginkgo --json-report=summary/report.json $ginkgo_args -- $args
if [ $? != 0 ]; then
jq -r '.[0] | .SpecReports[] | select((.State == "failed") or (.State == "timedout") or (.State == "panicked")) | select(.Failure != null) |
"TestName:
\(.LeafNodeText)
Suite:
\(.Failure.FailureNodeLocation.FileName)
Message:\n"
+(if .ReportEntries? then .ReportEntries[] | select(.Name == "VPP Backtrace") |
"\tVPP crashed
Full Back Trace:
\(.Value.Representation | ltrimstr("{{red}}") | rtrimstr("{{/}}"))" else
"\(.Failure.Message)"
+ (if .Failure.Message == "A spec timeout occurred" then "\n" else
"\nFull Stack Trace:
\(.Failure.Location.FullStackTrace)\n" end) end)' summary/report.json > summary/failed-summary.log \
&& echo "Summary generated -> summary/failed-summary.log"
else
if [ -e "summary/failed-summary.log" ]; then
rm summary/failed-summary.log
fi
fi
|