]> git.ipfire.org Git - thirdparty/git.git/blame - t/test-lib.sh
Seventh batch for 2.21
[thirdparty/git.git] / t / test-lib.sh
CommitLineData
c74c7203 1# Test framework for git. See t/README for usage.
e1970ce4
JH
2#
3# Copyright (c) 2005 Junio C Hamano
4#
64b90323
MS
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see http://www.gnu.org/licenses/ .
e1970ce4 17
3c8f12c9
JH
18# Test the binaries we have just built. The tests are kept in
19# t/ subdirectory and are run in 'trash directory' subdirectory.
20if test -z "$TEST_DIRECTORY"
21then
22 # We allow tests to override this, in case they want to run tests
23 # outside of t/, e.g. for running tests on the test library
24 # itself.
25 TEST_DIRECTORY=$(pwd)
85176d72
FC
26else
27 # ensure that TEST_DIRECTORY is an absolute path so that it
28 # is valid even if the current working directory is changed
29 TEST_DIRECTORY=$(cd "$TEST_DIRECTORY" && pwd) || exit 1
3c8f12c9
JH
30fi
31if test -z "$TEST_OUTPUT_DIRECTORY"
32then
33 # Similarly, override this to store the test-results subdir
34 # elsewhere
35 TEST_OUTPUT_DIRECTORY=$TEST_DIRECTORY
36fi
37GIT_BUILD_DIR="$TEST_DIRECTORY"/..
38
d0cc5796
JK
39# If we were built with ASAN, it may complain about leaks
40# of program-lifetime variables. Disable it by default to lower
41# the noise level. This needs to happen at the start of the script,
42# before we even do our "did we build git yet" check (since we don't
43# want that one to complain to stderr).
bf1ce904 44: ${ASAN_OPTIONS=detect_leaks=0:abort_on_error=1}
d0cc5796
JK
45export ASAN_OPTIONS
46
85b81b35
JK
47# If LSAN is in effect we _do_ want leak checking, but we still
48# want to abort so that we notice the problems.
49: ${LSAN_OPTIONS=abort_on_error=1}
50export LSAN_OPTIONS
51
8abfdf44
JS
52if test ! -f "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS
53then
54 echo >&2 'error: GIT-BUILD-OPTIONS missing (has Git been built?).'
55 exit 1
56fi
57. "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS
58export PERL_PATH SHELL_PATH
59
2006f0ad
RR
60################################################################
61# It appears that people try to run tests without building...
8abfdf44 62"${GIT_TEST_INSTALLED:-$GIT_BUILD_DIR}/git$X" >/dev/null
2006f0ad
RR
63if test $? != 1
64then
ed306e4e
JS
65 if test -n "$GIT_TEST_INSTALLED"
66 then
67 echo >&2 "error: there is no working Git at '$GIT_TEST_INSTALLED'"
68 else
69 echo >&2 'error: you do not seem to have built git yet.'
70 fi
2006f0ad
RR
71 exit 1
72fi
73
8cf58006
SG
74# Parse options while taking care to leave $@ intact, so we will still
75# have all the original command line options when executing the test
76# script again for '--tee' and '--verbose-log' below.
77store_arg_to=
78prev_opt=
79for opt
80do
81 if test -n "$store_arg_to"
82 then
83 eval $store_arg_to=\$opt
84 store_arg_to=
85 prev_opt=
86 continue
87 fi
88
89 case "$opt" in
90 -d|--d|--de|--deb|--debu|--debug)
91 debug=t ;;
92 -i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate)
93 immediate=t ;;
94 -l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests)
95 GIT_TEST_LONG=t; export GIT_TEST_LONG ;;
96 -r)
97 store_arg_to=run_list
98 ;;
99 --run=*)
100 run_list=${opt#--*=} ;;
101 -h|--h|--he|--hel|--help)
102 help=t ;;
103 -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
104 verbose=t ;;
105 --verbose-only=*)
106 verbose_only=${opt#--*=}
107 ;;
108 -q|--q|--qu|--qui|--quie|--quiet)
109 # Ignore --quiet under a TAP::Harness. Saying how many tests
110 # passed without the ok/not ok details is always an error.
111 test -z "$HARNESS_ACTIVE" && quiet=t ;;
112 --with-dashes)
113 with_dashes=t ;;
dd167a30
JS
114 --no-bin-wrappers)
115 no_bin_wrappers=t ;;
8cf58006
SG
116 --no-color)
117 color= ;;
118 --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind)
119 valgrind=memcheck
120 tee=t
121 ;;
122 --valgrind=*)
123 valgrind=${opt#--*=}
124 tee=t
125 ;;
126 --valgrind-only=*)
127 valgrind_only=${opt#--*=}
128 tee=t
129 ;;
130 --tee)
131 tee=t ;;
132 --root=*)
133 root=${opt#--*=} ;;
134 --chain-lint)
135 GIT_TEST_CHAIN_LINT=1 ;;
136 --no-chain-lint)
137 GIT_TEST_CHAIN_LINT=0 ;;
138 -x)
139 trace=t ;;
140 -V|--verbose-log)
141 verbose_log=t
142 tee=t
143 ;;
22231908
JS
144 --write-junit-xml)
145 write_junit_xml=t
146 ;;
fb7d1e3a
SG
147 --stress)
148 stress=t ;;
149 --stress=*)
150 stress=${opt#--*=}
151 case "$stress" in
152 *[^0-9]*|0*|"")
153 echo "error: --stress=<N> requires the number of jobs to run" >&2
154 exit 1
155 ;;
156 *) # Good.
157 ;;
158 esac
159 ;;
8cf58006
SG
160 *)
161 echo "error: unknown test option '$opt'" >&2; exit 1 ;;
162 esac
163
164 prev_opt=$opt
165done
166if test -n "$store_arg_to"
167then
168 echo "error: $prev_opt requires an argument" >&2
169 exit 1
170fi
171
172if test -n "$valgrind_only"
173then
174 test -z "$valgrind" && valgrind=memcheck
175 test -z "$verbose" && verbose_only="$valgrind_only"
176elif test -n "$valgrind"
177then
178 test -z "$verbose_log" && verbose=t
179fi
180
fb7d1e3a
SG
181if test -n "$stress"
182then
183 verbose=t
184 trace=t
185 immediate=t
186fi
187
188TEST_STRESS_JOB_SFX="${GIT_TEST_STRESS_JOB_NR:+.stress-$GIT_TEST_STRESS_JOB_NR}"
62c379b8
SG
189TEST_NAME="$(basename "$0" .sh)"
190TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results"
fb7d1e3a
SG
191TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME$TEST_STRESS_JOB_SFX"
192TRASH_DIRECTORY="trash directory.$TEST_NAME$TEST_STRESS_JOB_SFX"
61f292db
SG
193test -n "$root" && TRASH_DIRECTORY="$root/$TRASH_DIRECTORY"
194case "$TRASH_DIRECTORY" in
195/*) ;; # absolute path is good
196 *) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY" ;;
197esac
62c379b8 198
fb7d1e3a
SG
199# If --stress was passed, run this test repeatedly in several parallel loops.
200if test "$GIT_TEST_STRESS_STARTED" = "done"
201then
202 : # Don't stress test again.
203elif test -n "$stress"
204then
205 if test "$stress" != t
206 then
207 job_count=$stress
208 elif test -n "$GIT_TEST_STRESS_LOAD"
209 then
210 job_count="$GIT_TEST_STRESS_LOAD"
211 elif job_count=$(getconf _NPROCESSORS_ONLN 2>/dev/null) &&
212 test -n "$job_count"
213 then
214 job_count=$((2 * $job_count))
215 else
216 job_count=8
217 fi
218
219 mkdir -p "$TEST_RESULTS_DIR"
220 stressfail="$TEST_RESULTS_BASE.stress-failed"
221 rm -f "$stressfail"
222
223 stress_exit=0
224 trap '
225 kill $job_pids 2>/dev/null
226 wait
227 stress_exit=1
228 ' TERM INT HUP
229
230 job_pids=
231 job_nr=0
232 while test $job_nr -lt "$job_count"
233 do
234 (
235 GIT_TEST_STRESS_STARTED=done
236 GIT_TEST_STRESS_JOB_NR=$job_nr
237 export GIT_TEST_STRESS_STARTED GIT_TEST_STRESS_JOB_NR
238
239 trap '
240 kill $test_pid 2>/dev/null
241 wait
242 exit 1
243 ' TERM INT
244
245 cnt=0
246 while ! test -e "$stressfail"
247 do
248 $TEST_SHELL_PATH "$0" "$@" >"$TEST_RESULTS_BASE.stress-$job_nr.out" 2>&1 &
249 test_pid=$!
250
251 if wait $test_pid
252 then
253 printf "OK %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt
254 else
255 echo $GIT_TEST_STRESS_JOB_NR >>"$stressfail"
256 printf "FAIL %2d.%d\n" $GIT_TEST_STRESS_JOB_NR $cnt
257 fi
258 cnt=$(($cnt + 1))
259 done
260 ) &
261 job_pids="$job_pids $!"
262 job_nr=$(($job_nr + 1))
263 done
264
265 wait
266
267 if test -f "$stressfail"
268 then
269 echo "Log(s) of failed test run(s):"
270 for failed_job_nr in $(sort -n "$stressfail")
271 do
272 echo "Contents of '$TEST_RESULTS_BASE.stress-$failed_job_nr.out':"
273 cat "$TEST_RESULTS_BASE.stress-$failed_job_nr.out"
274 done
275 rm -rf "$TRASH_DIRECTORY.stress-failed"
276 # Move the last one.
277 mv "$TRASH_DIRECTORY.stress-$failed_job_nr" "$TRASH_DIRECTORY.stress-failed"
278 fi
279
280 exit $stress_exit
281fi
282
4cde519f
RR
283# if --tee was passed, write the output not only to the terminal, but
284# additionally to the file test-results/$BASENAME.out, too.
8cf58006
SG
285if test "$GIT_TEST_TEE_STARTED" = "done"
286then
287 : # do not redirect again
288elif test -n "$tee"
289then
62c379b8 290 mkdir -p "$TEST_RESULTS_DIR"
452320f1
JK
291
292 # Make this filename available to the sub-process in case it is using
293 # --verbose-log.
62c379b8 294 GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out
452320f1
JK
295 export GIT_TEST_TEE_OUTPUT_FILE
296
297 # Truncate before calling "tee -a" to get rid of the results
298 # from any previous runs.
299 >"$GIT_TEST_TEE_OUTPUT_FILE"
300
3f824e91 301 (GIT_TEST_TEE_STARTED=done ${TEST_SHELL_PATH} "$0" "$@" 2>&1;
62c379b8
SG
302 echo $? >"$TEST_RESULTS_BASE.exit") | tee -a "$GIT_TEST_TEE_OUTPUT_FILE"
303 test "$(cat "$TEST_RESULTS_BASE.exit")" = 0
4cde519f 304 exit
8cf58006
SG
305fi
306
307if test -n "$trace" && test -n "$test_untraceable"
308then
309 # '-x' tracing requested, but this test script can't be reliably
310 # traced, unless it is run with a Bash version supporting
311 # BASH_XTRACEFD (introduced in Bash v4.1).
312 #
313 # Perform this version check _after_ the test script was
314 # potentially re-executed with $TEST_SHELL_PATH for '--tee' or
315 # '--verbose-log', so the right shell is checked and the
316 # warning is issued only once.
317 if test -n "$BASH_VERSION" && eval '
318 test ${BASH_VERSINFO[0]} -gt 4 || {
319 test ${BASH_VERSINFO[0]} -eq 4 &&
320 test ${BASH_VERSINFO[1]} -ge 1
321 }
322 '
323 then
324 : Executed by a Bash version supporting BASH_XTRACEFD. Good.
325 else
326 echo >&2 "warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD"
327 trace=
328 fi
329fi
330if test -n "$trace" && test -z "$verbose_log"
331then
332 verbose=t
333fi
4cde519f 334
e1970ce4 335# For repeatability, reset the environment to known value.
d5c1b7c2 336# TERM is sanitized below, after saving color control sequences.
e1970ce4 337LANG=C
899460f3 338LC_ALL=C
d9bdd39e 339PAGER=cat
e1970ce4 340TZ=UTC
d5c1b7c2 341export LANG LC_ALL PAGER TZ
8ff99e74 342EDITOR=:
6cdccfce
ÆAB
343
344# GIT_TEST_GETTEXT_POISON should not influence git commands executed
345# during initialization of test-lib and the test repo. Back it up,
346# unset and then restore after initialization is finished.
347if test -n "$GIT_TEST_GETTEXT_POISON"
348then
349 GIT_TEST_GETTEXT_POISON_ORIG=$GIT_TEST_GETTEXT_POISON
350 unset GIT_TEST_GETTEXT_POISON
351fi
352
661bfd13
SL
353# A call to "unset" with no arguments causes at least Solaris 10
354# /usr/xpg4/bin/sh and /bin/ksh to bail out. So keep the unsets
355# deriving from the command substitution clustered with the other
356# ones.
3c8f12c9 357unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e '
95a1d12e 358 my @env = keys %ENV;
730477f1
JL
359 my $ok = join("|", qw(
360 TRACE
361 DEBUG
730477f1
JL
362 TEST
363 .*_TEST
364 PROVE
365 VALGRIND
ac001282 366 UNZIP
edb54081 367 PERF_
e2a0ccc0 368 CURL_VERBOSE
4527aa10 369 TRACE_CURL
730477f1
JL
370 ));
371 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env);
95a1d12e
JN
372 print join("\n", @vars);
373')
7976e901 374unset XDG_CACHE_HOME
5adf84eb 375unset XDG_CONFIG_HOME
8bade1e1 376unset GITPERLLIB
29e55cd5
JH
377GIT_AUTHOR_EMAIL=author@example.com
378GIT_AUTHOR_NAME='A U Thor'
29e55cd5
JH
379GIT_COMMITTER_EMAIL=committer@example.com
380GIT_COMMITTER_NAME='C O Mitter'
8d0fc48f 381GIT_MERGE_VERBOSITY=5
f8246281
JH
382GIT_MERGE_AUTOEDIT=no
383export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT
29e55cd5
JH
384export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
385export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
d33738d7 386export EDITOR
e1970ce4 387
124647c4
KB
388# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output
389GIT_TRACE_BARE=1
390export GIT_TRACE_BARE
391
4cb54d0a 392check_var_migration () {
4231d1ba
JH
393 # the warnings and hints given from this helper depends
394 # on end-user settings, which will disrupt the self-test
395 # done on the test framework itself.
396 case "$GIT_TEST_FRAMEWORK_SELFTEST" in
397 t) return ;;
398 esac
399
4cb54d0a
BP
400 old_name=$1 new_name=$2
401 eval "old_isset=\${${old_name}:+isset}"
402 eval "new_isset=\${${new_name}:+isset}"
4231d1ba 403
4cb54d0a
BP
404 case "$old_isset,$new_isset" in
405 isset,)
406 echo >&2 "warning: $old_name is now $new_name"
407 echo >&2 "hint: set $new_name too during the transition period"
408 eval "$new_name=\$$old_name"
409 ;;
410 isset,isset)
411 # do this later
412 # echo >&2 "warning: $old_name is now $new_name"
413 # echo >&2 "hint: remove $old_name"
414 ;;
415 esac
416}
417
418check_var_migration GIT_FSMONITOR_TEST GIT_TEST_FSMONITOR
1f357b04 419check_var_migration TEST_GIT_INDEX_VERSION GIT_TEST_INDEX_VERSION
5765d97b 420check_var_migration GIT_FORCE_PRELOAD_TEST GIT_TEST_PRELOAD_INDEX
1f357b04
BP
421
422# Use specific version of the index file format
423if test -n "${GIT_TEST_INDEX_VERSION:+isset}"
5d9fc888 424then
1f357b04 425 GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION"
5d9fc888
TG
426 export GIT_INDEX_VERSION
427fi
428
a731fa91
EP
429# Add libc MALLOC and MALLOC_PERTURB test
430# only if we are not executing the test with valgrind
8cf58006 431if test -n "$valgrind" ||
ee1431bf 432 test -n "$TEST_NO_MALLOC_CHECK"
1b3185fc
JH
433then
434 setup_malloc_check () {
435 : nothing
436 }
437 teardown_malloc_check () {
438 : nothing
439 }
440else
441 setup_malloc_check () {
442 MALLOC_CHECK_=3 MALLOC_PERTURB_=165
443 export MALLOC_CHECK_ MALLOC_PERTURB_
444 }
445 teardown_malloc_check () {
446 unset MALLOC_CHECK_ MALLOC_PERTURB_
447 }
448fi
a731fa91 449
886a3907
JH
450# Protect ourselves from common misconfiguration to export
451# CDPATH into the environment
452unset CDPATH
453
5565f47c 454unset GREP_OPTIONS
ac001282 455unset UNZIP
5565f47c 456
3d5c0cc9 457case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in
1c0cc756 4581|2|true)
025232e8 459 GIT_TRACE=4
1c0cc756 460 ;;
6ce4e61f
CC
461esac
462
cd3c095c
JH
463# Convenience
464#
5555a2aa 465# A regexp to match 5, 35 and 40 hexdigits
cd3c095c 466_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
5555a2aa
CB
467_x35="$_x05$_x05$_x05$_x05$_x05$_x05$_x05"
468_x40="$_x35$_x05"
cd3c095c 469
3749fde5
JH
470# Zero SHA-1
471_z40=0000000000000000000000000000000000000000
472
bd981d5f 473OID_REGEX="$_x40"
198857bf 474ZERO_OID=$_z40
f9e7d9f8 475EMPTY_TREE=4b825dc642cb6eb9a060e54bf8d69288fbee4904
378932d3 476EMPTY_BLOB=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
f9e7d9f8 477
3f4ab627
JH
478# Line feed
479LF='
480'
481
a42643aa
JK
482# UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores
483# when case-folding filenames
484u200c=$(printf '\342\200\214')
485
bd981d5f 486export _x05 _x35 _x40 _z40 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX
342e9ef2 487
e1970ce4
JH
488# Each test should start with something like this, after copyright notices:
489#
490# test_description='Description of this test...
491# This test checks if command xyzzy does the right thing...
492# '
493# . ./test-lib.sh
d5c1b7c2 494test "x$TERM" != "xdumb" && (
ca92a660
RH
495 test -t 1 &&
496 tput bold >/dev/null 2>&1 &&
497 tput setaf 1 >/dev/null 2>&1 &&
498 tput sgr0 >/dev/null 2>&1
499 ) &&
500 color=t
e1970ce4 501
ca92a660
RH
502if test -n "$color"
503then
d5c1b7c2
RH
504 # Save the color control sequences now rather than run tput
505 # each time say_color() is called. This is done for two
506 # reasons:
507 # * TERM will be changed to dumb
508 # * HOME will be changed to a temporary directory and tput
509 # might need to read ~/.terminfo from the original HOME
510 # directory to get the control sequences
511 # Note: This approach assumes the control sequences don't end
512 # in a newline for any terminal of interest (command
513 # substitutions strip trailing newlines). Given that most
514 # (all?) terminals in common use are related to ECMA-48, this
515 # shouldn't be a problem.
516 say_color_error=$(tput bold; tput setaf 1) # bold red
517 say_color_skip=$(tput setaf 4) # blue
518 say_color_warn=$(tput setaf 3) # brown/yellow
519 say_color_pass=$(tput setaf 2) # green
520 say_color_info=$(tput setaf 6) # cyan
521 say_color_reset=$(tput sgr0)
522 say_color_="" # no formatting for normal text
ca92a660 523 say_color () {
d5c1b7c2
RH
524 test -z "$1" && test -n "$quiet" && return
525 eval "say_color_color=\$say_color_$1"
ca92a660 526 shift
d5c1b7c2 527 printf "%s\\n" "$say_color_color$*$say_color_reset"
ca92a660
RH
528 }
529else
530 say_color() {
531 test -z "$1" && test -n "$quiet" && return
532 shift
533 printf "%s\n" "$*"
534 }
535fi
536
d5c1b7c2
RH
537TERM=dumb
538export TERM
539
55db1df0
PH
540error () {
541 say_color error "error: $*"
6e7b5aaf 542 GIT_EXIT_OK=t
55db1df0
PH
543 exit 1
544}
545
165293af
SG
546BUG () {
547 error >&7 "bug in the test script: $*"
548}
549
55db1df0
PH
550say () {
551 say_color info "$*"
552}
553
614fe015
JK
554if test -n "$HARNESS_ACTIVE"
555then
556 if test "$verbose" = t || test -n "$verbose_only"
557 then
558 printf 'Bail out! %s\n' \
559 'verbose mode forbidden under TAP harness; try --verbose-log'
560 exit 1
561 fi
562fi
563
570f3226
MB
564test "${test_description}" != "" ||
565error "Test script did not set test_description."
566
567if test "$help" = "t"
568then
cb1aefda 569 printf '%s\n' "$test_description"
570f3226
MB
570 exit 0
571fi
572
4d9d62fa 573exec 5>&1
781f76b1 574exec 6<&0
4ecae3c8 575exec 7>&2
452320f1
JK
576if test "$verbose_log" = "t"
577then
578 exec 3>>"$GIT_TEST_TEE_OUTPUT_FILE" 4>&3
579elif test "$verbose" = "t"
e1970ce4
JH
580then
581 exec 4>&2 3>&1
582else
583 exec 4>/dev/null 3>/dev/null
584fi
585
d88785e4
JK
586# Send any "-x" output directly to stderr to avoid polluting tests
587# which capture stderr. We can do this unconditionally since it
588# has no effect if tracing isn't turned on.
589#
590# Note that this sets up the trace fd as soon as we assign the variable, so it
591# must come after the creation of descriptor 4 above. Likewise, we must never
592# unset this, as it has the side effect of closing descriptor 4, which we
593# use to show verbose tests to the user.
594#
595# Note also that we don't need or want to export it. The tracing is local to
596# this shell, and we would not want to influence any shells we exec.
597BASH_XTRACEFD=4
598
e1970ce4
JH
599test_failure=0
600test_count=0
41ac414e
JH
601test_fixed=0
602test_broken=0
2d84e9fb 603test_success=0
e1970ce4 604
d998bd4a
ÆAB
605test_external_has_tap=0
606
faa4bc35 607die () {
6e7b5aaf
CB
608 code=$?
609 if test -n "$GIT_EXIT_OK"
610 then
611 exit $code
612 else
613 echo >&5 "FATAL: Unexpected exit with code $code"
614 exit 1
615 fi
faa4bc35
CB
616}
617
6e7b5aaf 618GIT_EXIT_OK=
35641310 619trap 'die' EXIT
d45cec4b 620trap 'exit $?' INT TERM HUP
41184273 621
12a29b1a
TR
622# The user-facing functions are loaded from a separate file so that
623# test_perf subshells can have them too
3c8f12c9 624. "$TEST_DIRECTORY/test-lib-functions.sh"
05236a5e 625
886856ab 626# You are not expected to call test_ok_ and test_failure_ directly, use
3fa36666 627# the test_expect_* functions instead.
886856ab
JH
628
629test_ok_ () {
22231908
JS
630 if test -n "$write_junit_xml"
631 then
632 write_junit_xml_testcase "$*"
633 fi
d5d9de1b 634 test_success=$(($test_success + 1))
633fe50a 635 say_color "" "ok $test_count - $@"
e1970ce4
JH
636}
637
886856ab 638test_failure_ () {
22231908
JS
639 if test -n "$write_junit_xml"
640 then
641 junit_insert="<failure message=\"not ok $test_count -"
642 junit_insert="$junit_insert $(xml_attr_encode "$1")\">"
643 junit_insert="$junit_insert $(xml_attr_encode \
af9912ef
JS
644 "$(if test -n "$GIT_TEST_TEE_OUTPUT_FILE"
645 then
646 test-tool path-utils skip-n-bytes \
647 "$GIT_TEST_TEE_OUTPUT_FILE" $GIT_TEST_TEE_OFFSET
648 else
649 printf '%s\n' "$@" | sed 1d
650 fi)")"
22231908 651 junit_insert="$junit_insert</failure>"
af9912ef
JS
652 if test -n "$GIT_TEST_TEE_OUTPUT_FILE"
653 then
654 junit_insert="$junit_insert<system-err>$(xml_attr_encode \
655 "$(cat "$GIT_TEST_TEE_OUTPUT_FILE")")</system-err>"
656 fi
22231908
JS
657 write_junit_xml_testcase "$1" " $junit_insert"
658 fi
d5d9de1b 659 test_failure=$(($test_failure + 1))
633fe50a 660 say_color error "not ok $test_count - $1"
bf0dd8a8 661 shift
cb1aefda 662 printf '%s\n' "$*" | sed -e 's/^/# /'
6e7b5aaf 663 test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; }
886856ab
JH
664}
665
41ac414e 666test_known_broken_ok_ () {
22231908
JS
667 if test -n "$write_junit_xml"
668 then
669 write_junit_xml_testcase "$* (breakage fixed)"
670 fi
41ac414e 671 test_fixed=$(($test_fixed+1))
633fe50a 672 say_color error "ok $test_count - $@ # TODO known breakage vanished"
41ac414e
JH
673}
674
675test_known_broken_failure_ () {
22231908
JS
676 if test -n "$write_junit_xml"
677 then
678 write_junit_xml_testcase "$* (known breakage)"
679 fi
41ac414e 680 test_broken=$(($test_broken+1))
633fe50a 681 say_color warn "not ok $test_count - $@ # TODO known breakage"
41ac414e 682}
886856ab
JH
683
684test_debug () {
8e832ebc 685 test "$debug" = "" || eval "$1"
e1970ce4
JH
686}
687
e6a6ddc9
TR
688match_pattern_list () {
689 arg="$1"
690 shift
691 test -z "$*" && return 1
692 for pattern_
693 do
694 case "$arg" in
695 $pattern_)
696 return 0
697 esac
698 done
699 return 1
700}
701
0445e6f0
IB
702match_test_selector_list () {
703 title="$1"
704 shift
705 arg="$1"
706 shift
707 test -z "$1" && return 0
708
709 # Both commas and whitespace are accepted as separators.
710 OLDIFS=$IFS
711 IFS=' ,'
712 set -- $1
713 IFS=$OLDIFS
714
715 # If the first selector is negative we include by default.
716 include=
717 case "$1" in
718 !*) include=t ;;
719 esac
720
721 for selector
722 do
723 orig_selector=$selector
724
725 positive=t
726 case "$selector" in
727 !*)
728 positive=
729 selector=${selector##?}
730 ;;
731 esac
732
733 test -z "$selector" && continue
734
735 case "$selector" in
736 *-*)
737 if expr "z${selector%%-*}" : "z[0-9]*[^0-9]" >/dev/null
738 then
739 echo "error: $title: invalid non-numeric in range" \
740 "start: '$orig_selector'" >&2
741 exit 1
742 fi
743 if expr "z${selector#*-}" : "z[0-9]*[^0-9]" >/dev/null
744 then
745 echo "error: $title: invalid non-numeric in range" \
746 "end: '$orig_selector'" >&2
747 exit 1
748 fi
749 ;;
750 *)
751 if expr "z$selector" : "z[0-9]*[^0-9]" >/dev/null
752 then
753 echo "error: $title: invalid non-numeric in test" \
754 "selector: '$orig_selector'" >&2
755 exit 1
756 fi
757 esac
758
759 # Short cut for "obvious" cases
760 test -z "$include" && test -z "$positive" && continue
761 test -n "$include" && test -n "$positive" && continue
762
763 case "$selector" in
764 -*)
765 if test $arg -le ${selector#-}
766 then
767 include=$positive
768 fi
769 ;;
770 *-)
771 if test $arg -ge ${selector%-}
772 then
773 include=$positive
774 fi
775 ;;
776 *-*)
777 if test ${selector%%-*} -le $arg \
778 && test $arg -le ${selector#*-}
779 then
780 include=$positive
781 fi
782 ;;
783 *)
784 if test $arg -eq $selector
785 then
786 include=$positive
787 fi
788 ;;
789 esac
790 done
791
792 test -n "$include"
793}
794
ff09af3f
TR
795maybe_teardown_verbose () {
796 test -z "$verbose_only" && return
797 exec 4>/dev/null 3>/dev/null
798 verbose=
799}
800
801last_verbose=t
802maybe_setup_verbose () {
803 test -z "$verbose_only" && return
26a07309 804 if match_pattern_list $test_count $verbose_only
ff09af3f
TR
805 then
806 exec 4>&2 3>&1
807 # Emit a delimiting blank line when going from
808 # non-verbose to verbose. Within verbose mode the
809 # delimiter is printed by test_expect_*. The choice
810 # of the initial $last_verbose is such that before
811 # test 1, we do not print it.
812 test -z "$last_verbose" && echo >&3 ""
813 verbose=t
814 else
815 exec 4>/dev/null 3>/dev/null
816 verbose=
817 fi
818 last_verbose=$verbose
819}
820
5dfc368f
TR
821maybe_teardown_valgrind () {
822 test -z "$GIT_VALGRIND" && return
823 GIT_VALGRIND_ENABLED=
824}
825
826maybe_setup_valgrind () {
827 test -z "$GIT_VALGRIND" && return
26a07309 828 if test -z "$valgrind_only"
5dfc368f
TR
829 then
830 GIT_VALGRIND_ENABLED=t
831 return
832 fi
833 GIT_VALGRIND_ENABLED=
834 if match_pattern_list $test_count $valgrind_only
835 then
836 GIT_VALGRIND_ENABLED=t
837 fi
838}
839
9b5fe78b 840want_trace () {
f5ba2de6
JK
841 test "$trace" = t && {
842 test "$verbose" = t || test "$verbose_log" = t
843 }
9b5fe78b
JK
844}
845
a136f6d8
JK
846# This is a separate function because some tests use
847# "return" to end a test_expect_success block early
848# (and we want to make sure we run any cleanup like
849# "set +x").
850test_eval_inner_ () {
851 # Do not add anything extra (including LF) after '$*'
852 eval "
9b5fe78b 853 want_trace && set -x
a136f6d8
JK
854 $*"
855}
856
a7c58f28 857test_eval_ () {
90c8a1db
JK
858 # If "-x" tracing is in effect, then we want to avoid polluting stderr
859 # with non-test commands. But once in "set -x" mode, we cannot prevent
a136f6d8
JK
860 # the shell from printing the "set +x" to turn it off (nor the saving
861 # of $? before that). But we can make sure that the output goes to
862 # /dev/null.
863 #
90c8a1db
JK
864 # There are a few subtleties here:
865 #
866 # - we have to redirect descriptor 4 in addition to 2, to cover
867 # BASH_XTRACEFD
868 #
869 # - the actual eval has to come before the redirection block (since
870 # it needs to see descriptor 4 to set up its stderr)
871 #
872 # - likewise, any error message we print must be outside the block to
873 # access descriptor 4
874 #
875 # - checking $? has to come immediately after the eval, but it must
876 # be _inside_ the block to avoid polluting the "set -x" output
877 #
878
879 test_eval_inner_ "$@" </dev/null >&3 2>&4
a136f6d8 880 {
a136f6d8 881 test_eval_ret_=$?
9b5fe78b 882 if want_trace
a136f6d8
JK
883 then
884 set +x
a136f6d8 885 fi
90c8a1db
JK
886 } 2>/dev/null 4>&2
887
888 if test "$test_eval_ret_" != 0 && want_trace
889 then
890 say_color error >&4 "error: last command exited with \$?=$test_eval_ret_"
891 fi
a136f6d8 892 return $test_eval_ret_
a7c58f28
JN
893}
894
4d9d62fa 895test_run_ () {
b6b0afdc 896 test_cleanup=:
b586744a 897 expecting_failure=$2
bb79af9d 898
92b269f5 899 if test "${GIT_TEST_CHAIN_LINT:-1}" != 0; then
2a01ef8c
JK
900 # turn off tracing for this test-eval, as it simply creates
901 # confusing noise in the "-x" output
902 trace_tmp=$trace
903 trace=
bb79af9d
JK
904 # 117 is magic because it is unlikely to match the exit
905 # code of other programs
878f9883
ES
906 if $(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!') ||
907 test "OK-117" != "$(test_eval_ "(exit 117) && $1${LF}${LF}echo OK-\$?" 3>&1)"
99a64e4b 908 then
165293af 909 BUG "broken &&-chain or run-away HERE-DOC: $1"
bb79af9d 910 fi
2a01ef8c 911 trace=$trace_tmp
bb79af9d
JK
912 fi
913
a57397b0 914 setup_malloc_check
a7c58f28 915 test_eval_ "$1"
b6b0afdc 916 eval_ret=$?
a57397b0 917 teardown_malloc_check
b586744a 918
a136f6d8
JK
919 if test -z "$immediate" || test $eval_ret = 0 ||
920 test -n "$expecting_failure" && test "$test_cleanup" != ":"
b586744a 921 then
1b3185fc 922 setup_malloc_check
a7c58f28 923 test_eval_ "$test_cleanup"
1b3185fc 924 teardown_malloc_check
b586744a 925 fi
1c0cc756
RJ
926 if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE"
927 then
57e1538a
ÆAB
928 echo ""
929 fi
aa0bcf96 930 return "$eval_ret"
4d9d62fa
PR
931}
932
ae75342c 933test_start_ () {
8586f98b 934 test_count=$(($test_count+1))
ff09af3f 935 maybe_setup_verbose
5dfc368f 936 maybe_setup_valgrind
22231908
JS
937 if test -n "$write_junit_xml"
938 then
939 junit_start=$(test-tool date getnanos)
940 fi
ae75342c
TR
941}
942
943test_finish_ () {
944 echo >&3 ""
5dfc368f 945 maybe_teardown_valgrind
ff09af3f 946 maybe_teardown_verbose
af9912ef
JS
947 if test -n "$GIT_TEST_TEE_OFFSET"
948 then
949 GIT_TEST_TEE_OFFSET=$(test-tool path-utils file-size \
950 "$GIT_TEST_TEE_OUTPUT_FILE")
951 fi
ae75342c
TR
952}
953
954test_skip () {
04ece593 955 to_skip=
ef2ac68d 956 skipped_reason=
e6a6ddc9
TR
957 if match_pattern_list $this_test.$test_count $GIT_SKIP_TESTS
958 then
959 to_skip=t
ef2ac68d 960 skipped_reason="GIT_SKIP_TESTS"
e6a6ddc9 961 fi
05236a5e
JN
962 if test -z "$to_skip" && test -n "$test_prereq" &&
963 ! test_have_prereq "$test_prereq"
a7bb3940
JS
964 then
965 to_skip=t
ef2ac68d 966
07431fc8 967 of_prereq=
05236a5e 968 if test "$missing_prereq" != "$test_prereq"
07431fc8 969 then
05236a5e 970 of_prereq=" of $test_prereq"
07431fc8 971 fi
ef2ac68d
IB
972 skipped_reason="missing $missing_prereq${of_prereq}"
973 fi
0445e6f0
IB
974 if test -z "$to_skip" && test -n "$run_list" &&
975 ! match_test_selector_list '--run' $test_count "$run_list"
976 then
977 to_skip=t
978 skipped_reason="--run"
979 fi
07431fc8 980
ef2ac68d
IB
981 case "$to_skip" in
982 t)
22231908
JS
983 if test -n "$write_junit_xml"
984 then
985 message="$(xml_attr_encode "$skipped_reason")"
986 write_junit_xml_testcase "$1" \
987 " <skipped message=\"$message\" />"
988 fi
989
633fe50a 990 say_color skip >&3 "skipping test: $@"
ef2ac68d 991 say_color skip "ok $test_count # skip $1 ($skipped_reason)"
04ece593
JH
992 : true
993 ;;
994 *)
995 false
996 ;;
997 esac
998}
999
342e9ef2
TR
1000# stub; perf-lib overrides it
1001test_at_end_hook_ () {
1002 :
1003}
1004
22231908
JS
1005write_junit_xml () {
1006 case "$1" in
1007 --truncate)
1008 >"$junit_xml_path"
1009 junit_have_testcase=
1010 shift
1011 ;;
1012 esac
1013 printf '%s\n' "$@" >>"$junit_xml_path"
1014}
1015
1016xml_attr_encode () {
1017 printf '%s\n' "$@" | test-tool xml-encode
1018}
1019
1020write_junit_xml_testcase () {
1021 junit_attrs="name=\"$(xml_attr_encode "$this_test.$test_count $1")\""
1022 shift
1023 junit_attrs="$junit_attrs classname=\"$this_test\""
1024 junit_attrs="$junit_attrs time=\"$(test-tool \
1025 date getnanos $junit_start)\""
1026 write_junit_xml "$(printf '%s\n' \
1027 " <testcase $junit_attrs>" "$@" " </testcase>")"
1028 junit_have_testcase=t
1029}
1030
e1970ce4 1031test_done () {
6e7b5aaf 1032 GIT_EXIT_OK=t
2d84e9fb 1033
22231908
JS
1034 if test -n "$write_junit_xml" && test -n "$junit_xml_path"
1035 then
1036 test -n "$junit_have_testcase" || {
1037 junit_start=$(test-tool date getnanos)
1038 write_junit_xml_testcase "all tests skipped"
1039 }
1040
1041 # adjust the overall time
1042 junit_time=$(test-tool date getnanos $junit_suite_start)
1043 sed "s/<testsuite [^>]*/& time=\"$junit_time\"/" \
1044 <"$junit_xml_path" >"$junit_xml_path.new"
1045 mv "$junit_xml_path.new" "$junit_xml_path"
1046
1047 write_junit_xml " </testsuite>" "</testsuites>"
1048 fi
1049
1c0cc756
RJ
1050 if test -z "$HARNESS_ACTIVE"
1051 then
62c379b8 1052 mkdir -p "$TEST_RESULTS_DIR"
8ef1abe5 1053
62c379b8 1054 cat >"$TEST_RESULTS_BASE.counts" <<-EOF
c54e6be7
ML
1055 total $test_count
1056 success $test_success
1057 fixed $test_fixed
1058 broken $test_broken
1059 failed $test_failure
1060
1061 EOF
8ef1abe5 1062 fi
41ac414e
JH
1063
1064 if test "$test_fixed" != 0
1065 then
633fe50a 1066 say_color error "# $test_fixed known breakage(s) vanished; please update test(s)"
41ac414e
JH
1067 fi
1068 if test "$test_broken" != 0
1069 then
633fe50a 1070 say_color warn "# still have $test_broken known breakage(s)"
b73d9a23
AS
1071 fi
1072 if test "$test_broken" != 0 || test "$test_fixed" != 0
1073 then
1074 test_remaining=$(( $test_count - $test_broken - $test_fixed ))
1075 msg="remaining $test_remaining test(s)"
11d54b8b 1076 else
b73d9a23 1077 test_remaining=$test_count
11d54b8b 1078 msg="$test_count test(s)"
41ac414e 1079 fi
e1970ce4 1080 case "$test_failure" in
10b94e28 1081 0)
1c0cc756
RJ
1082 if test $test_external_has_tap -eq 0
1083 then
b73d9a23 1084 if test $test_remaining -gt 0
d87bd7c1 1085 then
633fe50a 1086 say_color pass "# passed all $msg"
d87bd7c1 1087 fi
c7018be5
JH
1088
1089 # Maybe print SKIP message
1090 test -z "$skip_all" || skip_all="# SKIP $skip_all"
1091 case "$test_count" in
1092 0)
1093 say "1..$test_count${skip_all:+ $skip_all}"
1094 ;;
1095 *)
1096 test -z "$skip_all" ||
1097 say_color warn "$skip_all"
1098 say "1..$test_count"
1099 ;;
1100 esac
d998bd4a 1101 fi
abc5d372 1102
06478dab 1103 if test -z "$debug"
4d0912a2 1104 then
06478dab 1105 test -d "$TRASH_DIRECTORY" ||
4d0912a2 1106 error "Tests passed but trash directory already removed before test cleanup; aborting"
abc5d372 1107
06478dab 1108 cd "$TRASH_DIRECTORY/.." &&
046e90d1
JS
1109 rm -fr "$TRASH_DIRECTORY" || {
1110 # try again in a bit
1111 sleep 5;
1112 rm -fr "$TRASH_DIRECTORY"
1113 } ||
4d0912a2 1114 error "Tests passed but test cleanup failed; aborting"
4d0912a2 1115 fi
342e9ef2
TR
1116 test_at_end_hook_
1117
e1970ce4
JH
1118 exit 0 ;;
1119
1120 *)
1c0cc756
RJ
1121 if test $test_external_has_tap -eq 0
1122 then
633fe50a
TR
1123 say_color error "# failed $test_failure among $msg"
1124 say "1..$test_count"
d998bd4a 1125 fi
5099b99d 1126
e1970ce4
JH
1127 exit 1 ;;
1128
1129 esac
1130}
1131
e4597aae 1132if test -n "$valgrind"
4e1be63c 1133then
4e1be63c
JS
1134 make_symlink () {
1135 test -h "$2" &&
1136 test "$1" = "$(readlink "$2")" || {
1137 # be super paranoid
1138 if mkdir "$2".lock
1139 then
1140 rm -f "$2" &&
1141 ln -s "$1" "$2" &&
1142 rm -r "$2".lock
1143 else
1144 while test -d "$2".lock
1145 do
1146 say "Waiting for lock on $2."
1147 sleep 1
1148 done
1149 fi
1150 }
1151 }
1152
1153 make_valgrind_symlink () {
36bfb0e5 1154 # handle only executables, unless they are shell libraries that
11d62145 1155 # need to be in the exec-path.
36bfb0e5 1156 test -x "$1" ||
2a59a6ef 1157 test "# " = "$(test_copy_bytes 2 <"$1")" ||
36bfb0e5 1158 return;
4e1be63c
JS
1159
1160 base=$(basename "$1")
28fab7b2
RS
1161 case "$base" in
1162 test-*)
1163 symlink_target="$GIT_BUILD_DIR/t/helper/$base"
1164 ;;
1165 *)
1166 symlink_target="$GIT_BUILD_DIR/$base"
1167 ;;
1168 esac
4e1be63c
JS
1169 # do not override scripts
1170 if test -x "$symlink_target" &&
1171 test ! -d "$symlink_target" &&
2a59a6ef 1172 test "#!" != "$(test_copy_bytes 2 <"$symlink_target")"
4e1be63c
JS
1173 then
1174 symlink_target=../valgrind.sh
1175 fi
efd92ffd
JS
1176 case "$base" in
1177 *.sh|*.perl)
1178 symlink_target=../unprocessed-script
1179 esac
4e1be63c
JS
1180 # create the link, or replace it if it is out of date
1181 make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit
1182 }
1183
26a07309
TR
1184 # override all git executables in TEST_DIRECTORY/..
1185 GIT_VALGRIND=$TEST_DIRECTORY/valgrind
1186 mkdir -p "$GIT_VALGRIND"/bin
503e2241 1187 for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*
26a07309
TR
1188 do
1189 make_valgrind_symlink $file
1190 done
1191 # special-case the mergetools loadables
1192 make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools"
1193 OLDIFS=$IFS
1194 IFS=:
1195 for path in $PATH
1196 do
1197 ls "$path"/git-* 2> /dev/null |
1198 while read file
ad0e6233 1199 do
26a07309 1200 make_valgrind_symlink "$file"
ad0e6233 1201 done
26a07309
TR
1202 done
1203 IFS=$OLDIFS
4e1be63c
JS
1204 PATH=$GIT_VALGRIND/bin:$PATH
1205 GIT_EXEC_PATH=$GIT_VALGRIND/bin
1206 export GIT_VALGRIND
952af351
TR
1207 GIT_VALGRIND_MODE="$valgrind"
1208 export GIT_VALGRIND_MODE
5dfc368f 1209 GIT_VALGRIND_ENABLED=t
26a07309 1210 test -n "$valgrind_only" && GIT_VALGRIND_ENABLED=
5dfc368f 1211 export GIT_VALGRIND_ENABLED
1c0cc756
RJ
1212elif test -n "$GIT_TEST_INSTALLED"
1213then
e4597aae
MO
1214 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path) ||
1215 error "Cannot run git from $GIT_TEST_INSTALLED."
16df35cb 1216 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH
e4597aae
MO
1217 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}
1218else # normal case, use ../bin-wrappers only unless $with_dashes:
dd167a30 1219 if test -n "$no_bin_wrappers"
1c0cc756 1220 then
dd167a30
JS
1221 with_dashes=t
1222 else
1223 git_bin_dir="$GIT_BUILD_DIR/bin-wrappers"
1224 if ! test -x "$git_bin_dir/git"
1c0cc756 1225 then
dd167a30
JS
1226 if test -z "$with_dashes"
1227 then
1228 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"
1229 fi
1230 with_dashes=t
e4597aae 1231 fi
dd167a30 1232 PATH="$git_bin_dir:$PATH"
e4597aae 1233 fi
6cec5c68 1234 GIT_EXEC_PATH=$GIT_BUILD_DIR
1c0cc756
RJ
1235 if test -n "$with_dashes"
1236 then
ca7312d3 1237 PATH="$GIT_BUILD_DIR:$GIT_BUILD_DIR/t/helper:$PATH"
e4597aae 1238 fi
4e1be63c 1239fi
6cec5c68 1240GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt
8bfa6bd6 1241GIT_CONFIG_NOSYSTEM=1
3c995beb 1242GIT_ATTR_NOSYSTEM=1
8f323c00 1243export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM
49ccb087 1244
5e87eae9
JH
1245if test -z "$GIT_TEST_CMP"
1246then
1247 if test -n "$GIT_TEST_CMP_USE_COPIED_CONTEXT"
1248 then
1249 GIT_TEST_CMP="$DIFF -c"
1250 else
1251 GIT_TEST_CMP="$DIFF -u"
1252 fi
1253fi
1254
20d2a30f 1255GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib
6fcca938 1256export GITPERLLIB
6cec5c68 1257test -d "$GIT_BUILD_DIR"/templates/blt || {
eea42069
JH
1258 error "You haven't built things yet, have you?"
1259}
e1970ce4 1260
d609615f 1261if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool$X
1c0cc756 1262then
0e496492
NTND
1263 echo >&2 'You need to build test-tool:'
1264 echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'
56cf9806
EW
1265 exit 1
1266fi
1267
e1970ce4 1268# Test repository
38b074de 1269rm -fr "$TRASH_DIRECTORY" || {
6e7b5aaf 1270 GIT_EXIT_OK=t
8d14ac94
JH
1271 echo >&5 "FATAL: Cannot prepare test area"
1272 exit 1
1273}
1274
90cff968 1275HOME="$TRASH_DIRECTORY"
0ea47f9d
JH
1276GNUPGHOME="$HOME/gnupg-home-not-used"
1277export HOME GNUPGHOME
90cff968 1278
1c0cc756
RJ
1279if test -z "$TEST_NO_CREATE_REPO"
1280then
38b074de 1281 test_create_repo "$TRASH_DIRECTORY"
342e9ef2 1282else
38b074de 1283 mkdir -p "$TRASH_DIRECTORY"
342e9ef2 1284fi
22231908 1285
1bd9c648
LW
1286# Use -P to resolve symlinks in our working directory so that the cwd
1287# in subprocesses like git equals our $PWD (for pathname comparisons).
38b074de 1288cd -P "$TRASH_DIRECTORY" || exit 1
04ece593 1289
d5d9de1b
JS
1290this_test=${0##*/}
1291this_test=${this_test%%-*}
e6a6ddc9
TR
1292if match_pattern_list "$this_test" $GIT_SKIP_TESTS
1293then
1294 say_color info >&3 "skipping test $this_test altogether"
1295 skip_all="skip all tests in $this_test"
1296 test_done
1297fi
f17e9fbb 1298
22231908
JS
1299if test -n "$write_junit_xml"
1300then
1301 junit_xml_dir="$TEST_OUTPUT_DIRECTORY/out"
1302 mkdir -p "$junit_xml_dir"
1303 junit_xml_base=${0##*/}
1304 junit_xml_path="$junit_xml_dir/TEST-${junit_xml_base%.sh}.xml"
1305 junit_attrs="name=\"${junit_xml_base%.sh}\""
1306 junit_attrs="$junit_attrs timestamp=\"$(TZ=UTC \
1307 date +%Y-%m-%dT%H:%M:%S)\""
1308 write_junit_xml --truncate "<testsuites>" " <testsuite $junit_attrs>"
1309 junit_suite_start=$(test-tool date getnanos)
af9912ef
JS
1310 if test -n "$GIT_TEST_TEE_OUTPUT_FILE"
1311 then
1312 GIT_TEST_TEE_OFFSET=0
1313 fi
22231908
JS
1314fi
1315
8648732e
BC
1316# Provide an implementation of the 'yes' utility
1317yes () {
1318 if test $# = 0
1319 then
1320 y=y
1321 else
1322 y="$*"
1323 fi
1324
6129c930
JS
1325 i=0
1326 while test $i -lt 99
8648732e 1327 do
6129c930
JS
1328 echo "$y"
1329 i=$(($i+1))
8648732e
BC
1330 done
1331}
1332
f17e9fbb 1333# Fix some commands on Windows
d98b2c5f
JS
1334uname_s=$(uname -s)
1335case $uname_s in
f17e9fbb
JS
1336*MINGW*)
1337 # Windows has its own (incompatible) sort and find
1338 sort () {
1339 /usr/bin/sort "$@"
1340 }
1341 find () {
1342 /usr/bin/find "$@"
1343 }
4114156a
JS
1344 # git sees Windows-style pwd
1345 pwd () {
1346 builtin pwd -W
1347 }
ee9fb68c 1348 # no POSIX permissions
6fd1106a 1349 # backslashes in pathspec are converted to '/'
fb9a2bea 1350 # exec does not inherit the PID
a94114ad 1351 test_set_prereq MINGW
5f4e02e5 1352 test_set_prereq NATIVE_CRLF
a31d0665 1353 test_set_prereq SED_STRIPS_CR
97669eed 1354 test_set_prereq GREP_STRIPS_CR
4d715ac0 1355 GIT_TEST_CMP=mingw_test_cmp
a31d0665
RJ
1356 ;;
1357*CYGWIN*)
1358 test_set_prereq POSIXPERM
a31d0665 1359 test_set_prereq EXECKEEPSPID
cfa96496 1360 test_set_prereq CYGWIN
a31d0665 1361 test_set_prereq SED_STRIPS_CR
97669eed 1362 test_set_prereq GREP_STRIPS_CR
ee9fb68c
JS
1363 ;;
1364*)
1365 test_set_prereq POSIXPERM
6fd1106a 1366 test_set_prereq BSLASHPSPEC
fb9a2bea 1367 test_set_prereq EXECKEEPSPID
f17e9fbb
JS
1368 ;;
1369esac
704a3143 1370
b082687c 1371( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1
1b19ccd2 1372test -z "$NO_PERL" && test_set_prereq PERL
68c7d276 1373test -z "$NO_PTHREADS" && test_set_prereq PTHREADS
d4e1b47a 1374test -z "$NO_PYTHON" && test_set_prereq PYTHON
94da9193 1375test -n "$USE_LIBPCRE1$USE_LIBPCRE2" && test_set_prereq PCRE
ce9a2570
ÆAB
1376test -n "$USE_LIBPCRE1" && test_set_prereq LIBPCRE1
1377test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE2
5e9637c6 1378test -z "$NO_GETTEXT" && test_set_prereq GETTEXT
1b19ccd2 1379
6cdccfce
ÆAB
1380if test -n "$GIT_TEST_GETTEXT_POISON_ORIG"
1381then
1382 GIT_TEST_GETTEXT_POISON=$GIT_TEST_GETTEXT_POISON_ORIG
1383 unset GIT_TEST_GETTEXT_POISON_ORIG
1384fi
1385
bb946bba 1386# Can we rely on git's output in the C locale?
6cdccfce 1387if test -z "$GIT_TEST_GETTEXT_POISON"
30955229 1388then
30955229
JN
1389 test_set_prereq C_LOCALE_OUTPUT
1390fi
bb946bba 1391
4592e608
NTND
1392if test -z "$GIT_TEST_CHECK_CACHE_TREE"
1393then
1394 GIT_TEST_CHECK_CACHE_TREE=true
1395 export GIT_TEST_CHECK_CACHE_TREE
1396fi
1397
20073274
AS
1398test_lazy_prereq PIPE '
1399 # test whether the filesystem supports FIFOs
7b7bea23
RJ
1400 test_have_prereq !MINGW,!CYGWIN &&
1401 rm -f testfifo && mkfifo testfifo
20073274
AS
1402'
1403
04083f27
JH
1404test_lazy_prereq SYMLINKS '
1405 # test whether the filesystem supports symbolic links
1406 ln -s x y && test -h y
1407'
c91cfd19 1408
b018c735
JN
1409test_lazy_prereq FILEMODE '
1410 test "$(git config --bool core.filemode)" = true
1411'
1412
ac39aa61
MG
1413test_lazy_prereq CASE_INSENSITIVE_FS '
1414 echo good >CamelCase &&
1415 echo bad >camelcase &&
1416 test "$(cat CamelCase)" != good
1417'
1418
6ec63305
WC
1419test_lazy_prereq FUNNYNAMES '
1420 test_have_prereq !MINGW &&
1421 touch -- \
1422 "FUNNYNAMES tab embedded" \
1423 "FUNNYNAMES \"quote embedded\"" \
1424 "FUNNYNAMES newline
1425embedded" 2>/dev/null &&
1426 rm -- \
1427 "FUNNYNAMES tab embedded" \
1428 "FUNNYNAMES \"quote embedded\"" \
1429 "FUNNYNAMES newline
1430embedded" 2>/dev/null
1431'
1432
5b0b5dd4
MG
1433test_lazy_prereq UTF8_NFD_TO_NFC '
1434 # check whether FS converts nfd unicode to nfc
1435 auml=$(printf "\303\244")
1436 aumlcdiar=$(printf "\141\314\210")
1437 >"$auml" &&
742ae10e 1438 test -f "$aumlcdiar"
5b0b5dd4
MG
1439'
1440
09feffb6
JK
1441test_lazy_prereq AUTOIDENT '
1442 sane_unset GIT_AUTHOR_NAME &&
1443 sane_unset GIT_AUTHOR_EMAIL &&
1444 git var GIT_AUTHOR_IDENT
1445'
1446
6219bb22
JH
1447test_lazy_prereq EXPENSIVE '
1448 test -n "$GIT_TEST_LONG"
1449'
1450
5b1fe6eb
ÆAB
1451test_lazy_prereq EXPENSIVE_ON_WINDOWS '
1452 test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN
1453'
1454
e1ecd9e3
JH
1455test_lazy_prereq USR_BIN_TIME '
1456 test -x /usr/bin/time
1457'
1458
1767c517
JK
1459test_lazy_prereq NOT_ROOT '
1460 uid=$(id -u) &&
1461 test "$uid" != 0
1462'
1463
63b747ce
JT
1464test_lazy_prereq JGIT '
1465 type jgit
1466'
1467
719c3da2
JH
1468# SANITY is about "can you correctly predict what the filesystem would
1469# do by only looking at the permission bits of the files and
1470# directories?" A typical example of !SANITY is running the test
1471# suite as root, where a test may expect "chmod -r file && cat file"
1472# to fail because file is supposed to be unreadable after a successful
1473# chmod. In an environment (i.e. combination of what filesystem is
1474# being used and who is running the tests) that lacks SANITY, you may
1475# be able to delete or create a file when the containing directory
1476# doesn't have write permissions, or access a file even if the
1477# containing directory doesn't have read or execute permissions.
1478
f400e51c
TB
1479test_lazy_prereq SANITY '
1480 mkdir SANETESTD.1 SANETESTD.2 &&
1481
1482 chmod +w SANETESTD.1 SANETESTD.2 &&
1483 >SANETESTD.1/x 2>SANETESTD.2/x &&
1484 chmod -w SANETESTD.1 &&
719c3da2 1485 chmod -r SANETESTD.1/x &&
f400e51c 1486 chmod -rx SANETESTD.2 ||
165293af 1487 BUG "cannot prepare SANETESTD"
f400e51c 1488
719c3da2 1489 ! test -r SANETESTD.1/x &&
f400e51c
TB
1490 ! rm SANETESTD.1/x && ! test -f SANETESTD.2/x
1491 status=$?
1492
1493 chmod +rwx SANETESTD.1 SANETESTD.2 &&
1494 rm -rf SANETESTD.1 SANETESTD.2 ||
165293af 1495 BUG "cannot clean SANETESTD"
f400e51c
TB
1496 return $status
1497'
f838ce58 1498
d98b2c5f 1499test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip}
f838ce58
JK
1500GIT_UNZIP=${GIT_UNZIP:-unzip}
1501test_lazy_prereq UNZIP '
1502 "$GIT_UNZIP" -v
1503 test $? -ne 127
1504'
9a308de3
JK
1505
1506run_with_limited_cmdline () {
1507 (ulimit -s 128 && "$@")
1508}
1509
21dac1de
RJ
1510test_lazy_prereq CMDLINE_LIMIT '
1511 test_have_prereq !MINGW,!CYGWIN &&
1512 run_with_limited_cmdline true
1513'
6b9c38e1 1514
4db464f8
MG
1515run_with_limited_stack () {
1516 (ulimit -s 128 && "$@")
1517}
1518
21dac1de
RJ
1519test_lazy_prereq ULIMIT_STACK_SIZE '
1520 test_have_prereq !MINGW,!CYGWIN &&
1521 run_with_limited_stack true
1522'
4db464f8 1523
6b9c38e1
JK
1524build_option () {
1525 git version --build-options |
1526 sed -ne "s/^$1: //p"
1527}
1528
1529test_lazy_prereq LONG_IS_64BIT '
1530 test 8 -le "$(build_option sizeof-long)"
1531'
a07fb050 1532
a801a7cf
NTND
1533test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit'
1534test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit'
e9184b07
JK
1535
1536test_lazy_prereq CURL '
1537 curl --version
1538'
d16ab634 1539
1540# SHA1 is a test if the hash algorithm in use is SHA-1. This is both for tests
1541# which will not work with other hash algorithms and tests that work but don't
1542# test anything meaningful (e.g. special values which cause short collisions).
1543test_lazy_prereq SHA1 '
1544 test $(git hash-object /dev/null) = e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
1545'
11aad464
JS
1546
1547test_lazy_prereq REBASE_P '
1548 test -z "$GIT_TEST_SKIP_REBASE_P"
1549'