Move the user-facing test library to test-lib-functions.sh
[git/debian.git] / t / test-lib.sh
blob1da3f40a31ef4e17cca90b86813c2414d7e94304
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
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.
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.
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/ .
18 # if --tee was passed, write the output not only to the terminal, but
19 # additionally to the file test-results/$BASENAME.out, too.
20 case "$GIT_TEST_TEE_STARTED, $* " in
21 done,*)
22 # do not redirect again
24 *' --tee '*|*' --va'*)
25 mkdir -p test-results
26 BASE=test-results/$(basename "$0" .sh)
27 (GIT_TEST_TEE_STARTED=done ${SHELL-sh} "$0" "$@" 2>&1;
28 echo $? > $BASE.exit) | tee $BASE.out
29 test "$(cat $BASE.exit)" = 0
30 exit
32 esac
34 # Keep the original TERM for say_color
35 ORIGINAL_TERM=$TERM
37 # For repeatability, reset the environment to known value.
38 LANG=C
39 LC_ALL=C
40 PAGER=cat
41 TZ=UTC
42 TERM=dumb
43 export LANG LC_ALL PAGER TERM TZ
44 EDITOR=:
45 unset VISUAL
46 unset EMAIL
47 unset LANGUAGE
48 unset $(perl -e '
49 my @env = keys %ENV;
50 my $ok = join("|", qw(
51 TRACE
52 DEBUG
53 USE_LOOKUP
54 TEST
55 .*_TEST
56 PROVE
57 VALGRIND
58 ));
59 my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env);
60 print join("\n", @vars);
62 GIT_AUTHOR_EMAIL=author@example.com
63 GIT_AUTHOR_NAME='A U Thor'
64 GIT_COMMITTER_EMAIL=committer@example.com
65 GIT_COMMITTER_NAME='C O Mitter'
66 GIT_MERGE_VERBOSITY=5
67 GIT_MERGE_AUTOEDIT=no
68 export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT
69 export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
70 export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
71 export EDITOR
73 # Protect ourselves from common misconfiguration to export
74 # CDPATH into the environment
75 unset CDPATH
77 unset GREP_OPTIONS
79 case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in
80 1|2|true)
81 echo "* warning: Some tests will not work if GIT_TRACE" \
82 "is set as to trace on STDERR ! *"
83 echo "* warning: Please set GIT_TRACE to something" \
84 "other than 1, 2 or true ! *"
86 esac
88 # Convenience
90 # A regexp to match 5 and 40 hexdigits
91 _x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
92 _x40="$_x05$_x05$_x05$_x05$_x05$_x05$_x05$_x05"
94 # Zero SHA-1
95 _z40=0000000000000000000000000000000000000000
97 # Line feed
98 LF='
101 # Each test should start with something like this, after copyright notices:
103 # test_description='Description of this test...
104 # This test checks if command xyzzy does the right thing...
106 # . ./test-lib.sh
107 [ "x$ORIGINAL_TERM" != "xdumb" ] && (
108 TERM=$ORIGINAL_TERM &&
109 export TERM &&
110 [ -t 1 ] &&
111 tput bold >/dev/null 2>&1 &&
112 tput setaf 1 >/dev/null 2>&1 &&
113 tput sgr0 >/dev/null 2>&1
114 ) &&
115 color=t
117 while test "$#" -ne 0
119 case "$1" in
120 -d|--d|--de|--deb|--debu|--debug)
121 debug=t; shift ;;
122 -i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate)
123 immediate=t; shift ;;
124 -l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests)
125 GIT_TEST_LONG=t; export GIT_TEST_LONG; shift ;;
126 -h|--h|--he|--hel|--help)
127 help=t; shift ;;
128 -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
129 verbose=t; shift ;;
130 -q|--q|--qu|--qui|--quie|--quiet)
131 # Ignore --quiet under a TAP::Harness. Saying how many tests
132 # passed without the ok/not ok details is always an error.
133 test -z "$HARNESS_ACTIVE" && quiet=t; shift ;;
134 --with-dashes)
135 with_dashes=t; shift ;;
136 --no-color)
137 color=; shift ;;
138 --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind)
139 valgrind=t; verbose=t; shift ;;
140 --tee)
141 shift ;; # was handled already
142 --root=*)
143 root=$(expr "z$1" : 'z[^=]*=\(.*\)')
144 shift ;;
146 echo "error: unknown test option '$1'" >&2; exit 1 ;;
147 esac
148 done
150 if test -n "$color"; then
151 say_color () {
153 TERM=$ORIGINAL_TERM
154 export TERM
155 case "$1" in
156 error) tput bold; tput setaf 1;; # bold red
157 skip) tput bold; tput setaf 2;; # bold green
158 pass) tput setaf 2;; # green
159 info) tput setaf 3;; # brown
160 *) test -n "$quiet" && return;;
161 esac
162 shift
163 printf "%s" "$*"
164 tput sgr0
165 echo
168 else
169 say_color() {
170 test -z "$1" && test -n "$quiet" && return
171 shift
172 echo "$*"
176 error () {
177 say_color error "error: $*"
178 GIT_EXIT_OK=t
179 exit 1
182 say () {
183 say_color info "$*"
186 test "${test_description}" != "" ||
187 error "Test script did not set test_description."
189 if test "$help" = "t"
190 then
191 echo "$test_description"
192 exit 0
195 exec 5>&1
196 exec 6<&0
197 if test "$verbose" = "t"
198 then
199 exec 4>&2 3>&1
200 else
201 exec 4>/dev/null 3>/dev/null
204 test_failure=0
205 test_count=0
206 test_fixed=0
207 test_broken=0
208 test_success=0
210 test_external_has_tap=0
212 die () {
213 code=$?
214 if test -n "$GIT_EXIT_OK"
215 then
216 exit $code
217 else
218 echo >&5 "FATAL: Unexpected exit with code $code"
219 exit 1
223 GIT_EXIT_OK=
224 trap 'die' EXIT
226 # The user-facing functions are loaded from a separate file so that
227 # test_perf subshells can have them too
228 . "${TEST_DIRECTORY:-.}"/test-lib-functions.sh
230 # You are not expected to call test_ok_ and test_failure_ directly, use
231 # the text_expect_* functions instead.
233 test_ok_ () {
234 test_success=$(($test_success + 1))
235 say_color "" "ok $test_count - $@"
238 test_failure_ () {
239 test_failure=$(($test_failure + 1))
240 say_color error "not ok - $test_count $1"
241 shift
242 echo "$@" | sed -e 's/^/# /'
243 test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; }
246 test_known_broken_ok_ () {
247 test_fixed=$(($test_fixed+1))
248 say_color "" "ok $test_count - $@ # TODO known breakage"
251 test_known_broken_failure_ () {
252 test_broken=$(($test_broken+1))
253 say_color skip "not ok $test_count - $@ # TODO known breakage"
256 test_debug () {
257 test "$debug" = "" || eval "$1"
260 test_eval_ () {
261 # This is a separate function because some tests use
262 # "return" to end a test_expect_success block early.
263 eval </dev/null >&3 2>&4 "$*"
266 test_run_ () {
267 test_cleanup=:
268 expecting_failure=$2
269 test_eval_ "$1"
270 eval_ret=$?
272 if test -z "$immediate" || test $eval_ret = 0 || test -n "$expecting_failure"
273 then
274 test_eval_ "$test_cleanup"
276 if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE"; then
277 echo ""
279 return "$eval_ret"
282 test_skip () {
283 test_count=$(($test_count+1))
284 to_skip=
285 for skp in $GIT_SKIP_TESTS
287 case $this_test.$test_count in
288 $skp)
289 to_skip=t
290 break
291 esac
292 done
293 if test -z "$to_skip" && test -n "$test_prereq" &&
294 ! test_have_prereq "$test_prereq"
295 then
296 to_skip=t
298 case "$to_skip" in
300 of_prereq=
301 if test "$missing_prereq" != "$test_prereq"
302 then
303 of_prereq=" of $test_prereq"
306 say_color skip >&3 "skipping test: $@"
307 say_color skip "ok $test_count # skip $1 (missing $missing_prereq${of_prereq})"
308 : true
311 false
313 esac
316 test_done () {
317 GIT_EXIT_OK=t
319 if test -z "$HARNESS_ACTIVE"; then
320 test_results_dir="$TEST_DIRECTORY/test-results"
321 mkdir -p "$test_results_dir"
322 test_results_path="$test_results_dir/${0%.sh}-$$.counts"
324 cat >>"$test_results_path" <<-EOF
325 total $test_count
326 success $test_success
327 fixed $test_fixed
328 broken $test_broken
329 failed $test_failure
334 if test "$test_fixed" != 0
335 then
336 say_color pass "# fixed $test_fixed known breakage(s)"
338 if test "$test_broken" != 0
339 then
340 say_color error "# still have $test_broken known breakage(s)"
341 msg="remaining $(($test_count-$test_broken)) test(s)"
342 else
343 msg="$test_count test(s)"
345 case "$test_failure" in
347 # Maybe print SKIP message
348 [ -z "$skip_all" ] || skip_all=" # SKIP $skip_all"
350 if test $test_external_has_tap -eq 0; then
351 say_color pass "# passed all $msg"
352 say "1..$test_count$skip_all"
355 test -d "$remove_trash" &&
356 cd "$(dirname "$remove_trash")" &&
357 rm -rf "$(basename "$remove_trash")"
359 exit 0 ;;
362 if test $test_external_has_tap -eq 0; then
363 say_color error "# failed $test_failure among $msg"
364 say "1..$test_count"
367 exit 1 ;;
369 esac
372 # Test the binaries we have just built. The tests are kept in
373 # t/ subdirectory and are run in 'trash directory' subdirectory.
374 if test -z "$TEST_DIRECTORY"
375 then
376 # We allow tests to override this, in case they want to run tests
377 # outside of t/, e.g. for running tests on the test library
378 # itself.
379 TEST_DIRECTORY=$(pwd)
381 GIT_BUILD_DIR="$TEST_DIRECTORY"/..
383 if test -n "$valgrind"
384 then
385 make_symlink () {
386 test -h "$2" &&
387 test "$1" = "$(readlink "$2")" || {
388 # be super paranoid
389 if mkdir "$2".lock
390 then
391 rm -f "$2" &&
392 ln -s "$1" "$2" &&
393 rm -r "$2".lock
394 else
395 while test -d "$2".lock
397 say "Waiting for lock on $2."
398 sleep 1
399 done
404 make_valgrind_symlink () {
405 # handle only executables, unless they are shell libraries that
406 # need to be in the exec-path. We will just use "#!" as a
407 # guess for a shell-script, since we have no idea what the user
408 # may have configured as the shell path.
409 test -x "$1" ||
410 test "#!" = "$(head -c 2 <"$1")" ||
411 return;
413 base=$(basename "$1")
414 symlink_target=$GIT_BUILD_DIR/$base
415 # do not override scripts
416 if test -x "$symlink_target" &&
417 test ! -d "$symlink_target" &&
418 test "#!" != "$(head -c 2 < "$symlink_target")"
419 then
420 symlink_target=../valgrind.sh
422 case "$base" in
423 *.sh|*.perl)
424 symlink_target=../unprocessed-script
425 esac
426 # create the link, or replace it if it is out of date
427 make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit
430 # override all git executables in TEST_DIRECTORY/..
431 GIT_VALGRIND=$TEST_DIRECTORY/valgrind
432 mkdir -p "$GIT_VALGRIND"/bin
433 for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/test-*
435 make_valgrind_symlink $file
436 done
437 # special-case the mergetools loadables
438 make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools"
439 OLDIFS=$IFS
440 IFS=:
441 for path in $PATH
443 ls "$path"/git-* 2> /dev/null |
444 while read file
446 make_valgrind_symlink "$file"
447 done
448 done
449 IFS=$OLDIFS
450 PATH=$GIT_VALGRIND/bin:$PATH
451 GIT_EXEC_PATH=$GIT_VALGRIND/bin
452 export GIT_VALGRIND
453 elif test -n "$GIT_TEST_INSTALLED" ; then
454 GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path) ||
455 error "Cannot run git from $GIT_TEST_INSTALLED."
456 PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR:$PATH
457 GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}
458 else # normal case, use ../bin-wrappers only unless $with_dashes:
459 git_bin_dir="$GIT_BUILD_DIR/bin-wrappers"
460 if ! test -x "$git_bin_dir/git" ; then
461 if test -z "$with_dashes" ; then
462 say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"
464 with_dashes=t
466 PATH="$git_bin_dir:$PATH"
467 GIT_EXEC_PATH=$GIT_BUILD_DIR
468 if test -n "$with_dashes" ; then
469 PATH="$GIT_BUILD_DIR:$PATH"
472 GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt
473 unset GIT_CONFIG
474 GIT_CONFIG_NOSYSTEM=1
475 GIT_ATTR_NOSYSTEM=1
476 export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM
478 . "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS
480 if test -z "$GIT_TEST_CMP"
481 then
482 if test -n "$GIT_TEST_CMP_USE_COPIED_CONTEXT"
483 then
484 GIT_TEST_CMP="$DIFF -c"
485 else
486 GIT_TEST_CMP="$DIFF -u"
490 GITPERLLIB="$GIT_BUILD_DIR"/perl/blib/lib:"$GIT_BUILD_DIR"/perl/blib/arch/auto/Git
491 export GITPERLLIB
492 test -d "$GIT_BUILD_DIR"/templates/blt || {
493 error "You haven't built things yet, have you?"
496 if test -z "$GIT_TEST_INSTALLED" && test -z "$NO_PYTHON"
497 then
498 GITPYTHONLIB="$GIT_BUILD_DIR/git_remote_helpers/build/lib"
499 export GITPYTHONLIB
500 test -d "$GIT_BUILD_DIR"/git_remote_helpers/build || {
501 error "You haven't built git_remote_helpers yet, have you?"
505 if ! test -x "$GIT_BUILD_DIR"/test-chmtime; then
506 echo >&2 'You need to build test-chmtime:'
507 echo >&2 'Run "make test-chmtime" in the source (toplevel) directory'
508 exit 1
511 # Test repository
512 test="trash directory.$(basename "$0" .sh)"
513 test -n "$root" && test="$root/$test"
514 case "$test" in
515 /*) TRASH_DIRECTORY="$test" ;;
516 *) TRASH_DIRECTORY="$TEST_DIRECTORY/$test" ;;
517 esac
518 test ! -z "$debug" || remove_trash=$TRASH_DIRECTORY
519 rm -fr "$test" || {
520 GIT_EXIT_OK=t
521 echo >&5 "FATAL: Cannot prepare test area"
522 exit 1
525 HOME="$TRASH_DIRECTORY"
526 export HOME
528 test_create_repo "$test"
529 # Use -P to resolve symlinks in our working directory so that the cwd
530 # in subprocesses like git equals our $PWD (for pathname comparisons).
531 cd -P "$test" || exit 1
533 this_test=${0##*/}
534 this_test=${this_test%%-*}
535 for skp in $GIT_SKIP_TESTS
537 case "$this_test" in
538 $skp)
539 say_color skip >&3 "skipping test $this_test altogether"
540 skip_all="skip all tests in $this_test"
541 test_done
542 esac
543 done
545 # Provide an implementation of the 'yes' utility
546 yes () {
547 if test $# = 0
548 then
550 else
551 y="$*"
554 while echo "$y"
557 done
560 # Fix some commands on Windows
561 case $(uname -s) in
562 *MINGW*)
563 # Windows has its own (incompatible) sort and find
564 sort () {
565 /usr/bin/sort "$@"
567 find () {
568 /usr/bin/find "$@"
570 sum () {
571 md5sum "$@"
573 # git sees Windows-style pwd
574 pwd () {
575 builtin pwd -W
577 # no POSIX permissions
578 # backslashes in pathspec are converted to '/'
579 # exec does not inherit the PID
580 test_set_prereq MINGW
581 test_set_prereq SED_STRIPS_CR
583 *CYGWIN*)
584 test_set_prereq POSIXPERM
585 test_set_prereq EXECKEEPSPID
586 test_set_prereq NOT_MINGW
587 test_set_prereq SED_STRIPS_CR
590 test_set_prereq POSIXPERM
591 test_set_prereq BSLASHPSPEC
592 test_set_prereq EXECKEEPSPID
593 test_set_prereq NOT_MINGW
595 esac
597 test -z "$NO_PERL" && test_set_prereq PERL
598 test -z "$NO_PYTHON" && test_set_prereq PYTHON
599 test -n "$USE_LIBPCRE" && test_set_prereq LIBPCRE
600 test -z "$NO_GETTEXT" && test_set_prereq GETTEXT
602 # Can we rely on git's output in the C locale?
603 if test -n "$GETTEXT_POISON"
604 then
605 GIT_GETTEXT_POISON=YesPlease
606 export GIT_GETTEXT_POISON
607 test_set_prereq GETTEXT_POISON
608 else
609 test_set_prereq C_LOCALE_OUTPUT
612 # Use this instead of test_cmp to compare files that contain expected and
613 # actual output from git commands that can be translated. When running
614 # under GETTEXT_POISON this pretends that the command produced expected
615 # results.
616 test_i18ncmp () {
617 test -n "$GETTEXT_POISON" || test_cmp "$@"
620 # Use this instead of "grep expected-string actual" to see if the
621 # output from a git command that can be translated either contains an
622 # expected string, or does not contain an unwanted one. When running
623 # under GETTEXT_POISON this pretends that the command produced expected
624 # results.
625 test_i18ngrep () {
626 if test -n "$GETTEXT_POISON"
627 then
628 : # pretend success
629 elif test "x!" = "x$1"
630 then
631 shift
632 ! grep "$@"
633 else
634 grep "$@"
638 # test whether the filesystem supports symbolic links
639 ln -s x y 2>/dev/null && test -h y 2>/dev/null && test_set_prereq SYMLINKS
640 rm -f y
642 # When the tests are run as root, permission tests will report that
643 # things are writable when they shouldn't be.
644 test -w / || test_set_prereq SANITY