0e9ac9118d96ec6a901a7c66c87e65a5179f60b1
   1# Test framework for git.  See t/README for usage.
   2#
   3# Copyright (c) 2005 Junio C Hamano
   4#
   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/ .
  17
  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)
  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
  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
  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).
  44: ${ASAN_OPTIONS=detect_leaks=0:abort_on_error=1}
  45export ASAN_OPTIONS
  46
  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
  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
  60################################################################
  61# It appears that people try to run tests without building...
  62"${GIT_TEST_INSTALLED:-$GIT_BUILD_DIR}/git$X" >/dev/null
  63if test $? != 1
  64then
  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
  71        exit 1
  72fi
  73
  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 ;;
 114        --no-color)
 115                color= ;;
 116        --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind)
 117                valgrind=memcheck
 118                tee=t
 119                ;;
 120        --valgrind=*)
 121                valgrind=${opt#--*=}
 122                tee=t
 123                ;;
 124        --valgrind-only=*)
 125                valgrind_only=${opt#--*=}
 126                tee=t
 127                ;;
 128        --tee)
 129                tee=t ;;
 130        --root=*)
 131                root=${opt#--*=} ;;
 132        --chain-lint)
 133                GIT_TEST_CHAIN_LINT=1 ;;
 134        --no-chain-lint)
 135                GIT_TEST_CHAIN_LINT=0 ;;
 136        -x)
 137                trace=t ;;
 138        -V|--verbose-log)
 139                verbose_log=t
 140                tee=t
 141                ;;
 142        *)
 143                echo "error: unknown test option '$opt'" >&2; exit 1 ;;
 144        esac
 145
 146        prev_opt=$opt
 147done
 148if test -n "$store_arg_to"
 149then
 150        echo "error: $prev_opt requires an argument" >&2
 151        exit 1
 152fi
 153
 154if test -n "$valgrind_only"
 155then
 156        test -z "$valgrind" && valgrind=memcheck
 157        test -z "$verbose" && verbose_only="$valgrind_only"
 158elif test -n "$valgrind"
 159then
 160        test -z "$verbose_log" && verbose=t
 161fi
 162
 163TEST_NAME="$(basename "$0" .sh)"
 164TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results"
 165TEST_RESULTS_BASE="$TEST_RESULTS_DIR/$TEST_NAME"
 166TRASH_DIRECTORY="trash directory.$TEST_NAME"
 167test -n "$root" && TRASH_DIRECTORY="$root/$TRASH_DIRECTORY"
 168case "$TRASH_DIRECTORY" in
 169/*) ;; # absolute path is good
 170 *) TRASH_DIRECTORY="$TEST_OUTPUT_DIRECTORY/$TRASH_DIRECTORY" ;;
 171esac
 172
 173# if --tee was passed, write the output not only to the terminal, but
 174# additionally to the file test-results/$BASENAME.out, too.
 175if test "$GIT_TEST_TEE_STARTED" = "done"
 176then
 177        : # do not redirect again
 178elif test -n "$tee"
 179then
 180        mkdir -p "$TEST_RESULTS_DIR"
 181
 182        # Make this filename available to the sub-process in case it is using
 183        # --verbose-log.
 184        GIT_TEST_TEE_OUTPUT_FILE=$TEST_RESULTS_BASE.out
 185        export GIT_TEST_TEE_OUTPUT_FILE
 186
 187        # Truncate before calling "tee -a" to get rid of the results
 188        # from any previous runs.
 189        >"$GIT_TEST_TEE_OUTPUT_FILE"
 190
 191        (GIT_TEST_TEE_STARTED=done ${TEST_SHELL_PATH} "$0" "$@" 2>&1;
 192         echo $? >"$TEST_RESULTS_BASE.exit") | tee -a "$GIT_TEST_TEE_OUTPUT_FILE"
 193        test "$(cat "$TEST_RESULTS_BASE.exit")" = 0
 194        exit
 195fi
 196
 197if test -n "$trace" && test -n "$test_untraceable"
 198then
 199        # '-x' tracing requested, but this test script can't be reliably
 200        # traced, unless it is run with a Bash version supporting
 201        # BASH_XTRACEFD (introduced in Bash v4.1).
 202        #
 203        # Perform this version check _after_ the test script was
 204        # potentially re-executed with $TEST_SHELL_PATH for '--tee' or
 205        # '--verbose-log', so the right shell is checked and the
 206        # warning is issued only once.
 207        if test -n "$BASH_VERSION" && eval '
 208             test ${BASH_VERSINFO[0]} -gt 4 || {
 209               test ${BASH_VERSINFO[0]} -eq 4 &&
 210               test ${BASH_VERSINFO[1]} -ge 1
 211             }
 212           '
 213        then
 214                : Executed by a Bash version supporting BASH_XTRACEFD.  Good.
 215        else
 216                echo >&2 "warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD"
 217                trace=
 218        fi
 219fi
 220if test -n "$trace" && test -z "$verbose_log"
 221then
 222        verbose=t
 223fi
 224
 225# For repeatability, reset the environment to known value.
 226# TERM is sanitized below, after saving color control sequences.
 227LANG=C
 228LC_ALL=C
 229PAGER=cat
 230TZ=UTC
 231export LANG LC_ALL PAGER TZ
 232EDITOR=:
 233
 234# GIT_TEST_GETTEXT_POISON should not influence git commands executed
 235# during initialization of test-lib and the test repo. Back it up,
 236# unset and then restore after initialization is finished.
 237if test -n "$GIT_TEST_GETTEXT_POISON"
 238then
 239        GIT_TEST_GETTEXT_POISON_ORIG=$GIT_TEST_GETTEXT_POISON
 240        unset GIT_TEST_GETTEXT_POISON
 241fi
 242
 243# A call to "unset" with no arguments causes at least Solaris 10
 244# /usr/xpg4/bin/sh and /bin/ksh to bail out.  So keep the unsets
 245# deriving from the command substitution clustered with the other
 246# ones.
 247unset VISUAL EMAIL LANGUAGE COLUMNS $("$PERL_PATH" -e '
 248        my @env = keys %ENV;
 249        my $ok = join("|", qw(
 250                TRACE
 251                DEBUG
 252                TEST
 253                .*_TEST
 254                PROVE
 255                VALGRIND
 256                UNZIP
 257                PERF_
 258                CURL_VERBOSE
 259                TRACE_CURL
 260        ));
 261        my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env);
 262        print join("\n", @vars);
 263')
 264unset XDG_CACHE_HOME
 265unset XDG_CONFIG_HOME
 266unset GITPERLLIB
 267GIT_AUTHOR_EMAIL=author@example.com
 268GIT_AUTHOR_NAME='A U Thor'
 269GIT_COMMITTER_EMAIL=committer@example.com
 270GIT_COMMITTER_NAME='C O Mitter'
 271GIT_MERGE_VERBOSITY=5
 272GIT_MERGE_AUTOEDIT=no
 273export GIT_MERGE_VERBOSITY GIT_MERGE_AUTOEDIT
 274export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
 275export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
 276export EDITOR
 277
 278# Tests using GIT_TRACE typically don't want <timestamp> <file>:<line> output
 279GIT_TRACE_BARE=1
 280export GIT_TRACE_BARE
 281
 282check_var_migration () {
 283        # the warnings and hints given from this helper depends
 284        # on end-user settings, which will disrupt the self-test
 285        # done on the test framework itself.
 286        case "$GIT_TEST_FRAMEWORK_SELFTEST" in
 287        t)      return ;;
 288        esac
 289
 290        old_name=$1 new_name=$2
 291        eval "old_isset=\${${old_name}:+isset}"
 292        eval "new_isset=\${${new_name}:+isset}"
 293
 294        case "$old_isset,$new_isset" in
 295        isset,)
 296                echo >&2 "warning: $old_name is now $new_name"
 297                echo >&2 "hint: set $new_name too during the transition period"
 298                eval "$new_name=\$$old_name"
 299                ;;
 300        isset,isset)
 301                # do this later
 302                # echo >&2 "warning: $old_name is now $new_name"
 303                # echo >&2 "hint: remove $old_name"
 304                ;;
 305        esac
 306}
 307
 308check_var_migration GIT_FSMONITOR_TEST GIT_TEST_FSMONITOR
 309check_var_migration TEST_GIT_INDEX_VERSION GIT_TEST_INDEX_VERSION
 310check_var_migration GIT_FORCE_PRELOAD_TEST GIT_TEST_PRELOAD_INDEX
 311
 312# Use specific version of the index file format
 313if test -n "${GIT_TEST_INDEX_VERSION:+isset}"
 314then
 315        GIT_INDEX_VERSION="$GIT_TEST_INDEX_VERSION"
 316        export GIT_INDEX_VERSION
 317fi
 318
 319# Add libc MALLOC and MALLOC_PERTURB test
 320# only if we are not executing the test with valgrind
 321if test -n "$valgrind" ||
 322   test -n "$TEST_NO_MALLOC_CHECK"
 323then
 324        setup_malloc_check () {
 325                : nothing
 326        }
 327        teardown_malloc_check () {
 328                : nothing
 329        }
 330else
 331        setup_malloc_check () {
 332                MALLOC_CHECK_=3 MALLOC_PERTURB_=165
 333                export MALLOC_CHECK_ MALLOC_PERTURB_
 334        }
 335        teardown_malloc_check () {
 336                unset MALLOC_CHECK_ MALLOC_PERTURB_
 337        }
 338fi
 339
 340# Protect ourselves from common misconfiguration to export
 341# CDPATH into the environment
 342unset CDPATH
 343
 344unset GREP_OPTIONS
 345unset UNZIP
 346
 347case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in
 3481|2|true)
 349        GIT_TRACE=4
 350        ;;
 351esac
 352
 353# Convenience
 354#
 355# A regexp to match 5, 35 and 40 hexdigits
 356_x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
 357_x35="$_x05$_x05$_x05$_x05$_x05$_x05$_x05"
 358_x40="$_x35$_x05"
 359
 360# Zero SHA-1
 361_z40=0000000000000000000000000000000000000000
 362
 363OID_REGEX="$_x40"
 364ZERO_OID=$_z40
 365EMPTY_TREE=4b825dc642cb6eb9a060e54bf8d69288fbee4904
 366EMPTY_BLOB=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
 367
 368# Line feed
 369LF='
 370'
 371
 372# UTF-8 ZERO WIDTH NON-JOINER, which HFS+ ignores
 373# when case-folding filenames
 374u200c=$(printf '\342\200\214')
 375
 376export _x05 _x35 _x40 _z40 LF u200c EMPTY_TREE EMPTY_BLOB ZERO_OID OID_REGEX
 377
 378# Each test should start with something like this, after copyright notices:
 379#
 380# test_description='Description of this test...
 381# This test checks if command xyzzy does the right thing...
 382# '
 383# . ./test-lib.sh
 384test "x$TERM" != "xdumb" && (
 385                test -t 1 &&
 386                tput bold >/dev/null 2>&1 &&
 387                tput setaf 1 >/dev/null 2>&1 &&
 388                tput sgr0 >/dev/null 2>&1
 389        ) &&
 390        color=t
 391
 392if test -n "$color"
 393then
 394        # Save the color control sequences now rather than run tput
 395        # each time say_color() is called.  This is done for two
 396        # reasons:
 397        #   * TERM will be changed to dumb
 398        #   * HOME will be changed to a temporary directory and tput
 399        #     might need to read ~/.terminfo from the original HOME
 400        #     directory to get the control sequences
 401        # Note:  This approach assumes the control sequences don't end
 402        # in a newline for any terminal of interest (command
 403        # substitutions strip trailing newlines).  Given that most
 404        # (all?) terminals in common use are related to ECMA-48, this
 405        # shouldn't be a problem.
 406        say_color_error=$(tput bold; tput setaf 1) # bold red
 407        say_color_skip=$(tput setaf 4) # blue
 408        say_color_warn=$(tput setaf 3) # brown/yellow
 409        say_color_pass=$(tput setaf 2) # green
 410        say_color_info=$(tput setaf 6) # cyan
 411        say_color_reset=$(tput sgr0)
 412        say_color_="" # no formatting for normal text
 413        say_color () {
 414                test -z "$1" && test -n "$quiet" && return
 415                eval "say_color_color=\$say_color_$1"
 416                shift
 417                printf "%s\\n" "$say_color_color$*$say_color_reset"
 418        }
 419else
 420        say_color() {
 421                test -z "$1" && test -n "$quiet" && return
 422                shift
 423                printf "%s\n" "$*"
 424        }
 425fi
 426
 427TERM=dumb
 428export TERM
 429
 430error () {
 431        say_color error "error: $*"
 432        GIT_EXIT_OK=t
 433        exit 1
 434}
 435
 436BUG () {
 437        error >&7 "bug in the test script: $*"
 438}
 439
 440say () {
 441        say_color info "$*"
 442}
 443
 444if test -n "$HARNESS_ACTIVE"
 445then
 446        if test "$verbose" = t || test -n "$verbose_only"
 447        then
 448                printf 'Bail out! %s\n' \
 449                 'verbose mode forbidden under TAP harness; try --verbose-log'
 450                exit 1
 451        fi
 452fi
 453
 454test "${test_description}" != "" ||
 455error "Test script did not set test_description."
 456
 457if test "$help" = "t"
 458then
 459        printf '%s\n' "$test_description"
 460        exit 0
 461fi
 462
 463exec 5>&1
 464exec 6<&0
 465exec 7>&2
 466if test "$verbose_log" = "t"
 467then
 468        exec 3>>"$GIT_TEST_TEE_OUTPUT_FILE" 4>&3
 469elif test "$verbose" = "t"
 470then
 471        exec 4>&2 3>&1
 472else
 473        exec 4>/dev/null 3>/dev/null
 474fi
 475
 476# Send any "-x" output directly to stderr to avoid polluting tests
 477# which capture stderr. We can do this unconditionally since it
 478# has no effect if tracing isn't turned on.
 479#
 480# Note that this sets up the trace fd as soon as we assign the variable, so it
 481# must come after the creation of descriptor 4 above. Likewise, we must never
 482# unset this, as it has the side effect of closing descriptor 4, which we
 483# use to show verbose tests to the user.
 484#
 485# Note also that we don't need or want to export it. The tracing is local to
 486# this shell, and we would not want to influence any shells we exec.
 487BASH_XTRACEFD=4
 488
 489test_failure=0
 490test_count=0
 491test_fixed=0
 492test_broken=0
 493test_success=0
 494
 495test_external_has_tap=0
 496
 497die () {
 498        code=$?
 499        if test -n "$GIT_EXIT_OK"
 500        then
 501                exit $code
 502        else
 503                echo >&5 "FATAL: Unexpected exit with code $code"
 504                exit 1
 505        fi
 506}
 507
 508GIT_EXIT_OK=
 509trap 'die' EXIT
 510trap 'exit $?' INT TERM HUP
 511
 512# The user-facing functions are loaded from a separate file so that
 513# test_perf subshells can have them too
 514. "$TEST_DIRECTORY/test-lib-functions.sh"
 515
 516# You are not expected to call test_ok_ and test_failure_ directly, use
 517# the test_expect_* functions instead.
 518
 519test_ok_ () {
 520        test_success=$(($test_success + 1))
 521        say_color "" "ok $test_count - $@"
 522}
 523
 524test_failure_ () {
 525        test_failure=$(($test_failure + 1))
 526        say_color error "not ok $test_count - $1"
 527        shift
 528        printf '%s\n' "$*" | sed -e 's/^/#      /'
 529        test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; }
 530}
 531
 532test_known_broken_ok_ () {
 533        test_fixed=$(($test_fixed+1))
 534        say_color error "ok $test_count - $@ # TODO known breakage vanished"
 535}
 536
 537test_known_broken_failure_ () {
 538        test_broken=$(($test_broken+1))
 539        say_color warn "not ok $test_count - $@ # TODO known breakage"
 540}
 541
 542test_debug () {
 543        test "$debug" = "" || eval "$1"
 544}
 545
 546match_pattern_list () {
 547        arg="$1"
 548        shift
 549        test -z "$*" && return 1
 550        for pattern_
 551        do
 552                case "$arg" in
 553                $pattern_)
 554                        return 0
 555                esac
 556        done
 557        return 1
 558}
 559
 560match_test_selector_list () {
 561        title="$1"
 562        shift
 563        arg="$1"
 564        shift
 565        test -z "$1" && return 0
 566
 567        # Both commas and whitespace are accepted as separators.
 568        OLDIFS=$IFS
 569        IFS='   ,'
 570        set -- $1
 571        IFS=$OLDIFS
 572
 573        # If the first selector is negative we include by default.
 574        include=
 575        case "$1" in
 576                !*) include=t ;;
 577        esac
 578
 579        for selector
 580        do
 581                orig_selector=$selector
 582
 583                positive=t
 584                case "$selector" in
 585                        !*)
 586                                positive=
 587                                selector=${selector##?}
 588                                ;;
 589                esac
 590
 591                test -z "$selector" && continue
 592
 593                case "$selector" in
 594                        *-*)
 595                                if expr "z${selector%%-*}" : "z[0-9]*[^0-9]" >/dev/null
 596                                then
 597                                        echo "error: $title: invalid non-numeric in range" \
 598                                                "start: '$orig_selector'" >&2
 599                                        exit 1
 600                                fi
 601                                if expr "z${selector#*-}" : "z[0-9]*[^0-9]" >/dev/null
 602                                then
 603                                        echo "error: $title: invalid non-numeric in range" \
 604                                                "end: '$orig_selector'" >&2
 605                                        exit 1
 606                                fi
 607                                ;;
 608                        *)
 609                                if expr "z$selector" : "z[0-9]*[^0-9]" >/dev/null
 610                                then
 611                                        echo "error: $title: invalid non-numeric in test" \
 612                                                "selector: '$orig_selector'" >&2
 613                                        exit 1
 614                                fi
 615                esac
 616
 617                # Short cut for "obvious" cases
 618                test -z "$include" && test -z "$positive" && continue
 619                test -n "$include" && test -n "$positive" && continue
 620
 621                case "$selector" in
 622                        -*)
 623                                if test $arg -le ${selector#-}
 624                                then
 625                                        include=$positive
 626                                fi
 627                                ;;
 628                        *-)
 629                                if test $arg -ge ${selector%-}
 630                                then
 631                                        include=$positive
 632                                fi
 633                                ;;
 634                        *-*)
 635                                if test ${selector%%-*} -le $arg \
 636                                        && test $arg -le ${selector#*-}
 637                                then
 638                                        include=$positive
 639                                fi
 640                                ;;
 641                        *)
 642                                if test $arg -eq $selector
 643                                then
 644                                        include=$positive
 645                                fi
 646                                ;;
 647                esac
 648        done
 649
 650        test -n "$include"
 651}
 652
 653maybe_teardown_verbose () {
 654        test -z "$verbose_only" && return
 655        exec 4>/dev/null 3>/dev/null
 656        verbose=
 657}
 658
 659last_verbose=t
 660maybe_setup_verbose () {
 661        test -z "$verbose_only" && return
 662        if match_pattern_list $test_count $verbose_only
 663        then
 664                exec 4>&2 3>&1
 665                # Emit a delimiting blank line when going from
 666                # non-verbose to verbose.  Within verbose mode the
 667                # delimiter is printed by test_expect_*.  The choice
 668                # of the initial $last_verbose is such that before
 669                # test 1, we do not print it.
 670                test -z "$last_verbose" && echo >&3 ""
 671                verbose=t
 672        else
 673                exec 4>/dev/null 3>/dev/null
 674                verbose=
 675        fi
 676        last_verbose=$verbose
 677}
 678
 679maybe_teardown_valgrind () {
 680        test -z "$GIT_VALGRIND" && return
 681        GIT_VALGRIND_ENABLED=
 682}
 683
 684maybe_setup_valgrind () {
 685        test -z "$GIT_VALGRIND" && return
 686        if test -z "$valgrind_only"
 687        then
 688                GIT_VALGRIND_ENABLED=t
 689                return
 690        fi
 691        GIT_VALGRIND_ENABLED=
 692        if match_pattern_list $test_count $valgrind_only
 693        then
 694                GIT_VALGRIND_ENABLED=t
 695        fi
 696}
 697
 698want_trace () {
 699        test "$trace" = t && {
 700                test "$verbose" = t || test "$verbose_log" = t
 701        }
 702}
 703
 704# This is a separate function because some tests use
 705# "return" to end a test_expect_success block early
 706# (and we want to make sure we run any cleanup like
 707# "set +x").
 708test_eval_inner_ () {
 709        # Do not add anything extra (including LF) after '$*'
 710        eval "
 711                want_trace && set -x
 712                $*"
 713}
 714
 715test_eval_ () {
 716        # If "-x" tracing is in effect, then we want to avoid polluting stderr
 717        # with non-test commands. But once in "set -x" mode, we cannot prevent
 718        # the shell from printing the "set +x" to turn it off (nor the saving
 719        # of $? before that). But we can make sure that the output goes to
 720        # /dev/null.
 721        #
 722        # There are a few subtleties here:
 723        #
 724        #   - we have to redirect descriptor 4 in addition to 2, to cover
 725        #     BASH_XTRACEFD
 726        #
 727        #   - the actual eval has to come before the redirection block (since
 728        #     it needs to see descriptor 4 to set up its stderr)
 729        #
 730        #   - likewise, any error message we print must be outside the block to
 731        #     access descriptor 4
 732        #
 733        #   - checking $? has to come immediately after the eval, but it must
 734        #     be _inside_ the block to avoid polluting the "set -x" output
 735        #
 736
 737        test_eval_inner_ "$@" </dev/null >&3 2>&4
 738        {
 739                test_eval_ret_=$?
 740                if want_trace
 741                then
 742                        set +x
 743                fi
 744        } 2>/dev/null 4>&2
 745
 746        if test "$test_eval_ret_" != 0 && want_trace
 747        then
 748                say_color error >&4 "error: last command exited with \$?=$test_eval_ret_"
 749        fi
 750        return $test_eval_ret_
 751}
 752
 753test_run_ () {
 754        test_cleanup=:
 755        expecting_failure=$2
 756
 757        if test "${GIT_TEST_CHAIN_LINT:-1}" != 0; then
 758                # turn off tracing for this test-eval, as it simply creates
 759                # confusing noise in the "-x" output
 760                trace_tmp=$trace
 761                trace=
 762                # 117 is magic because it is unlikely to match the exit
 763                # code of other programs
 764                if $(printf '%s\n' "$1" | sed -f "$GIT_BUILD_DIR/t/chainlint.sed" | grep -q '?![A-Z][A-Z]*?!') ||
 765                        test "OK-117" != "$(test_eval_ "(exit 117) && $1${LF}${LF}echo OK-\$?" 3>&1)"
 766                then
 767                        BUG "broken &&-chain or run-away HERE-DOC: $1"
 768                fi
 769                trace=$trace_tmp
 770        fi
 771
 772        setup_malloc_check
 773        test_eval_ "$1"
 774        eval_ret=$?
 775        teardown_malloc_check
 776
 777        if test -z "$immediate" || test $eval_ret = 0 ||
 778           test -n "$expecting_failure" && test "$test_cleanup" != ":"
 779        then
 780                setup_malloc_check
 781                test_eval_ "$test_cleanup"
 782                teardown_malloc_check
 783        fi
 784        if test "$verbose" = "t" && test -n "$HARNESS_ACTIVE"
 785        then
 786                echo ""
 787        fi
 788        return "$eval_ret"
 789}
 790
 791test_start_ () {
 792        test_count=$(($test_count+1))
 793        maybe_setup_verbose
 794        maybe_setup_valgrind
 795}
 796
 797test_finish_ () {
 798        echo >&3 ""
 799        maybe_teardown_valgrind
 800        maybe_teardown_verbose
 801}
 802
 803test_skip () {
 804        to_skip=
 805        skipped_reason=
 806        if match_pattern_list $this_test.$test_count $GIT_SKIP_TESTS
 807        then
 808                to_skip=t
 809                skipped_reason="GIT_SKIP_TESTS"
 810        fi
 811        if test -z "$to_skip" && test -n "$test_prereq" &&
 812           ! test_have_prereq "$test_prereq"
 813        then
 814                to_skip=t
 815
 816                of_prereq=
 817                if test "$missing_prereq" != "$test_prereq"
 818                then
 819                        of_prereq=" of $test_prereq"
 820                fi
 821                skipped_reason="missing $missing_prereq${of_prereq}"
 822        fi
 823        if test -z "$to_skip" && test -n "$run_list" &&
 824                ! match_test_selector_list '--run' $test_count "$run_list"
 825        then
 826                to_skip=t
 827                skipped_reason="--run"
 828        fi
 829
 830        case "$to_skip" in
 831        t)
 832                say_color skip >&3 "skipping test: $@"
 833                say_color skip "ok $test_count # skip $1 ($skipped_reason)"
 834                : true
 835                ;;
 836        *)
 837                false
 838                ;;
 839        esac
 840}
 841
 842# stub; perf-lib overrides it
 843test_at_end_hook_ () {
 844        :
 845}
 846
 847test_done () {
 848        GIT_EXIT_OK=t
 849
 850        if test -z "$HARNESS_ACTIVE"
 851        then
 852                mkdir -p "$TEST_RESULTS_DIR"
 853
 854                cat >"$TEST_RESULTS_BASE.counts" <<-EOF
 855                total $test_count
 856                success $test_success
 857                fixed $test_fixed
 858                broken $test_broken
 859                failed $test_failure
 860
 861                EOF
 862        fi
 863
 864        if test "$test_fixed" != 0
 865        then
 866                say_color error "# $test_fixed known breakage(s) vanished; please update test(s)"
 867        fi
 868        if test "$test_broken" != 0
 869        then
 870                say_color warn "# still have $test_broken known breakage(s)"
 871        fi
 872        if test "$test_broken" != 0 || test "$test_fixed" != 0
 873        then
 874                test_remaining=$(( $test_count - $test_broken - $test_fixed ))
 875                msg="remaining $test_remaining test(s)"
 876        else
 877                test_remaining=$test_count
 878                msg="$test_count test(s)"
 879        fi
 880        case "$test_failure" in
 881        0)
 882                if test $test_external_has_tap -eq 0
 883                then
 884                        if test $test_remaining -gt 0
 885                        then
 886                                say_color pass "# passed all $msg"
 887                        fi
 888
 889                        # Maybe print SKIP message
 890                        test -z "$skip_all" || skip_all="# SKIP $skip_all"
 891                        case "$test_count" in
 892                        0)
 893                                say "1..$test_count${skip_all:+ $skip_all}"
 894                                ;;
 895                        *)
 896                                test -z "$skip_all" ||
 897                                say_color warn "$skip_all"
 898                                say "1..$test_count"
 899                                ;;
 900                        esac
 901                fi
 902
 903                if test -z "$debug"
 904                then
 905                        test -d "$TRASH_DIRECTORY" ||
 906                        error "Tests passed but trash directory already removed before test cleanup; aborting"
 907
 908                        cd "$TRASH_DIRECTORY/.." &&
 909                        rm -fr "$TRASH_DIRECTORY" ||
 910                        error "Tests passed but test cleanup failed; aborting"
 911                fi
 912                test_at_end_hook_
 913
 914                exit 0 ;;
 915
 916        *)
 917                if test $test_external_has_tap -eq 0
 918                then
 919                        say_color error "# failed $test_failure among $msg"
 920                        say "1..$test_count"
 921                fi
 922
 923                exit 1 ;;
 924
 925        esac
 926}
 927
 928if test -n "$valgrind"
 929then
 930        make_symlink () {
 931                test -h "$2" &&
 932                test "$1" = "$(readlink "$2")" || {
 933                        # be super paranoid
 934                        if mkdir "$2".lock
 935                        then
 936                                rm -f "$2" &&
 937                                ln -s "$1" "$2" &&
 938                                rm -r "$2".lock
 939                        else
 940                                while test -d "$2".lock
 941                                do
 942                                        say "Waiting for lock on $2."
 943                                        sleep 1
 944                                done
 945                        fi
 946                }
 947        }
 948
 949        make_valgrind_symlink () {
 950                # handle only executables, unless they are shell libraries that
 951                # need to be in the exec-path.
 952                test -x "$1" ||
 953                test "# " = "$(test_copy_bytes 2 <"$1")" ||
 954                return;
 955
 956                base=$(basename "$1")
 957                case "$base" in
 958                test-*)
 959                        symlink_target="$GIT_BUILD_DIR/t/helper/$base"
 960                        ;;
 961                *)
 962                        symlink_target="$GIT_BUILD_DIR/$base"
 963                        ;;
 964                esac
 965                # do not override scripts
 966                if test -x "$symlink_target" &&
 967                    test ! -d "$symlink_target" &&
 968                    test "#!" != "$(test_copy_bytes 2 <"$symlink_target")"
 969                then
 970                        symlink_target=../valgrind.sh
 971                fi
 972                case "$base" in
 973                *.sh|*.perl)
 974                        symlink_target=../unprocessed-script
 975                esac
 976                # create the link, or replace it if it is out of date
 977                make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit
 978        }
 979
 980        # override all git executables in TEST_DIRECTORY/..
 981        GIT_VALGRIND=$TEST_DIRECTORY/valgrind
 982        mkdir -p "$GIT_VALGRIND"/bin
 983        for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*
 984        do
 985                make_valgrind_symlink $file
 986        done
 987        # special-case the mergetools loadables
 988        make_symlink "$GIT_BUILD_DIR"/mergetools "$GIT_VALGRIND/bin/mergetools"
 989        OLDIFS=$IFS
 990        IFS=:
 991        for path in $PATH
 992        do
 993                ls "$path"/git-* 2> /dev/null |
 994                while read file
 995                do
 996                        make_valgrind_symlink "$file"
 997                done
 998        done
 999        IFS=$OLDIFS
1000        PATH=$GIT_VALGRIND/bin:$PATH
1001        GIT_EXEC_PATH=$GIT_VALGRIND/bin
1002        export GIT_VALGRIND
1003        GIT_VALGRIND_MODE="$valgrind"
1004        export GIT_VALGRIND_MODE
1005        GIT_VALGRIND_ENABLED=t
1006        test -n "$valgrind_only" && GIT_VALGRIND_ENABLED=
1007        export GIT_VALGRIND_ENABLED
1008elif test -n "$GIT_TEST_INSTALLED"
1009then
1010        GIT_EXEC_PATH=$($GIT_TEST_INSTALLED/git --exec-path)  ||
1011        error "Cannot run git from $GIT_TEST_INSTALLED."
1012        PATH=$GIT_TEST_INSTALLED:$GIT_BUILD_DIR/t/helper:$PATH
1013        GIT_EXEC_PATH=${GIT_TEST_EXEC_PATH:-$GIT_EXEC_PATH}
1014else # normal case, use ../bin-wrappers only unless $with_dashes:
1015        git_bin_dir="$GIT_BUILD_DIR/bin-wrappers"
1016        if ! test -x "$git_bin_dir/git"
1017        then
1018                if test -z "$with_dashes"
1019                then
1020                        say "$git_bin_dir/git is not executable; using GIT_EXEC_PATH"
1021                fi
1022                with_dashes=t
1023        fi
1024        PATH="$git_bin_dir:$PATH"
1025        GIT_EXEC_PATH=$GIT_BUILD_DIR
1026        if test -n "$with_dashes"
1027        then
1028                PATH="$GIT_BUILD_DIR:$PATH"
1029        fi
1030fi
1031GIT_TEMPLATE_DIR="$GIT_BUILD_DIR"/templates/blt
1032GIT_CONFIG_NOSYSTEM=1
1033GIT_ATTR_NOSYSTEM=1
1034export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR GIT_CONFIG_NOSYSTEM GIT_ATTR_NOSYSTEM
1035
1036if test -z "$GIT_TEST_CMP"
1037then
1038        if test -n "$GIT_TEST_CMP_USE_COPIED_CONTEXT"
1039        then
1040                GIT_TEST_CMP="$DIFF -c"
1041        else
1042                GIT_TEST_CMP="$DIFF -u"
1043        fi
1044fi
1045
1046GITPERLLIB="$GIT_BUILD_DIR"/perl/build/lib
1047export GITPERLLIB
1048test -d "$GIT_BUILD_DIR"/templates/blt || {
1049        error "You haven't built things yet, have you?"
1050}
1051
1052if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool
1053then
1054        echo >&2 'You need to build test-tool:'
1055        echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'
1056        exit 1
1057fi
1058
1059# Test repository
1060rm -fr "$TRASH_DIRECTORY" || {
1061        GIT_EXIT_OK=t
1062        echo >&5 "FATAL: Cannot prepare test area"
1063        exit 1
1064}
1065
1066HOME="$TRASH_DIRECTORY"
1067GNUPGHOME="$HOME/gnupg-home-not-used"
1068export HOME GNUPGHOME
1069
1070if test -z "$TEST_NO_CREATE_REPO"
1071then
1072        test_create_repo "$TRASH_DIRECTORY"
1073else
1074        mkdir -p "$TRASH_DIRECTORY"
1075fi
1076# Use -P to resolve symlinks in our working directory so that the cwd
1077# in subprocesses like git equals our $PWD (for pathname comparisons).
1078cd -P "$TRASH_DIRECTORY" || exit 1
1079
1080this_test=${0##*/}
1081this_test=${this_test%%-*}
1082if match_pattern_list "$this_test" $GIT_SKIP_TESTS
1083then
1084        say_color info >&3 "skipping test $this_test altogether"
1085        skip_all="skip all tests in $this_test"
1086        test_done
1087fi
1088
1089# Provide an implementation of the 'yes' utility
1090yes () {
1091        if test $# = 0
1092        then
1093                y=y
1094        else
1095                y="$*"
1096        fi
1097
1098        i=0
1099        while test $i -lt 99
1100        do
1101                echo "$y"
1102                i=$(($i+1))
1103        done
1104}
1105
1106# Fix some commands on Windows
1107uname_s=$(uname -s)
1108case $uname_s in
1109*MINGW*)
1110        # Windows has its own (incompatible) sort and find
1111        sort () {
1112                /usr/bin/sort "$@"
1113        }
1114        find () {
1115                /usr/bin/find "$@"
1116        }
1117        # git sees Windows-style pwd
1118        pwd () {
1119                builtin pwd -W
1120        }
1121        # no POSIX permissions
1122        # backslashes in pathspec are converted to '/'
1123        # exec does not inherit the PID
1124        test_set_prereq MINGW
1125        test_set_prereq NATIVE_CRLF
1126        test_set_prereq SED_STRIPS_CR
1127        test_set_prereq GREP_STRIPS_CR
1128        GIT_TEST_CMP=mingw_test_cmp
1129        ;;
1130*CYGWIN*)
1131        test_set_prereq POSIXPERM
1132        test_set_prereq EXECKEEPSPID
1133        test_set_prereq CYGWIN
1134        test_set_prereq SED_STRIPS_CR
1135        test_set_prereq GREP_STRIPS_CR
1136        ;;
1137*)
1138        test_set_prereq POSIXPERM
1139        test_set_prereq BSLASHPSPEC
1140        test_set_prereq EXECKEEPSPID
1141        ;;
1142esac
1143
1144( COLUMNS=1 && test $COLUMNS = 1 ) && test_set_prereq COLUMNS_CAN_BE_1
1145test -z "$NO_PERL" && test_set_prereq PERL
1146test -z "$NO_PTHREADS" && test_set_prereq PTHREADS
1147test -z "$NO_PYTHON" && test_set_prereq PYTHON
1148test -n "$USE_LIBPCRE1$USE_LIBPCRE2" && test_set_prereq PCRE
1149test -n "$USE_LIBPCRE1" && test_set_prereq LIBPCRE1
1150test -n "$USE_LIBPCRE2" && test_set_prereq LIBPCRE2
1151test -z "$NO_GETTEXT" && test_set_prereq GETTEXT
1152
1153if test -n "$GIT_TEST_GETTEXT_POISON_ORIG"
1154then
1155        GIT_TEST_GETTEXT_POISON=$GIT_TEST_GETTEXT_POISON_ORIG
1156        unset GIT_TEST_GETTEXT_POISON_ORIG
1157fi
1158
1159# Can we rely on git's output in the C locale?
1160if test -z "$GIT_TEST_GETTEXT_POISON"
1161then
1162        test_set_prereq C_LOCALE_OUTPUT
1163fi
1164
1165if test -z "$GIT_TEST_CHECK_CACHE_TREE"
1166then
1167        GIT_TEST_CHECK_CACHE_TREE=true
1168        export GIT_TEST_CHECK_CACHE_TREE
1169fi
1170
1171test_lazy_prereq PIPE '
1172        # test whether the filesystem supports FIFOs
1173        test_have_prereq !MINGW,!CYGWIN &&
1174        rm -f testfifo && mkfifo testfifo
1175'
1176
1177test_lazy_prereq SYMLINKS '
1178        # test whether the filesystem supports symbolic links
1179        ln -s x y && test -h y
1180'
1181
1182test_lazy_prereq FILEMODE '
1183        test "$(git config --bool core.filemode)" = true
1184'
1185
1186test_lazy_prereq CASE_INSENSITIVE_FS '
1187        echo good >CamelCase &&
1188        echo bad >camelcase &&
1189        test "$(cat CamelCase)" != good
1190'
1191
1192test_lazy_prereq FUNNYNAMES '
1193        test_have_prereq !MINGW &&
1194        touch -- \
1195                "FUNNYNAMES tab embedded" \
1196                "FUNNYNAMES \"quote embedded\"" \
1197                "FUNNYNAMES newline
1198embedded" 2>/dev/null &&
1199        rm -- \
1200                "FUNNYNAMES tab embedded" \
1201                "FUNNYNAMES \"quote embedded\"" \
1202                "FUNNYNAMES newline
1203embedded" 2>/dev/null
1204'
1205
1206test_lazy_prereq UTF8_NFD_TO_NFC '
1207        # check whether FS converts nfd unicode to nfc
1208        auml=$(printf "\303\244")
1209        aumlcdiar=$(printf "\141\314\210")
1210        >"$auml" &&
1211        test -f "$aumlcdiar"
1212'
1213
1214test_lazy_prereq AUTOIDENT '
1215        sane_unset GIT_AUTHOR_NAME &&
1216        sane_unset GIT_AUTHOR_EMAIL &&
1217        git var GIT_AUTHOR_IDENT
1218'
1219
1220test_lazy_prereq EXPENSIVE '
1221        test -n "$GIT_TEST_LONG"
1222'
1223
1224test_lazy_prereq EXPENSIVE_ON_WINDOWS '
1225        test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN
1226'
1227
1228test_lazy_prereq USR_BIN_TIME '
1229        test -x /usr/bin/time
1230'
1231
1232test_lazy_prereq NOT_ROOT '
1233        uid=$(id -u) &&
1234        test "$uid" != 0
1235'
1236
1237test_lazy_prereq JGIT '
1238        type jgit
1239'
1240
1241# SANITY is about "can you correctly predict what the filesystem would
1242# do by only looking at the permission bits of the files and
1243# directories?"  A typical example of !SANITY is running the test
1244# suite as root, where a test may expect "chmod -r file && cat file"
1245# to fail because file is supposed to be unreadable after a successful
1246# chmod.  In an environment (i.e. combination of what filesystem is
1247# being used and who is running the tests) that lacks SANITY, you may
1248# be able to delete or create a file when the containing directory
1249# doesn't have write permissions, or access a file even if the
1250# containing directory doesn't have read or execute permissions.
1251
1252test_lazy_prereq SANITY '
1253        mkdir SANETESTD.1 SANETESTD.2 &&
1254
1255        chmod +w SANETESTD.1 SANETESTD.2 &&
1256        >SANETESTD.1/x 2>SANETESTD.2/x &&
1257        chmod -w SANETESTD.1 &&
1258        chmod -r SANETESTD.1/x &&
1259        chmod -rx SANETESTD.2 ||
1260        BUG "cannot prepare SANETESTD"
1261
1262        ! test -r SANETESTD.1/x &&
1263        ! rm SANETESTD.1/x && ! test -f SANETESTD.2/x
1264        status=$?
1265
1266        chmod +rwx SANETESTD.1 SANETESTD.2 &&
1267        rm -rf SANETESTD.1 SANETESTD.2 ||
1268        BUG "cannot clean SANETESTD"
1269        return $status
1270'
1271
1272test FreeBSD != $uname_s || GIT_UNZIP=${GIT_UNZIP:-/usr/local/bin/unzip}
1273GIT_UNZIP=${GIT_UNZIP:-unzip}
1274test_lazy_prereq UNZIP '
1275        "$GIT_UNZIP" -v
1276        test $? -ne 127
1277'
1278
1279run_with_limited_cmdline () {
1280        (ulimit -s 128 && "$@")
1281}
1282
1283test_lazy_prereq CMDLINE_LIMIT '
1284        test_have_prereq !MINGW,!CYGWIN &&
1285        run_with_limited_cmdline true
1286'
1287
1288run_with_limited_stack () {
1289        (ulimit -s 128 && "$@")
1290}
1291
1292test_lazy_prereq ULIMIT_STACK_SIZE '
1293        test_have_prereq !MINGW,!CYGWIN &&
1294        run_with_limited_stack true
1295'
1296
1297build_option () {
1298        git version --build-options |
1299        sed -ne "s/^$1: //p"
1300}
1301
1302test_lazy_prereq LONG_IS_64BIT '
1303        test 8 -le "$(build_option sizeof-long)"
1304'
1305
1306test_lazy_prereq TIME_IS_64BIT 'test-tool date is64bit'
1307test_lazy_prereq TIME_T_IS_64BIT 'test-tool date time_t-is64bit'
1308
1309test_lazy_prereq CURL '
1310        curl --version
1311'
1312
1313# SHA1 is a test if the hash algorithm in use is SHA-1.  This is both for tests
1314# which will not work with other hash algorithms and tests that work but don't
1315# test anything meaningful (e.g. special values which cause short collisions).
1316test_lazy_prereq SHA1 '
1317        test $(git hash-object /dev/null) = e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
1318'
1319
1320test_lazy_prereq REBASE_P '
1321        test -z "$GIT_TEST_SKIP_REBASE_P"
1322'