blob: 4a159f9dadaca78a4ea3612cf90ad17f7c4a65af (
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
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
|
#!/hint/bash
# Copyright © Tavian Barnes <tavianator@tavianator.com>
# SPDX-License-Identifier: 0BSD
## Running test cases
# Beginning/end of line escape sequences
BOL=$'\n'
EOL=$'\n'
# Update $EOL for the terminal size
update_eol() {
# Bash gets $COLUMNS from stderr, so if it's redirected use tput instead
local cols="${COLUMNS-}"
if [ -z "$cols" ]; then
cols=$(tput cols 2>/dev/tty)
fi
# Put the cursor at the last column, then write a space so the next
# character will wrap
EOL=$'\e['"${cols}G "
}
# ERR trap for tests
debug_err() {
local ret=$? line func file
callers | while read -r line func file; do
if [ "$func" = source ]; then
local cmd="$(awk "NR == $line" "$file" 2>/dev/null)" || :
debug "$file" $line "${RED}error $ret${RST}" "$cmd" >&4
break
fi
done
}
# Run a single test
run_test() (
set -eE
trap debug_err ERR
cd "$TMP"
source "$@"
)
# Run a test in the background
bg_test() {
if ((VERBOSE_ERRORS)); then
run_test "$1"
else
run_test "$1" 2>"$TMP/$TEST.err"
fi
ret=$?
case $ret in
0)
if ((VERBOSE_TESTS)); then
color printf "${BOL}${GRN}[PASS]${RST} ${BLD}%s${RST}\n" "$TEST"
fi
;;
$EX_SKIP)
if ((VERBOSE_SKIPPED || VERBOSE_TESTS)); then
color printf "${BOL}${CYN}[SKIP]${RST} ${BLD}%s${RST}\n" "$TEST"
fi
;;
*)
if ((!VERBOSE_ERRORS)); then
cat "$TMP/$TEST.err" >&2
fi
color printf "${BOL}${RED}[FAIL]${RST} ${BLD}%s${RST}\n" "$TEST"
;;
esac
return $ret
}
# Wait for any background job to complete
if ((BASH_VERSINFO[0] > 4 || (BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] >= 3))); then
wait_any() {
wait -n
}
else
wait_any() {
read -ra jobs < <(jobs -p)
wait ${jobs[0]}
}
fi
# Wait for a background test to finish
wait_test() {
wait_any
ret=$?
((BG--))
case $ret in
0)
((++passed))
return 0
;;
$EX_SKIP)
((++skipped))
return 0
;;
*)
((++failed))
return $ret
;;
esac
}
# Run all the tests
run_tests() {
if ((VERBOSE_TESTS)); then
BOL=''
elif ((COLOR_STDOUT)); then
# Carriage return + clear line
BOL=$'\r\e[K'
# Workaround for bash 4: checkwinsize is off by default. We can turn it
# on, but we also have to explicitly trigger a foreground job to finish
# so that it will update the window size before we use $COLUMNS
shopt -s checkwinsize
(:)
update_eol
trap update_eol WINCH
fi
passed=0
failed=0
skipped=0
ran=0
total=${#TEST_CASES[@]}
if ((COLOR_STDOUT || VERBOSE_TESTS)); then
TEST_FMT="${BOL}${YLW}[%3d%%]${RST} ${BLD}%s${RST}${EOL}"
else
TEST_FMT="."
fi
BG=0
# Turn off set -e (but turn it back on in run_test)
set +e
for TEST in "${TEST_CASES[@]}"; do
if ((BG >= JOBS)); then
wait_test
if (($? && STOP)); then
break
fi
fi
percent=$((100 * ran / total))
color printf "$TEST_FMT" $percent "$TEST"
mkdir -p "$TMP/$TEST"
OUT="$TMP/$TEST.out"
bg_test "$TESTS/$TEST.sh" &
((++BG, ++ran))
done
while ((BG > 0)); do
wait_test
done
printf "${BOL}"
if ((passed > 0)); then
color printf "${GRN}[PASS]${RST} ${BLD}%3d${RST} / ${BLD}%d${RST}\n" $passed $total
fi
if ((skipped > 0)); then
color printf "${CYN}[SKIP]${RST} ${BLD}%3d${RST} / ${BLD}%d${RST}\n" $skipped $total
fi
if ((failed > 0)); then
color printf "${RED}[FAIL]${RST} ${BLD}%3d${RST} / ${BLD}%d${RST}\n" $failed $total
exit 1
fi
}
## Utilities for the tests themselves
# Default return value for failed tests
EX_FAIL=1
# Fail the current test
fail() {
exit $EX_FAIL
}
# Return value when a test is skipped
EX_SKIP=77
# Skip the current test
skip() {
if ((VERBOSE_SKIPPED)); then
caller | {
read -r line file
printf "${BOL}"
debug "$file" $line "" "$(awk "NR == $line" "$file")" >&3
}
fi
exit $EX_SKIP
}
# Run a command and check its exit status
check_exit() {
local expected="$1"
local actual=0
shift
"$@" || actual=$?
((actual == expected))
}
# Run a command with sudo
bfs_sudo() {
if ((${#SUDO[@]})); then
"${SUDO[@]}" "$@"
else
return 1
fi
}
# Get the inode number of a file
inum() {
ls -id "$@" | awk '{ print $1 }'
}
# Set an ACL on a file
set_acl() {
case "$UNAME" in
Darwin)
chmod +a "$(id -un) allow read,write" "$1"
;;
FreeBSD)
if (($(getconf ACL_NFS4 "$1") > 0)); then
setfacl -m "u:$(id -un):rw::allow" "$1"
else
setfacl -m "u:$(id -un):rw" "$1"
fi
;;
*)
setfacl -m "u:$(id -un):rw" "$1"
;;
esac
}
# Print a bfs invocation for --verbose=commands
bfs_verbose() {
if ((VERBOSE_COMMANDS)); then
(
# Close some fds to make room for the pipe,
# even with extremely low ulimit -n
exec >&- 4>&-
exec >&3 3>&-
color bfs_verbose_impl "$@"
)
fi
}
bfs_verbose_impl() {
printf "${GRN}%q${RST}" "${BFS[0]}"
if ((${#BFS[@]} > 1)); then
printf " ${GRN}%q${RST}" "${BFS[@]:1}"
fi
local expr_started=0 color
for arg; do
case "$arg" in
-[A-Z]*|-[dsxf]|-j*)
color="${CYN}"
;;
\(|!|-[ao]|-and|-or|-not|-exclude)
expr_started=1
color="${RED}"
;;
\)|,)
if ((expr_started)); then
color="${RED}"
else
color="${MAG}"
fi
;;
-?*)
expr_started=1
color="${BLU}"
;;
*)
if ((expr_started)); then
color="${BLD}"
else
color="${MAG}"
fi
;;
esac
printf " ${color}%q${RST}" "$arg"
done
printf '\n'
}
# Run the bfs we're testing
invoke_bfs() {
bfs_verbose "$@"
local ret=0
# Close the logging fds
"${BFS[@]}" "$@" 3>&- 4>&- || ret=$?
# Allow bfs to fail, but not crash
if ((ret > 125)); then
exit $ret
else
return $ret
fi
}
if command -v unbuffer &>/dev/null; then
UNBUFFER=unbuffer
elif command -v expect_unbuffer &>/dev/null; then
UNBUFFER=expect_unbuffer
fi
# Run bfs with a pseudo-terminal attached
bfs_pty() {
test -n "${UNBUFFER:-}" || skip
bfs_verbose "$@"
local ret=0
"$UNBUFFER" bash -c 'stty cols 80 rows 24 && "$@"' bash "${BFS[@]}" "$@" || ret=$?
if ((ret > 125)); then
exit $ret
else
return $ret
fi
}
# Create a directory tree with xattrs in scratch
make_xattrs() {
cd "$TEST"
"$XTOUCH" normal xattr xattr_2
ln -s xattr link
ln -s normal xattr_link
case "$UNAME" in
Darwin)
xattr -w bfs_test true xattr \
&& xattr -w bfs_test_2 true xattr_2 \
&& xattr -s -w bfs_test true xattr_link
;;
FreeBSD)
setextattr user bfs_test true xattr \
&& setextattr user bfs_test_2 true xattr_2 \
&& setextattr -h user bfs_test true xattr_link
;;
*)
# Linux tmpfs doesn't support the user.* namespace, so we use the security.*
# namespace, which is writable by root and readable by others
bfs_sudo setfattr -n security.bfs_test xattr \
&& bfs_sudo setfattr -n security.bfs_test_2 xattr_2 \
&& bfs_sudo setfattr -h -n security.bfs_test xattr_link
;;
esac
}
## Snapshot testing
# Return value when a difference is detected
EX_DIFF=20
# Detect colored diff support
if diff --color /dev/null /dev/null 2>/dev/null; then
DIFF="diff --color"
else
DIFF="diff"
fi
# Sort the output file
sort_output() {
sort -o "$OUT" "$OUT"
}
# Diff against the expected output
diff_output() {
local GOLD="$TESTS/$TEST.out"
if ((UPDATE)); then
cp "$OUT" "$GOLD"
else
$DIFF -u "$GOLD" "$OUT" >&4
fi
}
# Run bfs, and diff it against the expected output
bfs_diff() {
local ret=0
invoke_bfs "$@" >"$OUT" || ret=$?
sort_output
diff_output || exit $EX_DIFF
return $ret
}
|