3 # Copyright (c) 2005 Junio C Hamano
6 # Keep the original TERM for say_color
9 # For repeatability, reset the environment to known value.
15 export LANG LC_ALL PAGER TERM TZ
22 unset COMMIT_AUTHOR_EMAIL
23 unset COMMIT_AUTHOR_NAME
25 unset GIT_ALTERNATE_OBJECT_DIRECTORIES
27 GIT_AUTHOR_EMAIL
=author@example.com
28 GIT_AUTHOR_NAME
='A U Thor'
29 unset GIT_COMMITTER_DATE
30 GIT_COMMITTER_EMAIL
=committer@example.com
31 GIT_COMMITTER_NAME
='C O Mitter'
35 unset GIT_EXTERNAL_DIFF
37 unset GIT_OBJECT_DIRECTORY
38 unset SHA1_FILE_DIRECTORIES
39 unset SHA1_FILE_DIRECTORY
41 export GIT_MERGE_VERBOSITY
42 export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
43 export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
45 GIT_TEST_CMP
=${GIT_TEST_CMP:-diff -u}
47 # Protect ourselves from common misconfiguration to export
48 # CDPATH into the environment
51 case $
(echo $GIT_TRACE |
tr "[A-Z]" "[a-z]") in
53 echo "* warning: Some tests will not work if GIT_TRACE" \
54 "is set as to trace on STDERR ! *"
55 echo "* warning: Please set GIT_TRACE to something" \
56 "other than 1, 2 or true ! *"
60 # Each test should start with something like this, after copyright notices:
62 # test_description='Description of this test...
63 # This test checks if command xyzzy does the right thing...
66 [ "x$ORIGINAL_TERM" != "xdumb" ] && (
67 TERM
=$ORIGINAL_TERM &&
70 tput bold
>/dev
/null
2>&1 &&
71 tput setaf
1 >/dev
/null
2>&1 &&
72 tput sgr0
>/dev
/null
2>&1
79 -d|
--d|
--de|
--deb|
--debu|
--debug)
81 -i|
--i|
--im|
--imm|
--imme|
--immed|
--immedi|
--immedia|
--immediat|
--immediate)
83 -l|
--l|
--lo|
--lon|
--long|
--long-|
--long-t|
--long-te|
--long-tes|
--long-test|
--long-tests)
84 export GIT_TEST_LONG
=t
; shift ;;
85 -h|
--h|
--he|
--hel|
--help)
87 -v|
--v|
--ve|
--ver|
--verb|
--verbo|
--verbos|
--verbose)
89 -q|
--q|
--qu|
--qui|
--quie|
--quiet)
101 if test -n "$color"; then
107 error
) tput bold
; tput setaf
1;; # bold red
108 skip
) tput bold
; tput setaf
2;; # bold green
109 pass
) tput setaf
2;; # green
110 info
) tput setaf
3;; # brown
111 *) test -n "$quiet" && return;;
120 test -z "$1" && test -n "$quiet" && return
127 say_color error
"error: $*"
136 test "${test_description}" != "" ||
137 error
"Test script did not set test_description."
139 if test "$help" = "t"
141 echo "$test_description"
146 if test "$verbose" = "t"
150 exec 4>/dev
/null
3>/dev
/null
160 echo >&5 "FATAL: Unexpected exit with code $?"
166 # The semantics of the editor variables are that of invoking
167 # sh -c "$EDITOR \"$@\"" files ...
169 # If our trash directory contains shell metacharacters, they will be
170 # interpreted if we just set $EDITOR directly, so do a little dance with
171 # environment variables to work around this.
173 # In particular, quoting isn't enough, as the path may contain the same quote
178 VISUAL
='"$FAKE_EDITOR"'
183 if test -z "${test_tick+set}"
187 test_tick
=$
(($test_tick + 60))
189 GIT_COMMITTER_DATE
="$test_tick -0700"
190 GIT_AUTHOR_DATE
="$test_tick -0700"
191 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
194 # You are not expected to call test_ok_ and test_failure_ directly, use
195 # the text_expect_* functions instead.
198 test_count
=$
(expr "$test_count" + 1)
199 test_success
=$
(expr "$test_success" + 1)
200 say_color
"" " ok $test_count: $@"
204 test_count
=$
(expr "$test_count" + 1)
205 test_failure
=$
(expr "$test_failure" + 1);
206 say_color error
"FAIL $test_count: $1"
208 echo "$@" |
sed -e 's/^/ /'
209 test "$immediate" = "" ||
{ trap - exit; exit 1; }
212 test_known_broken_ok_
() {
213 test_count
=$
(expr "$test_count" + 1)
214 test_fixed
=$
(($test_fixed+1))
215 say_color
"" " FIXED $test_count: $@"
218 test_known_broken_failure_
() {
219 test_count
=$
(expr "$test_count" + 1)
220 test_broken
=$
(($test_broken+1))
221 say_color skip
" still broken $test_count: $@"
225 test "$debug" = "" ||
eval "$1"
235 this_test
=$
(expr "./$0" : '.*/\(t[0-9]*\)-[^/]*$')
236 this_test
="$this_test.$(expr "$test_count" + 1)"
238 for skp
in $GIT_SKIP_TESTS
247 say_color skip
>&3 "skipping test: $@"
248 test_count
=$
(expr "$test_count" + 1)
249 say_color skip
"skip $test_count: $1"
258 test_expect_failure
() {
260 error
"bug in the test script: not 2 parameters to test-expect-failure"
263 say
>&3 "checking known breakage: $2"
265 if [ "$?" = 0 -a "$eval_ret" = 0 ]
267 test_known_broken_ok_
"$1"
269 test_known_broken_failure_
"$1"
275 test_expect_success
() {
277 error
"bug in the test script: not 2 parameters to test-expect-success"
280 say
>&3 "expecting success: $2"
282 if [ "$?" = 0 -a "$eval_ret" = 0 ]
292 test_expect_code
() {
294 error
"bug in the test script: not 3 parameters to test-expect-code"
297 say
>&3 "expecting exit code $1: $3"
299 if [ "$?" = 0 -a "$eval_ret" = "$1" ]
309 # test_external runs external test scripts that provide continuous
310 # test output about their progress, and succeeds/fails on
311 # zero/non-zero exit code. It outputs the test output on stdout even
312 # in non-verbose mode, and announces the external script with "* run
313 # <n>: ..." before running it. When providing relative paths, keep in
314 # mind that all scripts run in "trash directory".
315 # Usage: test_external description command arguments...
316 # Example: test_external 'Perl API' perl ../path/to/test.pl
319 error
>&5 "bug in the test script: not 3 parameters to test_external"
322 if ! test_skip
"$descr" "$@"
324 # Announce the script to reduce confusion about the
325 # test output that follows.
326 say_color
"" " run $(expr "$test_count" + 1): $descr ($*)"
327 # Run command; redirect its stderr to &4 as in
328 # test_run_, but keep its stdout on our stdout even in
335 test_failure_
"$descr" "$@"
340 # Like test_external, but in addition tests that the command generated
341 # no output on stderr.
342 test_external_without_stderr
() {
343 # The temporary file has no (and must have no) security
345 tmp
="$TMPDIR"; if [ -z "$tmp" ]; then tmp
=/tmp
; fi
346 stderr
="$tmp/git-external-stderr.$$.tmp"
347 test_external
"$@" 4> "$stderr"
348 [ -f "$stderr" ] || error
"Internal error: $stderr disappeared."
349 descr
="no stderr: $1"
351 say
>&3 "expecting no stderr from previous command"
352 if [ ! -s "$stderr" ]; then
356 if [ "$verbose" = t
]; then
357 output
=`echo; echo Stderr is:; cat "$stderr"`
361 # rm first in case test_failure exits.
363 test_failure_
"$descr" "$@" "$output"
367 # This is not among top-level (test_expect_success | test_expect_failure)
368 # but is a prefix that can be used in the test script, like:
370 # test_expect_success 'complain and die' '
372 # do something else &&
373 # test_must_fail git checkout ../outerspace
376 # Writing this as "! git checkout ../outerspace" is wrong, because
377 # the failure could be due to a segv. We want a controlled failure.
381 test $?
-gt 0 -a $?
-le 129
384 # test_cmp is a helper function to compare actual and expected output.
385 # You can use it like:
387 # test_expect_success 'foo works' '
388 # echo expected >expected &&
390 # test_cmp expected actual
393 # This could be written as either "cmp" or "diff -u", but:
394 # - cmp's output is not nearly as easy to read as diff -u
395 # - not all diff versions understand "-u"
401 # Most tests can use the created repository, but some may need to create more.
402 # Usage: test_create_repo <directory>
403 test_create_repo
() {
405 error
"bug in the test script: not 1 parameter to test-create-repo"
409 cd "$repo" || error
"Cannot setup test environment"
410 "$GIT_EXEC_PATH/git" init
"--template=$GIT_EXEC_PATH/templates/blt/" >&3 2>&4 ||
411 error
"cannot run git init -- have you built things yet?"
412 mv .git
/hooks .git
/hooks-disabled
418 test_results_dir
="$TEST_DIRECTORY/test-results"
419 mkdir
-p "$test_results_dir"
420 test_results_path
="$test_results_dir/${0%-*}-$$"
422 echo "total $test_count" >> $test_results_path
423 echo "success $test_success" >> $test_results_path
424 echo "fixed $test_fixed" >> $test_results_path
425 echo "broken $test_broken" >> $test_results_path
426 echo "failed $test_failure" >> $test_results_path
427 echo "" >> $test_results_path
429 if test "$test_fixed" != 0
431 say_color pass
"fixed $test_fixed known breakage(s)"
433 if test "$test_broken" != 0
435 say_color error
"still have $test_broken known breakage(s)"
436 msg
="remaining $(($test_count-$test_broken)) test(s)"
438 msg
="$test_count test(s)"
440 case "$test_failure" in
443 # cd .. && rm -fr 'trash directory'
444 # but that means we forbid any tests that use their own
445 # subdirectory from calling test_done without coming back
446 # to where they started from.
447 # The Makefile provided will clean this test area so
448 # we will leave things as they are.
450 say_color pass
"passed all $msg"
454 say_color error
"failed $test_failure among $msg"
460 # Test the binaries we have just built. The tests are kept in
461 # t/ subdirectory and are run in 'trash directory' subdirectory.
462 TEST_DIRECTORY
=$
(pwd)
463 PATH
=$TEST_DIRECTORY/..
:$PATH
464 GIT_EXEC_PATH
=$
(pwd)/..
465 GIT_TEMPLATE_DIR
=$
(pwd)/..
/templates
/blt
467 unset GIT_CONFIG_LOCAL
468 GIT_CONFIG_NOSYSTEM
=1
469 GIT_CONFIG_NOGLOBAL
=1
470 export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_CONFIG_NOGLOBAL
472 GITPERLLIB
=$
(pwd)/..
/perl
/blib
/lib
:$
(pwd)/..
/perl
/blib
/arch
/auto
/Git
474 test -d ..
/templates
/blt ||
{
475 error
"You haven't built things yet, have you?"
478 if ! test -x ..
/test-chmtime
; then
479 echo >&2 'You need to build test-chmtime:'
480 echo >&2 'Run "make test-chmtime" in the source (toplevel) directory'
484 . ..
/GIT-BUILD-OPTIONS
487 test="trash directory"
490 echo >&5 "FATAL: Cannot prepare test area"
494 test_create_repo
"$test"
495 # Use -P to resolve symlinks in our working directory so that the cwd
496 # in subprocesses like git equals our $PWD (for pathname comparisons).
497 cd -P "$test" ||
exit 1
499 this_test
=$
(expr "./$0" : '.*/\(t[0-9]*\)-[^/]*$')
500 for skp
in $GIT_SKIP_TESTS
503 for skp
in $GIT_SKIP_TESTS
512 say_color skip
>&3 "skipping test $this_test altogether"
513 say_color skip
"skip all tests in $this_test"