-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathssat-api.sh
457 lines (426 loc) · 11.2 KB
/
ssat-api.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
#!/usr/bin/env bash
##
## @file ssat-api.sh
## @author MyungJoo Ham <[email protected]>
## @date Jun 22 2018
## @brief This is API set for SSAT (Shell Script Automated Tester)
##
if [[ "$nocolor" != "1" ]]
then
Black='\033[0;30m'
DarkGray='\033[1;30m'
Red='\033[0;31m'
LightRed='\033[1;31m'
Green='\033[0;32m'
LightGreen='\033[1;32m'
Orange='\033[0;33m'
Yellow='\033[1;33m'
Blue='\033[0;34m'
LightBlue='\033[1;34m'
Purple='\033[0;35m'
LightPurple='\033[1;35m'
Cyan='\033[0;36m'
LightCyan='\033[1;36m'
LightGray='\033[0;37m'
White='\033[1;37m'
NC='\033[0m'
else
Black=''
DarkGray=''
Red=''
LightRed=''
Green=''
LightGreen=''
Orange=''
Yellow=''
Blue=''
LightBlue=''
Purple=''
LightPurple=''
Cyan=''
LightCyan=''
LightGray=''
White=''
NC=''
fi
ResultLog=""
# Platform dependent variables
KernelName=$(uname -s)
if [[ "${KernelName}" == "Darwin" ]]; then
StatCmd_GetSize="stat -f %z"
SO_EXT="dylib"
else
StatCmd_GetSize="stat --printf=%s"
SO_EXT="so"
fi
## @fn writef()
## @private
## @param $1 the string to be printed.
## @brief Prepare report result
function writef() {
if [[ "${SILENT}" == "0" ]]
then
printf "$1\n"
fi
ResultLog="$ResultLog$1\n"
}
## @fn report()
## @brief Report results of a test group (a "runTest.sh" in a testee directory)
function report() {
if (( ${_fail} == 0 && ${_criticalFail} == 0 ))
then
writef "${Green}==================================================${NC}"
writef "${LightGreen}[PASSED]${NC} Test Group $_group ${Green}Passed${NC}"
else
if (( ${_criticalFail} > 0 ))
then
writef "${Green}==================================================${NC}"
writef "${Red}[FAILED]${NC} Test Group $_group has ${Red}failed cases ($_fail)${NC}"
else
writef "${Green}==================================================${NC}"
writef "${LightGreen}[PASSED]${NC} Test Group $_group has ${Red}failed cases ($_fail), but they are ignorable cases and not critical.${NC}"
fi
fi
if [[ "$INDEPENDENT" -eq "1" ]]
then
# do nothing
echo ""
else
_ignore=$((_fail-_criticalFail))
_fail=${_criticalFail}
if [[ "${COUNTNEGATIVE}" -eq "1" ]]
then
writef "${_cases},${_pass},${_fail},${_ignore},${_neg}"
else
writef "${_cases},${_pass},${_fail},${_ignore}"
fi
echo "${ResultLog}" > ${_filename}
printf "\n${_filename}\n"
fi
if (( ${_criticalFail} > 0 ))
then
exit 1
else
exit 0
fi
}
## @fn testInit()
## @brief Initialize runTest.sh shell test case
function testInit() {
_pass=0
_fail=0
_criticalFail=0
_cases=0
_neg=0
_filename=$(mktemp)
_group=`basename "$1"`
if [[ "${#_group}" -eq "0" ]]
then
_group="(Unspecified)"
fi
writef "${Green}==================================================${NC}"
writef " Test Group ${Green}$_group${NC} Starts."
}
## @fn testResult()
## @brief Write Test Log
## @param $1 1 = success / 0 = fail ($5 is not 1)
## @param $2 test case ID (short string)
## @param $3 test case description
## @param $4 set 1 if this is not critical (don't care if it's pass or fail)_
## @param $5 set 1 if $1==0 is success and $1!=0 is fail.
function testResult() {
if [[ ${PROGRESSLOGLEVEL} -gt 1 ]]
then
echo "Case ${2}(${3}) report ${1}" >&2
fi
_cases=$((_cases+1))
_good=0
if [[ "${5}" -eq "1" ]]; then
if [[ "${1}" -eq "0" ]]; then
_good=1
fi
else
if [[ "${1}" -eq "1" ]]; then
_good=1
fi
fi
if [[ "${COUNTNEGATIVE}" -eq "1" ]]
then
if [[ "${2}\n" =~ "${COUNTNEGATIVEPOSTFIX}\n" ]]
then
_neg=$((_neg+1))
fi
fi
if [[ "${_good}" -eq "1" ]]
then
writef "${LightGreen}[PASSED]${NC} ${Green}$2${NC}:$3${NC}"
_pass=$((_pass+1))
else
_fail=$((_fail+1))
if [[ "${4}" == "1" ]]
then
writef "${Purple}[IGNORED] $2${NC}:${Purple}$3${NC}"
else
writef "${Red}[FAILED][Critical] $2${NC}:${Purple}$3${NC}"
_criticalFail=$((_criticalFail+1))
fi
fi
}
## @fn callTestSuccess()
## @brief Call Test Case (a shell script), expected exit = 0
## @param $1 Full path to the executable (e.g., ~/script/a1.sh)
## @param $2 Full string of the arguments to $1 (e.g., "-q -n --dryrun")
## @param $3 test case ID
## @param $4 test case description
## @param $5 set 1 if this is not critical (don't care if it's pass or fail)_
function callTestSuccess() {
callutput=$(. $1 $2)
retcode=$?
if (( ${retcode} == 0 ))
then
testResult 1 "$3" "$4" $5
else
testResult 0 "$3" "$4 ret($retcode)" $5
fi
}
## @fn callTestFail()
## @brief Call Test Case (a shell script), expected exit != 0
## @param $1 Full path to the executable (e.g., ~/script/a1.sh)
## @param $2 Full string of the arguments to $1 (e.g., "-q -n --dryrun")
## @param $3 test case ID
## @param $4 test case description
## @param $5 set 1 if this is not critical (don't care if it's pass or fail)_
function callTestFail() {
callutput=$(. $1 $2)
retcode=$?
if (( ${retcode} != 0 ))
then
testResult 1 "$3" "$4 ret($retcode)" $5
else
testResult 0 "$3" "$4" $5
fi
}
## @fn callTestExitEq()
## @brief Call Test Case (a shell script), expected exit == $5
## @param $1 Full path to the executable (e.g., ~/script/a1.sh)
## @param $2 Full string of the arguments to $1 (e.g., "-q -n --dryrun")
## @param $3 test case ID
## @param $4 test case description
## @param $5 Expected exit code.
## @param $6 set 1 if this is not critical (don't care if it's pass or fail)_
function callTestExitEq() {
callutput=$(. $1 $2)
retcode=$?
if (( ${retcode} == $5 ))
then
testResult 1 "$3" "$4" $6
else
testResult 0 "$3" "$4 ret($retcode)" $6
fi
}
## @fn callCompareTest()
## @brief Compare two result files expected to be equal
## @param $1 Path to result 1 (golden)
## @param $2 Path to result 2 (test run)
## @param $3 test case ID
## @param $4 test case description
## @param $5 0 if the size is expected to be equal as well. 1 if golden (result 1) might be smaller (will ignore rest of result 2). 2 if the opposite of 1. If $5 > 2, it denotes the max size of compared bytes. (compare the first $5 bytes only)
## @param $6 set 1 if this is not critical (don't care if it's pass or fail)_
function callCompareTest() {
# Try cmp.
output=0
if [[ ! -f "$1" || ! -f "$2" ]]; then
testResult $output "$3" "$4" $6
return
fi
command -v cmp
# If cmp is symlink, then it could be from busybox and it does not support "-n" option
if [[ $? == 0 && ! -L $(which cmp) ]]
then
# use cmp
if (( $5 == 0 )); then
# Size should be same as well.
cmp $1 $2
output=$?
elif (( $5 == 1 )); then
# Compare up to the size of golden
cmp -n `${StatCmd_GetSize} $1` $1 $2
output=$?
elif (( $5 == 2 )); then
# Compare up to the size of test-run
cmp -n `${StatCmd_GetSize} $2` $1 $2
output=$?
else
# Compare up to $5 bytes.
cmp -n `${StatCmd_GetSize} $5` $1 $2
output=$?
fi
if (( ${output} == 0 )); then
output=1
else
output=0
fi
testResult $output "$3" "$4" $6
else
# use internal logic (slower!)
bufsize=`${StatCmd_GetSize} $1`
if (( $5 == 2 )); then
bufsize=`${StatCmd_GetSize} $2`
else
bufsize=$5
fi
diff <(dd bs=1 count=$bufsize if=$1 &>/dev/null) <(dd bs=1 count=$bufsize if=$2 &>/dev/null)
output=$?
if (( ${output} == 0 )); then
output=1
else
output=0
fi
testResult $output "$3" "$4" $6
fi
}
## @fn gstTest()
## @brief Execute gst-launch with given arguments
## @todo Separate this function to "gstreamer extension plugin"
## @param $1 gst-launch-1.0 Arguments
## @param $2 test case ID
## @param $3 set 1 if this is not critical (don't care if it's pass or fail)
## @param $4 set 1 if this passes if gstLaunch fails.
## @param $5 set 1 to enable PERFORMANCE test.
## @param $6 set a positive value (seconds) to enable timeout mode.
function gstTest() {
if [[ "$VALGRIND" -eq "1" ]]; then
calloutputprefix="valgrind --track-origins=yes ${VALGRIND_SUPPRESSION}"
fi
TIMEOUT_AVAIL=1
if [[ "${6}" -gt "0" ]]; then
if ! command -v timeout &> /dev/null
then
if command -v perl &> /dev/null
then
timeout() { perl -e 'alarm shift; exec @ARGV' "$@"; }
else
TIMEOUT_AVAIL=0
fi
fi
fi
if [[ "${6}" -gt "0" && $TIMEOUT_AVAIL -eq 1 ]]; then
if [[ "${SILENT}" -eq "1" ]]; then
calloutput=$(eval timeout ${6} $calloutputprefix gst-launch-1.0 -f -q $1 &> /dev/null)
else
calloutput=$(eval timeout ${6} $calloutputprefix gst-launch-1.0 -f -q $1)
fi
else
if [[ "${SILENT}" -eq "1" ]]; then
calloutput=$(eval $calloutputprefix gst-launch-1.0 -f -q $1 &> /dev/null)
else
calloutput=$(eval $calloutputprefix gst-launch-1.0 -f -q $1)
fi
fi
retcode=$?
desired=0
if [[ "${4}" -eq "1" ]]; then
if [[ "${retcode}" -ne "0" ]]; then
desired=1
fi
else
if [[ "${retcode}" -eq "0" ]]; then
desired=1
fi
fi
if [[ "$desired" -eq "1" ]]; then
testResult 1 "$2" "gst-launch of case $2" $3
else
testResult 0 "$2" "gst-launch of case $2" $3
fi
if [[ "$5" -eq "1" ]]; then
if (( ${#GST_DEBUG_DUMP_DOT_DIR} -le 1 )); then
GST_DEBUG_DUMP_DOT_DIR="./performance"
fi
dot -Tpng $GST_DEBUG_DUMP_DOT_DIR/*.PLAYING_PAUSED.dot > $GST_DEBUG_DUMP_DOT_DIR/debug/$base/$2.png
gst-report-1.0 --dot $GST_DEBUG_DUMP_DOT_DIR/*.gsttrace | dot -Tsvg > $GST_DEBUG_DUMP_DOT_DIR/profile/$base/$2.svg
rm -f $GST_DEBUG_DUMP_DOT_DIR/*.dot
rm -f $GST_DEBUG_DUMP_DOT_DIR/*.gsttrace
fi
}
## @fn gstTestBackground()
## @brief Execute gst-launch in background with given arguments.
## @param $1 gst-launch-1.0 Arguments, with pipeline description at the end. The pipeline should have async=false for sink elements (skip preroll!).
## @param $2 test case ID
## @param $3 set 1 if this is not critical (don't care if it's pass or fail)
## @param $4 set 1 if this passes if launching the pipeline fails. (pass if timeout expires)
## @param $5 set timeout for launching the pipeline in seconds (not the pipeline EOS). default = 10.
## @return $pid The PID of the background gstreamer pipeline.
function gstTestBackground() {
local marker=$(mktemp)
local timeout=10
local launchSuccess
local launchFail
local pipeline
if [ "$4" == "1" ]; then
launchSuccess=0
launchFail=1
else
launchSuccess=1
launchFail=0
fi
if [ "$5" == "" ]; then
# no changes in timeout. do nothing
sleep 0
else
if [ $5 -gt 0 ]; then
timeout=$5
else
# ignore if it's < 1. do nothing
sleep 0
fi
fi
pipeline="$1 videotestsrc num-buffers=1 ! video/x-raw,width=4,height=4,format=RGB ! filesink location=${marker}"
gst-launch-1.0 $pipeline &
pid=$!
for i in $(seq 1 ${timeout})
do
if [ -f "$marker" ]; then
markersize=$(stat -c%s ${marker})
if [ $markersize -ge 48 ]; then
testResult ${launchSuccess} $2 "gst-launch in background of case $2" $3
rm ${marker}
return $pid
fi
fi
sleep 1
done
rm ${marker}
testResult ${launchFail} $2 "gst-launch in background of case $2" $3
return ${pid}
}
## @fn convertBMP2PNG()
## @brief Convert all *.bmp to *.png in the current directory
## @todo macronice "bmp2png" searching.
## @todo Separate this function to "gstreamer extension plugin"
function convertBMP2PNG() {
tool="bmp2png"
if [ -x bmp2png ]; then
tool="bmp2png"
else
if [ -x ../bmp2png ]; then
tool="../bmp2png"
else
if [ -x ../../bmp2png ]; then
tool="../../bmp2png"
else
tool="../../../bmp2png"
# Try this and die if fails
fi
fi
fi
for X in `ls *.bmp`
do
if [[ $X = *"GRAY8"* ]]; then
$tool $X --GRAY8
else
$tool $X
fi
done
}
SSATAPILOADED=1