forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.sh
executable file
·374 lines (339 loc) · 10.6 KB
/
runtests.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
#!/bin/bash
show_help() {
printf "Usage: runtests.sh [-h] [-v] FLOW_BINARY [TEST_FILTER]\n\n"
printf "Runs Flow's tests.\n\n"
echo " FLOW_BINARY"
echo " path to Flow binary"
echo " TEST_FILTER"
echo " optional regular expression to choose test directories to run"
echo " -h"
echo " display this help and exit"
echo " -v"
echo " verbose output (shows skipped tests)"
}
export IN_FLOW_TEST=1
OPTIND=1
verbose=0
while getopts "h?v" opt; do
case "$opt" in
h|\?)
show_help
exit 0
;;
v)
verbose=1
;;
esac
done
shift $((OPTIND-1))
[ "$1" = "--" ] && shift
if [[ "$OSTYPE" == "darwin"* ]]; then
_canonicalize_file_path() {
local dir file
dir=$(dirname -- "$1")
file=$(basename -- "$1")
(cd "$dir" 2>/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file")
}
FLOW=$(_canonicalize_file_path "$1")
else
FLOW=$(readlink -f "$1")
fi
if [ -t 1 ]; then
COLOR_RESET="\x1b[0m"
COLOR_DEFAULT="\x1b[39;49;0m"
COLOR_DEFAULT_BOLD="\x1b[39;49;1m"
COLOR_RED_BOLD="\x1b[31;1m"
COLOR_GREEN_BOLD="\x1b[32;1m"
COLOR_YELLOW_BOLD="\x1b[33;1m"
COLOR_WHITE_ON_RED_BOLD="\x1b[37;41;1m"
else
COLOR_RESET=""
COLOR_DEFAULT=""
COLOR_DEFAULT_BOLD=""
COLOR_RED_BOLD=""
COLOR_GREEN_BOLD=""
COLOR_YELLOW_BOLD=""
COLOR_WHITE_ON_RED_BOLD=""
fi
print_failure() {
dir=$1
name=${dir%*/}
name=${name##*/}
printf "%b[✗] FAIL:%b %s%b\n" \
"$COLOR_RED_BOLD" "$COLOR_DEFAULT" "$name" "$COLOR_RESET"
diff_file="${dir}${name}.diff"
err_file="${dir}${name}.err"
cat "$err_file"
if [ -t 1 ] ; then
esc=$(echo -e "\x1b")
sed \
"s/^-/${esc}[31m-/;s/^+/${esc}[32m+/;s/^@/${esc}[35m@/;s/$/${esc}[0m/" \
< "$diff_file"
else
cat "$diff_file"
fi
}
print_skip() {
name=$1
name=${name%*/}
name=${name##*/}
verbose=$2
if [[ "$verbose" -eq 1 ]]; then
printf "%b[-] SKIP:%b %s%b\n" \
"$COLOR_YELLOW_BOLD" "$COLOR_DEFAULT" "$name" "$COLOR_RESET"
else
printf " %*s\r" ${#name} " "
fi
}
print_success() {
name=$1
name=${name%*/}
name=${name##*/}
printf "%b[✓] PASS:%b %s%b\n" \
"$COLOR_GREEN_BOLD" "$COLOR_DEFAULT" "$name" "$COLOR_RESET"
}
print_run() {
if [ -t 1 ]; then
name=$1
name=${name%*/}
name=${name##*/}
printf "%b[ ] RUN:%b %s%b\r" \
"$COLOR_DEFAULT_BOLD" "$COLOR_DEFAULT" "$name" "$COLOR_RESET"
fi
}
kill_server() {
trap - SIGINT SIGTERM
"$FLOW" stop . 1> /dev/null 2>&1
kill "$1" $$
}
cd "$(dirname "${BASH_SOURCE[0]}")" || exit 1
passed=0
failed=0
skipped=0
filter="$2"
RUNTEST_SUCCESS=0
RUNTEST_FAILURE=1
RUNTEST_SKIP=2
RUNTEST_MISSING_FILES=3
# This function runs in the background so it shouldn't output anything to
# stdout or stderr. It should only communicate through its return value
runtest() {
return_status=$RUNTEST_SKIP
dir=$1
dir=${dir%*/}
name=${dir##*/}
exp_file="${name}.exp"
# On Windows we skip some tests as symlinks not available
if [ "$OSTYPE" = "msys" ] &&
([ $name = "symlink" ] ||
[ $name = "node_tests" ])
then
return $RUNTEST_SKIP
elif [[ -z $filter || $name =~ $filter ]]
then
if ([ ! -e "$dir/$exp_file" ] || [[ ! -e "$dir/.flowconfig" && ! -e "$dir/.testconfig" ]])
then
if [ "$name" = "auxiliary" ] ||
[ "$name" = "callable" ] ||
[ "$name" = "suggest" ]
then
return $RUNTEST_SKIP;
else
return $RUNTEST_MISSING_FILES;
fi
fi
# Each test should write its output to a unique directory so that
# parallel runs of the same test don't stomp on each other (Facebook
# internally runs a stress test to look for flaky tests). If a test
# fails, we'll then copy the files back to the source directory.
OUT_DIR=$(mktemp -d /tmp/flow_test.XXXXXX)
# deletes the temp directory
function cleanup {
rm -rf "$OUT_DIR"
}
trap cleanup EXIT
# Some tests mutate the source directory, so make a copy first and run
# from there. the . in "$dir/." copies the entire directory, including
# hidden files like .flowconfig.
cp -R "$dir/." "$OUT_DIR"
out_file="$name.out"
err_file="$name.err"
diff_file="$name.diff"
abs_out_file="$OUT_DIR/$name.out"
abs_err_file="$OUT_DIR/$name.err"
abs_diff_file="$OUT_DIR/$name.diff"
# run the tests from inside $OUT_DIR
pushd "$OUT_DIR" >/dev/null
# get config flags.
# for now this is kind of ad-hoc:
#
# 1. The default flow command is check with the --all flag. This flag
# can be overriden here with the line "all: false". Anything besides
# "false" is ignored, and the setting itself is ignored if a command
# besides check is run.
#
# 2. The default flow command can be overriden here by supplying the
# entire command on a line that begins with "cmd:". (Note: for writing
# incremental tests, use the option below). A line beginning with
# "stdin:" can additionally supply arguments to pass to the command via
# standard input. We start the server before running the command and
# stop the server after we get a result.
#
# 3. Integration tests that interleave flow commands with file system
# commands (for testing incremental checks, e.g.) are written by
# supplying the name of a shell script on a line that begins with
# "shell:". The shell script is passed the location of the flow binary
# as argument ($1). We start the server before running the script and
# stop the server after the script exits.
#
all=" --all"
shell=""
cmd="check"
stdin=""
stderr_dest="$abs_err_file"
cwd=""
if [ -e ".testconfig" ]
then
# all
if [ "$(awk '$1=="all:"{print $2}' .testconfig)" == "false" ]
then
all=""
fi
# cwd (current directory)
cwd="$(awk '$1=="cwd:"{print $2}' .testconfig)"
# ignore_stderr
if [ "$(awk '$1=="ignore_stderr:"{print $2}' .testconfig)" == "false" ]
then
stderr_dest="$abs_out_file"
fi
# stdin
stdin="$(awk '$1=="stdin:"{print $2}' .testconfig)"
# shell
config_shell="$(awk '$1=="shell:"{print $2}' .testconfig)"
if [ "$config_shell" != "" ]
then
cmd=""
shell="$config_shell"
fi
# cmd
config_cmd="$(awk '$1=="cmd:"{$1="";print}' .testconfig)"
if [ "$config_cmd" != "" ]
then
cmd="$config_cmd"
fi
fi
if [ "$cwd" != "" ]; then
pushd "$cwd" >/dev/null
fi
# run test
if [ "$cmd" == "check" ]
then
# default command is check with configurable --all
"$FLOW" check . $all --strip-root --show-all-errors 1> "$abs_out_file" 2> "$stderr_dest"
else
# otherwise, run specified flow command, then kill the server
trap "kill_server -INT" SIGINT
trap "kill_server -TERM" SIGTERM
# start server and wait
"$FLOW" start . $all --wait > /dev/null 2>&1
if [ "$shell" != "" ]
then
# run test script
sh "$shell" "$FLOW" 1> "$abs_out_file" 2> "$stderr_dest"
else
# If there's stdin, then direct that in
# cmd should NOT be double quoted...it may contain many commands
# and we do want word splitting
if [ "$stdin" != "" ]
then
cmd="$FLOW $cmd < $stdin 1> $abs_out_file 2> $stderr_dest"
else
cmd="$FLOW $cmd 1> $abs_out_file 2> $stderr_dest"
fi
eval "$cmd"
fi
# stop server
"$FLOW" stop . 1> /dev/null 2>&1
trap - SIGINT SIGTERM
fi
if [ "$cwd" != "" ]; then
popd >/dev/null
fi
diff -u --strip-trailing-cr "$exp_file" "$out_file" > "$diff_file"
# leave $OUT_DIR
popd >/dev/null
if [ -s "$OUT_DIR/$diff_file" ]
then
mv "$OUT_DIR/$out_file" "$dir"
mv "$OUT_DIR/$err_file" "$dir"
mv "$OUT_DIR/$diff_file" "$dir"
return_status=$RUNTEST_FAILURE
else
rm -rf "$OUT_DIR"
rm -f "$dir/$out_file"
rm -f "$dir/$err_file"
rm -f "$dir/$diff_file"
return_status=$RUNTEST_SUCCESS
fi
else
return_status=$RUNTEST_SKIP
fi
return $return_status
}
num_to_run_in_parallel=${FLOW_RUNTESTS_PARALLELISM-16}
printf "Running up to %d test(s) in parallel\n" $num_to_run_in_parallel
# Index N of pids should correspond to the test at index N of dirs
dirs=(tests/*/)
pids=()
# Starts running a test in the background. If there are no more tests then it
# does nothing
next_test_index=0
start_test() {
if (( next_test_index < ${#dirs[@]} )); then
test_dir="${dirs[next_test_index]}"
runtest "$test_dir" &
pids[$next_test_index]=$!
fi
((next_test_index++))
}
# Kick off a bunch of test runs
for ignore_me in $(seq $num_to_run_in_parallel); do
start_test
done
next_test_to_reap=0
while (( next_test_to_reap < ${#dirs[@]} )); do
# We reap the tests in order, so that we can output them in a pretty way.
testname="${dirs[next_test_to_reap]}"
print_run "$testname"
wait "${pids[$next_test_to_reap]}"
case $? in
$RUNTEST_SUCCESS )
(( passed++ ))
print_success "$testname" ;;
$RUNTEST_FAILURE )
(( failed++ ))
print_failure "$testname" ;;
$RUNTEST_SKIP )
(( skipped++ ))
print_skip "$testname" "$verbose" ;;
$RUNTEST_MISSING_FILES )
(( failed++ ))
print_failure "$testname"
printf "Missing %s.exp file or .flowconfig file\n" "$testname" ;;
esac
((next_test_to_reap++))
# Start up the next test
start_test
done
echo
if [ $failed -eq 0 ]; then
printf "%bPassed: %d, Failed: %d, Skipped: %d%b\n" \
"$COLOR_DEFAULT_BOLD" "$passed" "$failed" "$skipped" "$COLOR_RESET"
else
printf "%bPassed: %d, %bFailed: %d%b, Skipped: %d%b\n" \
"$COLOR_DEFAULT_BOLD" "$passed" \
"$COLOR_WHITE_ON_RED_BOLD" "$failed" \
"$COLOR_DEFAULT_BOLD" "$skipped" \
"$COLOR_RESET"
fi
exit ${failed}