1 # Library of functions shared by all tests scripts, included by
4 # Copyright (c) 2005 Junio C Hamano
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see http://www.gnu.org/licenses/ .
19 # The semantics of the editor variables are that of invoking
20 # sh -c "$EDITOR \"$@\"" files ...
22 # If our trash directory contains shell metacharacters, they will be
23 # interpreted if we just set $EDITOR directly, so do a little dance with
24 # environment variables to work around this.
26 # In particular, quoting isn't enough, as the path may contain the same quote
31 EDITOR
='"$FAKE_EDITOR"'
35 test_decode_color
() {
38 if (n == 0) return "RESET";
39 if (n == 1) return "BOLD";
40 if (n == 2) return "FAINT";
41 if (n == 3) return "ITALIC";
42 if (n == 7) return "REVERSE";
43 if (n == 30) return "BLACK";
44 if (n == 31) return "RED";
45 if (n == 32) return "GREEN";
46 if (n == 33) return "YELLOW";
47 if (n == 34) return "BLUE";
48 if (n == 35) return "MAGENTA";
49 if (n == 36) return "CYAN";
50 if (n == 37) return "WHITE";
51 if (n == 40) return "BLACK";
52 if (n == 41) return "BRED";
53 if (n == 42) return "BGREEN";
54 if (n == 43) return "BYELLOW";
55 if (n == 44) return "BBLUE";
56 if (n == 45) return "BMAGENTA";
57 if (n == 46) return "BCYAN";
58 if (n == 47) return "BWHITE";
61 while (match($0, /\033\[[0-9;]*m/) != 0) {
62 printf "%s<", substr($0, 1, RSTART-1);
63 codes = substr($0, RSTART+2, RLENGTH-3);
64 if (length(codes) == 0)
67 n = split(codes, ary, ";");
69 for (i = 1; i <= n; i++) {
70 printf "%s%s", sep, name(ary[i]);
75 $0 = substr($0, RSTART + RLENGTH, length($0) - RSTART - RLENGTH + 1);
83 perl
-pe 'y/\012/\000/'
107 sed -e 's/$/Q/' |
tr Q
'\015'
111 tr '\015' Q |
sed -e 's/Q$//'
114 # In some bourne shell implementations, the "unset" builtin returns
115 # nonzero status when a variable to be unset was not set in the first
118 # Use sane_unset when that should not be considered an error.
126 if test -z "${test_tick+set}"
130 test_tick
=$
(($test_tick + 60))
132 GIT_COMMITTER_DATE
="$test_tick -0700"
133 GIT_AUTHOR_DATE
="$test_tick -0700"
134 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
137 # Stop execution and start a shell. This is useful for debugging tests.
139 # Be sure to remove all invocations of this command before submitting.
140 # WARNING: the shell invoked by this helper does not have the same environment
141 # as the one running the tests (shell variables and functions are not
142 # available, and the options below further modify the environment). As such,
143 # commands copied from a test script might behave differently than when
146 # Usage: test_pause [options]
148 # Use your original TERM instead of test-lib.sh's "dumb".
149 # This usually restores color output in the invoked shell.
151 # Invoke $SHELL instead of $TEST_SHELL_PATH.
153 # Use your original HOME instead of test-lib.sh's "$TRASH_DIRECTORY".
154 # This allows you to use your regular shell environment and Git aliases.
155 # CAUTION: running commands copied from a test script into the paused shell
156 # might result in files in your HOME being overwritten.
158 # Shortcut for -t -s -h
162 PAUSE_SHELL
=$TEST_SHELL_PATH &&
168 PAUSE_TERM
="$USER_TERM"
174 PAUSE_HOME
="$USER_HOME"
177 PAUSE_TERM
="$USER_TERM"
179 PAUSE_HOME
="$USER_HOME"
187 TERM
="$PAUSE_TERM" HOME
="$PAUSE_HOME" "$PAUSE_SHELL" <&6 >&5 2>&7
190 # Wrap git with a debugger. Adding this to a command can make it easier
191 # to understand what is going on in a failing test.
193 # Usage: debug [options] <git command>
195 # --debugger=<debugger>
196 # Use <debugger> instead of GDB
198 # Use your original TERM instead of test-lib.sh's "dumb".
199 # This usually restores color output in the debugger.
200 # WARNING: the command being debugged might behave differently than when
204 # debug git checkout master
205 # debug --debugger=nemiver git $ARGS
206 # debug -d "valgrind --tool=memcheck --track-origins=yes" git $ARGS
214 DEBUG_TERM
="$USER_TERM"
221 GIT_DEBUGGER
="${1#*=}"
230 dotfiles
=".gdbinit .lldbinit"
232 for dotfile
in $dotfiles
234 dotfile
="$USER_HOME/$dotfile" &&
235 test -f "$dotfile" && cp "$dotfile" "$HOME" ||
:
238 TERM
="$DEBUG_TERM" GIT_DEBUGGER
="${GIT_DEBUGGER}" "$@" <&6 >&5 2>&7 &&
240 for dotfile
in $dotfiles
242 rm -f "$HOME/$dotfile"
246 # Usage: test_commit [options] <message> [<file> [<contents> [<tag>]]]
248 # Run all git commands in directory <dir>
250 # Do not call test_tick before making a commit
252 # Use ">>" instead of ">" when writing "<contents>" to "<file>"
254 # Use "printf" instead of "echo" when writing "<contents>" to
255 # "<file>", use this to write escape sequences such as "\0", a
256 # trailing "\n" won't be added automatically. This option
257 # supports nothing but the FORMAT of printf(1), i.e. no custom
260 # Invoke "git commit" with --signoff
262 # Invoke "git commit" with --author <author>
264 # Do not tag the resulting commit
266 # Create an annotated tag with "--annotate -m <message>". Calls
267 # test_tick between making the commit and tag, unless --notick
270 # This will commit a file with the given contents and the given commit
271 # message, and tag the resulting commit with the given tag name.
273 # <file>, <contents>, and <tag> all default to <message>.
304 GIT_COMMITTER_DATE
="$2"
324 indir
=${indir:+"$indir"/} &&
325 local file=${2:-"$1.t"} &&
328 $echo "${3-$1}" >>"$indir$file"
330 $echo "${3-$1}" >"$indir$file"
332 git
${indir:+ -C "$indir"} add
-- "$file" &&
337 git
${indir:+ -C "$indir"} commit \
338 ${author:+ --author "$author"} \
344 git
${indir:+ -C "$indir"} tag
"${4:-$1}"
351 git
${indir:+ -C "$indir"} tag
-a -m "$1" "${4:-$1}"
356 # Call test_merge with the arguments "<message> <commit>", where <commit>
357 # can be a tag pointing to the commit-to-merge.
363 git merge
-m "$label" "$@" &&
367 # Efficiently create <nr> commits, each with a unique number (from 1 to <nr>
368 # by default) in the commit message.
370 # Usage: test_commit_bulk [options] <nr>
372 # Run all git commands in directory <dir>
374 # ref on which to create commits (default: HEAD)
376 # number commit messages from <n> (default: 1)
378 # use <msg> as the commit mesasge (default: "commit %s")
380 # modify <fn> in each commit (default: %s.t)
381 # --contents=<string>:
382 # place <string> in each file (default: "content %s")
384 # shorthand to use <string> and %s in message, filename, and contents
386 # The message, filename, and contents strings are evaluated by printf, with the
387 # first "%s" replaced by the current commit number. So you can do:
389 # test_commit_bulk --filename=file --contents="modification %s"
391 # to have every commit touch the same file, but with unique content.
393 test_commit_bulk
() {
394 tmpfile
=.bulk-commit.input
400 contents
='content %s'
424 message
="${1#--*=} %s"
425 filename
="${1#--*=}-%s.t"
426 contents
="${1#--*=} %s"
429 BUG
"invalid test_commit_bulk option: $1"
440 if git
-C "$indir" rev-parse
--quiet --verify "$ref"
445 while test "$total" -gt 0
449 printf 'author %s <%s> %s\n' \
451 "$GIT_AUTHOR_EMAIL" \
453 printf 'committer %s <%s> %s\n' \
454 "$GIT_COMMITTER_NAME" \
455 "$GIT_COMMITTER_EMAIL" \
456 "$GIT_COMMITTER_DATE"
458 printf "$message\n" $n
460 if test -n "$add_from"
465 printf "M
644 inline
$filename\n" $n
467 printf "$contents\n" $n
475 -c fastimport.unpacklimit=0 \
476 fast-import <"$tmpfile" || return 1
478 # This will be left in place on failure, which may aid debugging.
481 # If we updated HEAD, then be nice and update the index and working
483 if test "$ref" = "HEAD
"
485 git -C "$indir" checkout -f HEAD || return 1
490 # This function helps systems where core.filemode=false is set.
491 # Use it instead of plain 'chmod +x' to set or unset the executable bit
492 # of a file in the working directory and add it to the index.
496 git update-index --add "--chmod=$@
"
499 # Get the modebits from a file or directory, ignoring the setgid bit (g+s).
500 # This bit is inherited by subdirectories at their creation. So we remove it
501 # from the returning string to prevent callers from having to worry about the
502 # state of the bit in the test directory.
505 ls -ld "$1" | sed -e 's|^\(..........\).*|\1|' \
506 -e 's|^\(......\)S|\1-|' -e 's|^\(......\)s|\1x|'
509 # Unset a configuration variable, but don't fail if it doesn't exist.
518 git ${config_dir:+-C "$config_dir"} config --unset-all "$@
"
520 case "$config_status" in
521 5) # ok, nothing to unset
525 return $config_status
528 # Set git config, automatically unsetting it after the test is over.
537 test_when_finished "test_unconfig
${config_dir:+-C '$config_dir'} '$1'" &&
538 git ${config_dir:+-C "$config_dir"} config "$@
"
541 test_config_global () {
542 test_when_finished "test_unconfig
--global '$1'" &&
543 git config --global "$@
"
548 echo "#!${2-"$SHELL_PATH"}" &&
554 # Usage: test_hook [options] <hook-name> <<-\EOF
557 # Run all git commands in directory <dir>
559 # Setup a hook for subsequent tests, i.e. don't remove it in a
560 # "test_when_finished"
562 # Overwrite an existing <hook-name>, if it exists. Implies
563 # --setup (i.e. the "test_when_finished" is assumed to have been
566 # Disable (chmod -x) an existing <hook-name>, which must exist.
568 # Remove (rm -f) an existing <hook-name>, which must exist.
595 BUG
"invalid argument: $1"
604 git_dir
=$
(git
-C "$indir" rev-parse
--absolute-git-dir) &&
605 hook_dir
="$git_dir/hooks" &&
606 hook_file
="$hook_dir/$1" &&
607 if test -n "$disable$remove"
609 test_path_is_file
"$hook_file" &&
610 if test -n "$disable"
612 chmod -x "$hook_file"
613 elif test -n "$remove"
619 if test -z "$clobber"
621 test_path_is_missing
"$hook_file"
623 if test -z "$setup$clobber"
625 test_when_finished
"rm \"$hook_file\""
627 write_script
"$hook_file"
630 # Use test_set_prereq to tell that a particular prerequisite is available.
631 # The prerequisite can later be checked for in two ways:
633 # - Explicitly using test_have_prereq.
635 # - Implicitly by specifying the prerequisite tag in the calls to
636 # test_expect_{success,failure}
638 # The single parameter is the prerequisite tag (a simple word, in all
639 # capital letters by convention).
641 test_unset_prereq
() {
642 ! test_have_prereq
"$1" ||
643 satisfied_prereq
="${satisfied_prereq% $1 *} ${satisfied_prereq#* $1 }"
647 if test -n "$GIT_TEST_FAIL_PREREQS_INTERNAL"
650 # The "!" case is handled below with
651 # test_unset_prereq()
654 # List of things we can't easily pretend to not support
657 # Inspecting whether GIT_TEST_FAIL_PREREQS is on
658 # should be unaffected.
668 test_unset_prereq
"${1#!}"
671 satisfied_prereq
="$satisfied_prereq$1 "
676 lazily_testable_prereq
= lazily_tested_prereq
=
678 # Usage: test_lazy_prereq PREREQ 'script'
679 test_lazy_prereq
() {
680 lazily_testable_prereq
="$lazily_testable_prereq$1 "
681 eval test_prereq_lazily_
$1=\
$2
684 test_run_lazy_prereq_
() {
686 mkdir -p "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&
688 cd "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&'"$2"'
690 say
>&3 "checking prerequisite: $1"
694 rm -rf "$TRASH_DIRECTORY/prereq-test-dir-$1"
695 if test "$eval_ret" = 0; then
696 say
>&3 "prerequisite $1 ok"
698 say
>&3 "prerequisite $1 not satisfied"
703 test_have_prereq
() {
704 # prerequisites can be concatenated with ','
716 case "$prerequisite" in
719 prerequisite
=${prerequisite#!}
725 case " $lazily_tested_prereq " in
729 case " $lazily_testable_prereq " in
731 eval "script=\$test_prereq_lazily_$prerequisite" &&
732 if test_run_lazy_prereq_
"$prerequisite" "$script"
734 test_set_prereq
$prerequisite
736 lazily_tested_prereq
="$lazily_tested_prereq$prerequisite "
741 total_prereq
=$
(($total_prereq + 1))
742 case "$satisfied_prereq" in
744 satisfied_this_prereq
=t
747 satisfied_this_prereq
=
750 case "$satisfied_this_prereq,$negative_prereq" in
752 ok_prereq
=$
(($ok_prereq + 1))
755 # Keep a list of missing prerequisites; restore
756 # the negative marker if necessary.
757 prerequisite
=${negative_prereq:+!}$prerequisite
759 # Abort if this prereq was marked as required
760 if test -n "$GIT_TEST_REQUIRE_PREREQ"
762 case " $GIT_TEST_REQUIRE_PREREQ " in
764 BAIL_OUT
"required prereq $prerequisite failed"
769 if test -z "$missing_prereq"
771 missing_prereq
=$prerequisite
773 missing_prereq
="$prerequisite,$missing_prereq"
778 test $total_prereq = $ok_prereq
781 test_declared_prereq
() {
782 case ",$test_prereq," in
790 test_verify_prereq
() {
791 test -z "$test_prereq" ||
792 expr >/dev
/null
"$test_prereq" : '[A-Z0-9_,!]*$' ||
793 BUG
"'$test_prereq' does not look like a prereq"
796 test_expect_failure
() {
798 test "$#" = 3 && { test_prereq
=$1; shift; } || test_prereq
=
800 BUG
"not 2 or 3 parameters to test-expect-failure"
805 test -n "$test_skip_test_preamble" ||
806 say
>&3 "checking known breakage of $TEST_NUMBER.$test_count '$1': $2"
807 if test_run_
"$2" expecting_failure
809 test_known_broken_ok_
"$1"
811 test_known_broken_failure_
"$1"
817 test_expect_success
() {
819 test "$#" = 3 && { test_prereq
=$1; shift; } || test_prereq
=
821 BUG
"not 2 or 3 parameters to test-expect-success"
826 test -n "$test_skip_test_preamble" ||
827 say
>&3 "expecting success of $TEST_NUMBER.$test_count '$1': $2"
838 # debugging-friendly alternatives to "test [-f|-d|-e]"
839 # The commands test the existence or non-existence of $1
840 test_path_is_file
() {
841 test "$#" -ne 1 && BUG
"1 param"
844 echo "File $1 doesn't exist"
849 test_path_is_file_not_symlink
() {
850 test "$#" -ne 1 && BUG
"1 param"
851 test_path_is_file
"$1" &&
854 echo "$1 shouldn't be a symbolic link"
859 test_path_is_dir
() {
860 test "$#" -ne 1 && BUG
"1 param"
863 echo "Directory $1 doesn't exist"
868 test_path_is_dir_not_symlink
() {
869 test "$#" -ne 1 && BUG
"1 param"
870 test_path_is_dir
"$1" &&
873 echo "$1 shouldn't be a symbolic link"
878 test_path_exists
() {
879 test "$#" -ne 1 && BUG
"1 param"
882 echo "Path $1 doesn't exist"
887 test_path_is_symlink
() {
888 test "$#" -ne 1 && BUG
"1 param"
891 echo "Symbolic link $1 doesn't exist"
896 # Check if the directory exists and is empty as expected, barf otherwise.
897 test_dir_is_empty
() {
898 test "$#" -ne 1 && BUG
"1 param"
899 test_path_is_dir
"$1" &&
900 if test -n "$(ls -a1 "$1" | grep -E -v '^\.\.?$')"
902 echo "Directory '$1' is not empty, it contains:"
908 # Check if the file exists and has a size greater than zero
909 test_file_not_empty
() {
910 test "$#" = 2 && BUG
"2 param"
913 echo "'$1' is not a non-empty file."
918 test_path_is_missing
() {
919 test "$#" -ne 1 && BUG
"1 param"
928 # test_line_count checks that a file has the number of lines it
929 # ought to. For example:
931 # test_expect_success 'produce exactly one line of output' '
932 # do something >output &&
933 # test_line_count = 1 output
936 # is like "test $(wc -l <output) = 1" except that it passes the
937 # output through when the number of lines is wrong.
942 BUG
"not 3 parameters to test_line_count"
943 elif ! test $
(wc -l <"$3") "$1" "$2"
945 echo "test_line_count: line count for $3 !$1 $2"
952 # test_stdout_line_count <bin-ops> <value> <cmd> [<args>...]
954 # test_stdout_line_count checks that the output of a command has the number
955 # of lines it ought to. For example:
957 # test_stdout_line_count = 3 git ls-files -u
958 # test_stdout_line_count -gt 10 ls
959 test_stdout_line_count
() {
960 local ops val trashdir
&&
963 BUG
"expect 3 or more arguments"
968 if ! trashdir
="$(git rev-parse --git-dir)/trash"; then
969 BUG
"expect to be run inside a worktree"
971 mkdir
-p "$trashdir" &&
972 "$@" >"$trashdir/output" &&
973 test_line_count
"$ops" "$val" "$trashdir/output"
978 test "$#" -ne 1 && BUG
"1 param"
979 test-tool path-utils file-size
"$1"
982 # Returns success if a comma separated string of keywords ($1) contains a
983 # given keyword ($2).
985 # `list_contains "foo,bar" bar` returns 0
986 # `list_contains "foo" bar` returns 1
997 # Returns success if the arguments indicate that a command should be
998 # accepted by test_must_fail(). If the command is run with env, the env
999 # and its corresponding variable settings will be stripped before we
1000 # test the command being run.
1001 test_must_fail_acceptable
() {
1002 if test "$1" = "env"
1019 git|__git
*|test-tool|test_terminal
)
1028 # This is not among top-level (test_expect_success | test_expect_failure)
1029 # but is a prefix that can be used in the test script, like:
1031 # test_expect_success 'complain and die' '
1033 # do something else &&
1034 # test_must_fail git checkout ../outerspace
1037 # Writing this as "! git checkout ../outerspace" is wrong, because
1038 # the failure could be due to a segv. We want a controlled failure.
1040 # Accepts the following options:
1042 # ok=<signal-name>[,<...>]:
1043 # Don't treat an exit caused by the given signal as error.
1044 # Multiple signals can be specified as a comma separated list.
1045 # Currently recognized signal names are: sigpipe, success.
1046 # (Don't use 'success', use 'test_might_fail' instead.)
1048 # Do not use this to run anything but "git" and other specific testable
1049 # commands (see test_must_fail_acceptable()). We are not in the
1050 # business of vetting system supplied commands -- in other words, this
1053 # test_must_fail grep pattern output
1057 # ! grep pattern output
1069 if ! test_must_fail_acceptable
"$@"
1071 echo >&7 "test_must_fail: only 'git' is allowed: $*"
1076 if test $exit_code -eq 0 && ! list_contains
"$_test_ok" success
1078 echo >&4 "test_must_fail: command succeeded: $*"
1080 elif test_match_signal
13 $exit_code && list_contains
"$_test_ok" sigpipe
1083 elif test $exit_code -gt 129 && test $exit_code -le 192
1085 echo >&4 "test_must_fail: died by signal $(($exit_code - 128)): $*"
1087 elif test $exit_code -eq 127
1089 echo >&4 "test_must_fail: command not found: $*"
1091 elif test $exit_code -eq 126
1093 echo >&4 "test_must_fail: valgrind error: $*"
1099 # Similar to test_must_fail, but tolerates success, too. This is
1100 # meant to be used in contexts like:
1102 # test_expect_success 'some command works without configuration' '
1103 # test_might_fail git config --unset all.configuration &&
1107 # Writing "git config --unset all.configuration || :" would be wrong,
1108 # because we want to notice if it fails due to segv.
1110 # Accepts the same options as test_must_fail.
1112 test_might_fail
() {
1113 test_must_fail ok
=success
"$@" 2>&7
1116 # Similar to test_must_fail and test_might_fail, but check that a
1117 # given command exited with a given exit code. Meant to be used as:
1119 # test_expect_success 'Merge with d/f conflicts' '
1120 # test_expect_code 1 git merge "merge msg" B master
1123 test_expect_code
() {
1128 if test $exit_code = $want_code
1133 echo >&4 "test_expect_code: command exited with $exit_code, we wanted $want_code $*"
1137 # test_cmp is a helper function to compare actual and expected output.
1138 # You can use it like:
1140 # test_expect_success 'foo works' '
1141 # echo expected >expected &&
1143 # test_cmp expected actual
1146 # This could be written as either "cmp" or "diff -u", but:
1147 # - cmp's output is not nearly as easy to read as diff -u
1148 # - not all diff versions understand "-u"
1151 test "$#" -ne 2 && BUG
"2 param"
1152 eval "$GIT_TEST_CMP" '"$@"'
1155 # Check that the given config key has the expected value.
1157 # test_cmp_config [-C <dir>] <expected-value>
1158 # [<git-config-options>...] <config-key>
1160 # for example to check that the value of core.bar is foo
1162 # test_cmp_config foo core.bar
1164 test_cmp_config
() {
1172 printf "%s\n" "$1" >expect.config
&&
1174 git
$GD config
"$@" >actual.config
&&
1175 test_cmp expect.config actual.config
1178 # test_cmp_bin - helper to compare binary files
1181 test "$#" -ne 2 && BUG
"2 param"
1185 # Wrapper for grep which used to be used for
1186 # GIT_TEST_GETTEXT_POISON=false. Only here as a shim for other
1187 # in-flight changes. Should not be used and will be removed soon.
1189 eval "last_arg=\${$#}"
1191 test -f "$last_arg" ||
1192 BUG
"test_i18ngrep requires a file to read as the last parameter"
1195 { test "x!" = "x$1" && test $# -lt 3 ; }
1197 BUG
"too few parameters to test_i18ngrep"
1200 if test "x!" = "x$1"
1203 ! grep "$@" && return 0
1205 echo >&4 "error: '! grep $@' did find a match in:"
1207 grep "$@" && return 0
1209 echo >&4 "error: 'grep $@' didn't find a match in:"
1212 if test -s "$last_arg"
1216 echo >&4 "<File '$last_arg' is empty>"
1222 # Call any command "$@" but be more verbose about its
1223 # failure. This is handy for commands like "test" which do
1224 # not output anything when they fail.
1227 echo >&4 "command failed: $(git rev-parse --sq-quote "$@
")"
1231 # Check if the file expected to be empty is indeed empty, and barfs
1234 test_must_be_empty
() {
1235 test "$#" -ne 1 && BUG
"1 param"
1236 test_path_is_file
"$1" &&
1239 echo "'$1' is not empty, it contains:"
1245 # Tests that its two parameters refer to the same revision, or if '!' is
1246 # provided first, that its other two parameters refer to different
1249 local op
='=' wrong_result
=different
1251 if test $# -ge 1 && test "x$1" = 'x!'
1254 wrong_result
='the same'
1259 BUG
"test_cmp_rev requires two revisions, but got $#"
1262 r1
=$
(git rev-parse
--verify "$1") &&
1263 r2
=$
(git rev-parse
--verify "$2") ||
return 1
1265 if ! test "$r1" "$op" "$r2"
1268 error: two revisions point to $wrong_result objects:
1277 # Compare paths respecting core.ignoreCase
1278 test_cmp_fspath
() {
1279 if test "x$1" = "x$2"
1284 if test true
!= "$(git config --get --type=bool core.ignorecase)"
1289 test "x$(echo "$1" | tr A-Z a-z)" = "x$(echo "$2" | tr A-Z a-z)"
1292 # Print a sequence of integers in increasing order, either with
1293 # two arguments (start and end):
1295 # test_seq 1 5 -- outputs 1 2 3 4 5 one line at a time
1297 # or with one argument (end), in which case it starts counting
1304 *) BUG
"not 1 or 2 parameters to test_seq" ;;
1306 test_seq_counter__
=$1
1307 while test "$test_seq_counter__" -le "$2"
1309 echo "$test_seq_counter__"
1310 test_seq_counter__
=$
(( $test_seq_counter__ + 1 ))
1314 # This function can be used to schedule some commands to be run
1315 # unconditionally at the end of the test to restore sanity:
1317 # test_expect_success 'test core.capslock' '
1318 # git config core.capslock true &&
1319 # test_when_finished "git config --unset core.capslock" &&
1323 # That would be roughly equivalent to
1325 # test_expect_success 'test core.capslock' '
1326 # git config core.capslock true &&
1328 # git config --unset core.capslock
1331 # except that the greeting and config --unset must both succeed for
1334 # Note that under --immediate mode, no clean-up is done to help diagnose
1337 test_when_finished
() {
1338 # We cannot detect when we are in a subshell in general, but by
1339 # doing so on Bash is better than nothing (the test will
1340 # silently pass on other shells).
1341 test "${BASH_SUBSHELL-0}" = 0 ||
1342 BUG
"test_when_finished does nothing in a subshell"
1344 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_cleanup"
1347 # This function can be used to schedule some commands to be run
1348 # unconditionally at the end of the test script, e.g. to stop a daemon:
1350 # test_expect_success 'test git daemon' '
1353 # test_atexit 'kill $daemon_pid' &&
1357 # The commands will be executed before the trash directory is removed,
1358 # i.e. the atexit commands will still be able to access any pidfiles or
1361 # Note that these commands will be run even when a test script run
1362 # with '--immediate' fails. Be careful with your atexit commands to
1363 # minimize any changes to the failed state.
1366 # We cannot detect when we are in a subshell in general, but by
1367 # doing so on Bash is better than nothing (the test will
1368 # silently pass on other shells).
1369 test "${BASH_SUBSHELL-0}" = 0 ||
1370 BUG
"test_atexit does nothing in a subshell"
1371 test_atexit_cleanup
="{ $*
1372 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_atexit_cleanup"
1375 # Deprecated wrapper for "git init", use "git init" directly instead
1376 # Usage: test_create_repo <directory>
1377 test_create_repo
() {
1381 # This function helps on symlink challenged file systems when it is not
1382 # important that the file system entry is a symbolic link.
1383 # Use test_ln_s_add instead of "ln -s x y && git add y" to add a
1384 # symbolic link entry y to the index.
1387 if test_have_prereq SYMLINKS
1390 git update-index
--add "$2"
1392 printf '%s' "$1" >"$2" &&
1393 ln_s_obj
=$
(git hash-object
-w "$2") &&
1394 git update-index
--add --cacheinfo 120000 $ln_s_obj "$2" &&
1395 # pick up stat info from the file
1396 git update-index
"$2"
1400 # This function writes out its parameters, one per line
1401 test_write_lines
() {
1406 command "$PERL_PATH" "$@" 2>&7
1409 # Given the name of an environment variable with a bool value, normalize
1410 # its value to a 0 (true) or 1 (false or empty string) return code.
1412 # test_bool_env GIT_TEST_HTTPD <default-value>
1414 # Return with code corresponding to the given default value if the variable
1416 # Abort the test script if either the value of the variable or the default
1417 # are not valid bool values.
1422 BUG
"test_bool_env requires two parameters (variable name and default value)"
1425 git env--helper
--type=bool
--default="$2" --exit-code "$1"
1428 0|
1) # unset or valid bool value
1430 *) # invalid bool value or something unexpected
1431 error
>&7 "test_bool_env requires bool values both for \$$1 and for the default fallback"
1437 # Exit the test suite, either by skipping all remaining tests or by
1438 # exiting with an error. If our prerequisite variable $1 falls back
1439 # on a default assume we were opportunistically trying to set up some
1440 # tests and we skip. If it is explicitly "true", then we report a failure.
1442 # The error/skip message should be given by $2.
1444 test_skip_or_die
() {
1445 if ! test_bool_env
"$1" false
1453 # The following mingw_* functions obey POSIX shell syntax, but are actually
1454 # bash scripts, and are meant to be used only with bash on Windows.
1456 # A test_cmp function that treats LF and CRLF equal and avoids to fork
1457 # diff when possible.
1459 # Read text into shell variables and compare them. If the results
1460 # are different, use regular diff to report the difference.
1461 local test_cmp_a
= test_cmp_b
=
1463 # When text came from stdin (one argument is '-') we must feed it
1465 local stdin_for_diff
=
1467 # Since it is difficult to detect the difference between an
1468 # empty input file and a failure to read the files, we go straight
1469 # to diff if one of the inputs is empty.
1470 if test -s "$1" && test -s "$2"
1472 # regular case: both files non-empty
1473 mingw_read_file_strip_cr_ test_cmp_a
<"$1"
1474 mingw_read_file_strip_cr_ test_cmp_b
<"$2"
1475 elif test -s "$1" && test "$2" = -
1477 # read 2nd file from stdin
1478 mingw_read_file_strip_cr_ test_cmp_a
<"$1"
1479 mingw_read_file_strip_cr_ test_cmp_b
1480 stdin_for_diff
='<<<"$test_cmp_b"'
1481 elif test "$1" = - && test -s "$2"
1483 # read 1st file from stdin
1484 mingw_read_file_strip_cr_ test_cmp_a
1485 mingw_read_file_strip_cr_ test_cmp_b
<"$2"
1486 stdin_for_diff
='<<<"$test_cmp_a"'
1488 test -n "$test_cmp_a" &&
1489 test -n "$test_cmp_b" &&
1490 test "$test_cmp_a" = "$test_cmp_b" ||
1491 eval "diff -u \"\$@\" $stdin_for_diff"
1494 # $1 is the name of the shell variable to fill in
1495 mingw_read_file_strip_cr_
() {
1496 # Read line-wise using LF as the line separator
1497 # and use IFS to strip CR.
1501 if IFS
=$
'\r' read -r -d $
'\n' line
1506 # we get here at EOF, but also if the last line
1507 # was not terminated by LF; in the latter case,
1508 # some text was read
1515 eval "$1=\$$1\$line"
1519 # Like "env FOO=BAR some-program", but run inside a subshell, which means
1520 # it also works for shell functions (though those functions cannot impact
1521 # the environment outside of the test_env invocation).
1528 eval "${1%%=*}=\${1#*=}"
1529 eval "export ${1%%=*}"
1541 # Returns true if the numeric exit code in "$2" represents the expected signal
1542 # in "$1". Signals should be given numerically.
1543 test_match_signal
() {
1544 if test "$2" = "$((128 + $1))"
1548 elif test "$2" = "$((256 + $1))"
1556 # Read up to "$1" bytes (or to EOF) from stdin and write them to stdout.
1557 test_copy_bytes
() {
1562 my $nread = sysread(STDIN, $s, $len);
1563 die "cannot read: $!" unless defined($nread);
1571 # run "$@" inside a non-git directory
1578 GIT_CEILING_DIRECTORIES
=$
(pwd) &&
1579 export GIT_CEILING_DIRECTORIES
&&
1585 # These functions are historical wrappers around "test-tool pkt-line"
1586 # for older tests. Use "test-tool pkt-line" itself in new tests.
1591 printf '%04x%s' "$((4 + ${#packet}))" "$packet"
1593 test-tool pkt-line pack
1598 test-tool pkt-line pack-raw-stdin
1602 test-tool pkt-line unpack
1605 # Converts base-16 data into base-8. The output is given as a sequence of
1606 # escaped octals, suitable for consumption by 'printf'.
1608 perl
-ne 'printf "\\%03o", hex for /../g'
1611 # Set the hash algorithm in use to $1. Only useful when testing the testsuite.
1616 # Detect the hash algorithm in use.
1617 test_detect_hash
() {
1618 test_hash_algo
="${GIT_TEST_DEFAULT_HASH:-sha1}"
1621 # Load common hash metadata and common placeholder object IDs for use with
1624 test -n "$test_hash_algo" || test_detect_hash
&&
1625 test_oid_cache
<"$TEST_DIRECTORY/oid-info/hash-info" &&
1626 test_oid_cache
<"$TEST_DIRECTORY/oid-info/oid"
1629 # Load key-value pairs from stdin suitable for use with test_oid. Blank lines
1630 # and lines starting with "#" are ignored. Keys must be shell identifier
1637 local tag rest k v
&&
1639 { test -n "$test_hash_algo" || test_detect_hash
; } &&
1656 if ! expr "$k" : '[a-z0-9][a-z0-9]*$' >/dev
/null
1658 BUG
'bad hash algorithm'
1660 eval "test_oid_${k}_$tag=\"\$v\""
1664 # Look up a per-hash value based on a key ($1). The value must have been loaded
1665 # by test_oid_init or test_oid_cache.
1667 local algo
="${test_hash_algo}" &&
1671 algo
="${1#--hash=}" &&
1677 local var
="test_oid_${algo}_$1" &&
1679 # If the variable is unset, we must be missing an entry for this
1680 # key-hash pair, so exit with an error.
1681 if eval "test -z \"\${$var+set}\""
1683 BUG
"undefined key '$1'"
1685 eval "printf '%s' \"\${$var}\""
1688 # Insert a slash into an object ID so it can be used to reference a location
1689 # under ".git/objects". For example, "deadbeef..." becomes "de/adbeef..".
1690 test_oid_to_path
() {
1691 local basename=${1#??}
1692 echo "${1%$basename}/$basename"
1695 # Parse oids from git ls-files --staged output
1696 test_parse_ls_files_stage_oids
() {
1700 # Parse oids from git ls-tree output
1701 test_parse_ls_tree_oids
() {
1705 # Choose a port number based on the test script's number and store it in
1706 # the given variable name, unless that variable already contains a number.
1710 if test $# -ne 1 ||
test -z "$var"
1712 BUG
"test_set_port requires a variable name"
1718 # No port is set in the given env var, use the test
1719 # number as port number instead.
1720 # Remove not only the leading 't', but all leading zeros
1721 # as well, so the arithmetic below won't (mis)interpret
1722 # a test number like '0123' as an octal value.
1723 port
=${this_test#${this_test%%[1-9]*}}
1724 if test "${port:-0}" -lt 1024
1726 # root-only port, use a larger one instead.
1727 port
=$
(($port + 10000))
1731 error
>&7 "invalid port number: $port"
1734 # The user has specified the port.
1738 # Make sure that parallel '--stress' test jobs get different
1740 port
=$
(($port + ${GIT_TEST_STRESS_JOB_NR:-0}))
1744 # Tests for the hidden file attribute on Windows
1745 test_path_is_hidden
() {
1746 test_have_prereq MINGW ||
1747 BUG
"test_path_is_hidden can only be used on Windows"
1749 # Use the output of `attrib`, ignore the absolute path
1750 case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H
*?
:*) return 0;; esac
1754 # Check that the given command was invoked as part of the
1755 # trace2-format trace on stdin.
1757 # test_subcommand [!] <command> <args>... < <trace>
1759 # For example, to look for an invocation of "git upload-pack
1762 # GIT_TRACE2_EVENT=event.log git fetch ... &&
1763 # test_subcommand git upload-pack "$PATH" <event.log
1765 # If the first parameter passed is !, this instead checks that
1766 # the given command was not called.
1768 test_subcommand
() {
1776 local expr=$
(printf '"%s",' "$@")
1779 if test -n "$negate"
1787 # Check that the given command was invoked as part of the
1788 # trace2-format trace on stdin.
1790 # test_region [!] <category> <label> git <command> <args>...
1792 # For example, to look for trace2_region_enter("index", "do_read_index", repo)
1793 # in an invocation of "git checkout HEAD~1", run
1795 # GIT_TRACE2_EVENT="$(pwd)/trace.txt" GIT_TRACE2_EVENT_NESTING=10 \
1796 # git checkout HEAD~1 &&
1797 # test_region index do_read_index <trace.txt
1799 # If the first parameter passed is !, this instead checks that
1800 # the given region was not entered.
1810 grep -e '"region_enter".*"category":"'"$1"'","label":"'"$2"\" "$3"
1813 if test $exitcode != $expect_exit
1818 grep -e '"region_leave".*"category":"'"$1"'","label":"'"$2"\" "$3"
1821 if test $exitcode != $expect_exit
1829 # Print the destination of symlink(s) provided as arguments. Basically
1830 # the same as the readlink command, but it's not available everywhere.
1832 perl
-le 'print readlink($_) for @ARGV' "$@"
1835 # Set mtime to a fixed "magic" timestamp in mid February 2009, before we
1836 # run an operation that may or may not touch the file. If the file was
1837 # touched, its timestamp will not accidentally have such an old timestamp,
1838 # as long as your filesystem clock is reasonably correct. To verify the
1839 # timestamp, follow up with test_is_magic_mtime.
1841 # An optional increment to the magic timestamp may be specified as second
1843 test_set_magic_mtime
() {
1844 local inc
=${2:-0} &&
1845 local mtime
=$
((1234567890 + $inc)) &&
1846 test-tool chmtime
=$mtime "$1" &&
1847 test_is_magic_mtime
"$1" $inc
1850 # Test whether the given file has the "magic" mtime set. This is meant to
1851 # be used in combination with test_set_magic_mtime.
1853 # An optional increment to the magic timestamp may be specified as second
1854 # argument. Usually, this should be the same increment which was used for
1855 # the associated test_set_magic_mtime.
1856 test_is_magic_mtime
() {
1857 local inc
=${2:-0} &&
1858 local mtime
=$
((1234567890 + $inc)) &&
1859 echo $mtime >.git
/test-mtime-expect
&&
1860 test-tool chmtime
--get "$1" >.git
/test-mtime-actual
&&
1861 test_cmp .git
/test-mtime-expect .git
/test-mtime-actual
1863 rm -f .git
/test-mtime-expect
1864 rm -f .git
/test-mtime-actual
1868 # Given two filenames, parse both using 'git config --list --file'
1869 # and compare the sorted output of those commands. Useful when
1870 # wanting to ignore whitespace differences and sorting concerns.
1871 test_cmp_config_output
() {
1872 git config
--list --file="$1" >config-expect
&&
1873 git config
--list --file="$2" >config-actual
&&
1874 sort config-expect
>sorted-expect
&&
1875 sort config-actual
>sorted-actual
&&
1876 test_cmp sorted-expect sorted-actual