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 # Like test_set_editor but sets GIT_SEQUENCE_EDITOR instead of EDITOR
36 test_set_sequence_editor
() {
37 FAKE_SEQUENCE_EDITOR
="$1"
38 export FAKE_SEQUENCE_EDITOR
39 GIT_SEQUENCE_EDITOR
='"$FAKE_SEQUENCE_EDITOR"'
40 export GIT_SEQUENCE_EDITOR
43 test_decode_color
() {
46 if (n == 0) return "RESET";
47 if (n == 1) return "BOLD";
48 if (n == 2) return "FAINT";
49 if (n == 3) return "ITALIC";
50 if (n == 7) return "REVERSE";
51 if (n == 30) return "BLACK";
52 if (n == 31) return "RED";
53 if (n == 32) return "GREEN";
54 if (n == 33) return "YELLOW";
55 if (n == 34) return "BLUE";
56 if (n == 35) return "MAGENTA";
57 if (n == 36) return "CYAN";
58 if (n == 37) return "WHITE";
59 if (n == 40) return "BLACK";
60 if (n == 41) return "BRED";
61 if (n == 42) return "BGREEN";
62 if (n == 43) return "BYELLOW";
63 if (n == 44) return "BBLUE";
64 if (n == 45) return "BMAGENTA";
65 if (n == 46) return "BCYAN";
66 if (n == 47) return "BWHITE";
69 while (match($0, /\033\[[0-9;]*m/) != 0) {
70 printf "%s<", substr($0, 1, RSTART-1);
71 codes = substr($0, RSTART+2, RLENGTH-3);
72 if (length(codes) == 0)
75 n = split(codes, ary, ";");
77 for (i = 1; i <= n; i++) {
78 printf "%s%s", sep, name(ary[i]);
83 $0 = substr($0, RSTART + RLENGTH, length($0) - RSTART - RLENGTH + 1);
91 perl
-pe 'y/\012/\000/'
115 sed -e 's/$/Q/' |
tr Q
'\015'
119 tr '\015' Q |
sed -e 's/Q$//'
122 # In some bourne shell implementations, the "unset" builtin returns
123 # nonzero status when a variable to be unset was not set in the first
126 # Use sane_unset when that should not be considered an error.
134 if test -z "${test_tick+set}"
138 test_tick
=$
(($test_tick + 60))
140 GIT_COMMITTER_DATE
="$test_tick -0700"
141 GIT_AUTHOR_DATE
="$test_tick -0700"
142 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
145 # Stop execution and start a shell. This is useful for debugging tests.
147 # Be sure to remove all invocations of this command before submitting.
148 # WARNING: the shell invoked by this helper does not have the same environment
149 # as the one running the tests (shell variables and functions are not
150 # available, and the options below further modify the environment). As such,
151 # commands copied from a test script might behave differently than when
154 # Usage: test_pause [options]
156 # Use your original TERM instead of test-lib.sh's "dumb".
157 # This usually restores color output in the invoked shell.
159 # Invoke $SHELL instead of $TEST_SHELL_PATH.
161 # Use your original HOME instead of test-lib.sh's "$TRASH_DIRECTORY".
162 # This allows you to use your regular shell environment and Git aliases.
163 # CAUTION: running commands copied from a test script into the paused shell
164 # might result in files in your HOME being overwritten.
166 # Shortcut for -t -s -h
170 PAUSE_SHELL
=$TEST_SHELL_PATH &&
176 PAUSE_TERM
="$USER_TERM"
182 PAUSE_HOME
="$USER_HOME"
185 PAUSE_TERM
="$USER_TERM"
187 PAUSE_HOME
="$USER_HOME"
195 TERM
="$PAUSE_TERM" HOME
="$PAUSE_HOME" "$PAUSE_SHELL" <&6 >&5 2>&7
198 # Wrap git with a debugger. Adding this to a command can make it easier
199 # to understand what is going on in a failing test.
201 # Usage: debug [options] <git command>
203 # --debugger=<debugger>
204 # Use <debugger> instead of GDB
206 # Use your original TERM instead of test-lib.sh's "dumb".
207 # This usually restores color output in the debugger.
208 # WARNING: the command being debugged might behave differently than when
212 # debug git checkout master
213 # debug --debugger=nemiver git $ARGS
214 # debug -d "valgrind --tool=memcheck --track-origins=yes" git $ARGS
222 DEBUG_TERM
="$USER_TERM"
229 GIT_DEBUGGER
="${1#*=}"
238 dotfiles
=".gdbinit .lldbinit"
240 for dotfile
in $dotfiles
242 dotfile
="$USER_HOME/$dotfile" &&
243 test -f "$dotfile" && cp "$dotfile" "$HOME" ||
:
246 TERM
="$DEBUG_TERM" GIT_DEBUGGER
="${GIT_DEBUGGER}" "$@" <&6 >&5 2>&7 &&
248 for dotfile
in $dotfiles
250 rm -f "$HOME/$dotfile"
254 # Usage: test_commit [options] <message> [<file> [<contents> [<tag>]]]
256 # Run all git commands in directory <dir>
258 # Do not call test_tick before making a commit
260 # Use ">>" instead of ">" when writing "<contents>" to "<file>"
262 # Use "printf" instead of "echo" when writing "<contents>" to
263 # "<file>", use this to write escape sequences such as "\0", a
264 # trailing "\n" won't be added automatically. This option
265 # supports nothing but the FORMAT of printf(1), i.e. no custom
268 # Invoke "git commit" with --signoff
270 # Invoke "git commit" with --author <author>
272 # Do not tag the resulting commit
274 # Create an annotated tag with "--annotate -m <message>". Calls
275 # test_tick between making the commit and tag, unless --notick
278 # This will commit a file with the given contents and the given commit
279 # message, and tag the resulting commit with the given tag name.
281 # <file>, <contents>, and <tag> all default to <message>.
312 GIT_COMMITTER_DATE
="$2"
332 indir
=${indir:+"$indir"/} &&
333 local file=${2:-"$1.t"} &&
336 $echo "${3-$1}" >>"$indir$file"
338 $echo "${3-$1}" >"$indir$file"
340 git
${indir:+ -C "$indir"} add
-- "$file" &&
345 git
${indir:+ -C "$indir"} commit \
346 ${author:+ --author "$author"} \
352 git
${indir:+ -C "$indir"} tag
"${4:-$1}"
359 git
${indir:+ -C "$indir"} tag
-a -m "$1" "${4:-$1}"
364 # Call test_merge with the arguments "<message> <commit>", where <commit>
365 # can be a tag pointing to the commit-to-merge.
371 git merge
-m "$label" "$@" &&
375 # Efficiently create <nr> commits, each with a unique number (from 1 to <nr>
376 # by default) in the commit message.
378 # Usage: test_commit_bulk [options] <nr>
380 # Run all git commands in directory <dir>
382 # ref on which to create commits (default: HEAD)
384 # number commit messages from <n> (default: 1)
386 # use <msg> as the commit mesasge (default: "commit %s")
388 # modify <fn> in each commit (default: %s.t)
389 # --contents=<string>:
390 # place <string> in each file (default: "content %s")
392 # shorthand to use <string> and %s in message, filename, and contents
394 # The message, filename, and contents strings are evaluated by printf, with the
395 # first "%s" replaced by the current commit number. So you can do:
397 # test_commit_bulk --filename=file --contents="modification %s"
399 # to have every commit touch the same file, but with unique content.
401 test_commit_bulk
() {
402 tmpfile
=.bulk-commit.input
408 contents
='content %s'
432 message
="${1#--*=} %s"
433 filename
="${1#--*=}-%s.t"
434 contents
="${1#--*=} %s"
437 BUG
"invalid test_commit_bulk option: $1"
448 if git
-C "$indir" rev-parse
--quiet --verify "$ref"
453 while test "$total" -gt 0
457 printf 'author %s <%s> %s\n' \
459 "$GIT_AUTHOR_EMAIL" \
461 printf 'committer %s <%s> %s\n' \
462 "$GIT_COMMITTER_NAME" \
463 "$GIT_COMMITTER_EMAIL" \
464 "$GIT_COMMITTER_DATE"
466 printf "$message\n" $n
468 if test -n "$add_from"
473 printf "M
644 inline
$filename\n" $n
475 printf "$contents\n" $n
483 -c fastimport.unpacklimit=0 \
484 fast-import <"$tmpfile" || return 1
486 # This will be left in place on failure, which may aid debugging.
489 # If we updated HEAD, then be nice and update the index and working
491 if test "$ref" = "HEAD
"
493 git -C "$indir" checkout -f HEAD || return 1
498 # This function helps systems where core.filemode=false is set.
499 # Use it instead of plain 'chmod +x' to set or unset the executable bit
500 # of a file in the working directory and add it to the index.
504 git update-index --add "--chmod=$@
"
507 # Get the modebits from a file or directory, ignoring the setgid bit (g+s).
508 # This bit is inherited by subdirectories at their creation. So we remove it
509 # from the returning string to prevent callers from having to worry about the
510 # state of the bit in the test directory.
513 ls -ld "$1" | sed -e 's|^\(..........\).*|\1|' \
514 -e 's|^\(......\)S|\1-|' -e 's|^\(......\)s|\1x|'
517 # Unset a configuration variable, but don't fail if it doesn't exist.
526 git ${config_dir:+-C "$config_dir"} config --unset-all "$@
"
528 case "$config_status" in
529 5) # ok, nothing to unset
533 return $config_status
536 # Set git config, automatically unsetting it after the test is over.
546 # If --worktree is provided, use it to configure/unconfigure
548 if test "$1" = --worktree
554 test_when_finished "test_unconfig
${config_dir:+-C '$config_dir'} ${is_worktree:+--worktree} '$1'" &&
555 git ${config_dir:+-C "$config_dir"} config ${is_worktree:+--worktree} "$@
"
558 test_config_global () {
559 test_when_finished "test_unconfig
--global '$1'" &&
560 git config --global "$@
"
565 echo "#!${2-"$SHELL_PATH"}" &&
571 # Usage: test_hook [options] <hook-name> <<-\EOF
574 # Run all git commands in directory <dir>
576 # Setup a hook for subsequent tests, i.e. don't remove it in a
577 # "test_when_finished"
579 # Overwrite an existing <hook-name>, if it exists. Implies
580 # --setup (i.e. the "test_when_finished" is assumed to have been
583 # Disable (chmod -x) an existing <hook-name>, which must exist.
585 # Remove (rm -f) an existing <hook-name>, which must exist.
612 BUG
"invalid argument: $1"
621 git_dir
=$
(git
-C "$indir" rev-parse
--absolute-git-dir) &&
622 hook_dir
="$git_dir/hooks" &&
623 hook_file
="$hook_dir/$1" &&
624 if test -n "$disable$remove"
626 test_path_is_file
"$hook_file" &&
627 if test -n "$disable"
629 chmod -x "$hook_file"
630 elif test -n "$remove"
636 if test -z "$clobber"
638 test_path_is_missing
"$hook_file"
640 if test -z "$setup$clobber"
642 test_when_finished
"rm \"$hook_file\""
644 write_script
"$hook_file"
647 # Use test_set_prereq to tell that a particular prerequisite is available.
648 # The prerequisite can later be checked for in two ways:
650 # - Explicitly using test_have_prereq.
652 # - Implicitly by specifying the prerequisite tag in the calls to
653 # test_expect_{success,failure}
655 # The single parameter is the prerequisite tag (a simple word, in all
656 # capital letters by convention).
658 test_unset_prereq
() {
659 ! test_have_prereq
"$1" ||
660 satisfied_prereq
="${satisfied_prereq% $1 *} ${satisfied_prereq#* $1 }"
664 if test -n "$GIT_TEST_FAIL_PREREQS_INTERNAL"
667 # The "!" case is handled below with
668 # test_unset_prereq()
671 # List of things we can't easily pretend to not support
674 # Inspecting whether GIT_TEST_FAIL_PREREQS is on
675 # should be unaffected.
685 test_unset_prereq
"${1#!}"
688 satisfied_prereq
="$satisfied_prereq$1 "
693 lazily_testable_prereq
= lazily_tested_prereq
=
695 # Usage: test_lazy_prereq PREREQ 'script'
696 test_lazy_prereq
() {
697 lazily_testable_prereq
="$lazily_testable_prereq$1 "
698 eval test_prereq_lazily_
$1=\
$2
701 test_run_lazy_prereq_
() {
703 mkdir -p "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&
705 cd "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&'"$2"'
707 say
>&3 "checking prerequisite: $1"
711 rm -rf "$TRASH_DIRECTORY/prereq-test-dir-$1"
712 if test "$eval_ret" = 0; then
713 say
>&3 "prerequisite $1 ok"
715 say
>&3 "prerequisite $1 not satisfied"
720 test_have_prereq
() {
721 # prerequisites can be concatenated with ','
733 case "$prerequisite" in
736 prerequisite
=${prerequisite#!}
742 case " $lazily_tested_prereq " in
746 case " $lazily_testable_prereq " in
748 eval "script=\$test_prereq_lazily_$prerequisite" &&
749 if test_run_lazy_prereq_
"$prerequisite" "$script"
751 test_set_prereq
$prerequisite
753 lazily_tested_prereq
="$lazily_tested_prereq$prerequisite "
758 total_prereq
=$
(($total_prereq + 1))
759 case "$satisfied_prereq" in
761 satisfied_this_prereq
=t
764 satisfied_this_prereq
=
767 case "$satisfied_this_prereq,$negative_prereq" in
769 ok_prereq
=$
(($ok_prereq + 1))
772 # Keep a list of missing prerequisites; restore
773 # the negative marker if necessary.
774 prerequisite
=${negative_prereq:+!}$prerequisite
776 # Abort if this prereq was marked as required
777 if test -n "$GIT_TEST_REQUIRE_PREREQ"
779 case " $GIT_TEST_REQUIRE_PREREQ " in
781 BAIL_OUT
"required prereq $prerequisite failed"
786 if test -z "$missing_prereq"
788 missing_prereq
=$prerequisite
790 missing_prereq
="$prerequisite,$missing_prereq"
795 test $total_prereq = $ok_prereq
798 test_declared_prereq
() {
799 case ",$test_prereq," in
807 test_verify_prereq
() {
808 test -z "$test_prereq" ||
809 expr >/dev
/null
"$test_prereq" : '[A-Z0-9_,!]*$' ||
810 BUG
"'$test_prereq' does not look like a prereq"
813 test_expect_failure
() {
815 test "$#" = 3 && { test_prereq
=$1; shift; } || test_prereq
=
817 BUG
"not 2 or 3 parameters to test-expect-failure"
822 test -n "$test_skip_test_preamble" ||
823 say
>&3 "checking known breakage of $TEST_NUMBER.$test_count '$1': $2"
824 if test_run_
"$2" expecting_failure
826 test_known_broken_ok_
"$1"
828 test_known_broken_failure_
"$1"
834 test_expect_success
() {
836 test "$#" = 3 && { test_prereq
=$1; shift; } || test_prereq
=
838 BUG
"not 2 or 3 parameters to test-expect-success"
843 test -n "$test_skip_test_preamble" ||
844 say
>&3 "expecting success of $TEST_NUMBER.$test_count '$1': $2"
855 # debugging-friendly alternatives to "test [-f|-d|-e]"
856 # The commands test the existence or non-existence of $1
857 test_path_is_file
() {
858 test "$#" -ne 1 && BUG
"1 param"
861 echo "File $1 doesn't exist"
866 test_path_is_file_not_symlink
() {
867 test "$#" -ne 1 && BUG
"1 param"
868 test_path_is_file
"$1" &&
871 echo "$1 shouldn't be a symbolic link"
876 test_path_is_dir
() {
877 test "$#" -ne 1 && BUG
"1 param"
880 echo "Directory $1 doesn't exist"
885 test_path_is_dir_not_symlink
() {
886 test "$#" -ne 1 && BUG
"1 param"
887 test_path_is_dir
"$1" &&
890 echo "$1 shouldn't be a symbolic link"
895 test_path_exists
() {
896 test "$#" -ne 1 && BUG
"1 param"
899 echo "Path $1 doesn't exist"
904 test_path_is_symlink
() {
905 test "$#" -ne 1 && BUG
"1 param"
908 echo "Symbolic link $1 doesn't exist"
913 test_path_is_executable
() {
914 test "$#" -ne 1 && BUG
"1 param"
917 echo "$1 is not executable"
922 # Check if the directory exists and is empty as expected, barf otherwise.
923 test_dir_is_empty
() {
924 test "$#" -ne 1 && BUG
"1 param"
925 test_path_is_dir
"$1" &&
926 if test -n "$(ls -a1 "$1" | grep -E -v '^\.\.?$')"
928 echo "Directory '$1' is not empty, it contains:"
934 # Check if the file exists and has a size greater than zero
935 test_file_not_empty
() {
936 test "$#" = 2 && BUG
"2 param"
939 echo "'$1' is not a non-empty file."
944 test_path_is_missing
() {
945 test "$#" -ne 1 && BUG
"1 param"
954 # test_line_count checks that a file has the number of lines it
955 # ought to. For example:
957 # test_expect_success 'produce exactly one line of output' '
958 # do something >output &&
959 # test_line_count = 1 output
962 # is like "test $(wc -l <output) = 1" except that it passes the
963 # output through when the number of lines is wrong.
968 BUG
"not 3 parameters to test_line_count"
969 elif ! test $
(wc -l <"$3") "$1" "$2"
971 echo "test_line_count: line count for $3 !$1 $2"
978 # test_stdout_line_count <bin-ops> <value> <cmd> [<args>...]
980 # test_stdout_line_count checks that the output of a command has the number
981 # of lines it ought to. For example:
983 # test_stdout_line_count = 3 git ls-files -u
984 # test_stdout_line_count -gt 10 ls
985 test_stdout_line_count
() {
986 local ops val trashdir
&&
989 BUG
"expect 3 or more arguments"
994 if ! trashdir
="$(git rev-parse --git-dir)/trash"; then
995 BUG
"expect to be run inside a worktree"
997 mkdir
-p "$trashdir" &&
998 "$@" >"$trashdir/output" &&
999 test_line_count
"$ops" "$val" "$trashdir/output"
1004 test "$#" -ne 1 && BUG
"1 param"
1005 test-tool path-utils file-size
"$1"
1008 # Returns success if a comma separated string of keywords ($1) contains a
1009 # given keyword ($2).
1011 # `list_contains "foo,bar" bar` returns 0
1012 # `list_contains "foo" bar` returns 1
1023 # Returns success if the arguments indicate that a command should be
1024 # accepted by test_must_fail(). If the command is run with env, the env
1025 # and its corresponding variable settings will be stripped before we
1026 # test the command being run.
1027 test_must_fail_acceptable
() {
1028 if test "$1" = "env"
1045 git|__git
*|scalar|test-tool|test_terminal
)
1054 # This is not among top-level (test_expect_success | test_expect_failure)
1055 # but is a prefix that can be used in the test script, like:
1057 # test_expect_success 'complain and die' '
1059 # do something else &&
1060 # test_must_fail git checkout ../outerspace
1063 # Writing this as "! git checkout ../outerspace" is wrong, because
1064 # the failure could be due to a segv. We want a controlled failure.
1066 # Accepts the following options:
1068 # ok=<signal-name>[,<...>]:
1069 # Don't treat an exit caused by the given signal as error.
1070 # Multiple signals can be specified as a comma separated list.
1071 # Currently recognized signal names are: sigpipe, success.
1072 # (Don't use 'success', use 'test_might_fail' instead.)
1074 # Do not use this to run anything but "git" and other specific testable
1075 # commands (see test_must_fail_acceptable()). We are not in the
1076 # business of vetting system supplied commands -- in other words, this
1079 # test_must_fail grep pattern output
1083 # ! grep pattern output
1095 if ! test_must_fail_acceptable
"$@"
1097 echo >&7 "test_must_fail: only 'git' is allowed: $*"
1102 if test $exit_code -eq 0 && ! list_contains
"$_test_ok" success
1104 echo >&4 "test_must_fail: command succeeded: $*"
1106 elif test_match_signal
13 $exit_code && list_contains
"$_test_ok" sigpipe
1109 elif test $exit_code -gt 129 && test $exit_code -le 192
1111 echo >&4 "test_must_fail: died by signal $(($exit_code - 128)): $*"
1113 elif test $exit_code -eq 127
1115 echo >&4 "test_must_fail: command not found: $*"
1117 elif test $exit_code -eq 126
1119 echo >&4 "test_must_fail: valgrind error: $*"
1125 # Similar to test_must_fail, but tolerates success, too. This is
1126 # meant to be used in contexts like:
1128 # test_expect_success 'some command works without configuration' '
1129 # test_might_fail git config --unset all.configuration &&
1133 # Writing "git config --unset all.configuration || :" would be wrong,
1134 # because we want to notice if it fails due to segv.
1136 # Accepts the same options as test_must_fail.
1138 test_might_fail
() {
1139 test_must_fail ok
=success
"$@" 2>&7
1142 # Similar to test_must_fail and test_might_fail, but check that a
1143 # given command exited with a given exit code. Meant to be used as:
1145 # test_expect_success 'Merge with d/f conflicts' '
1146 # test_expect_code 1 git merge "merge msg" B master
1149 test_expect_code
() {
1154 if test $exit_code = $want_code
1159 echo >&4 "test_expect_code: command exited with $exit_code, we wanted $want_code $*"
1163 # test_cmp is a helper function to compare actual and expected output.
1164 # You can use it like:
1166 # test_expect_success 'foo works' '
1167 # echo expected >expected &&
1169 # test_cmp expected actual
1172 # This could be written as either "cmp" or "diff -u", but:
1173 # - cmp's output is not nearly as easy to read as diff -u
1174 # - not all diff versions understand "-u"
1177 test "$#" -ne 2 && BUG
"2 param"
1178 eval "$GIT_TEST_CMP" '"$@"'
1181 # Check that the given config key has the expected value.
1183 # test_cmp_config [-C <dir>] <expected-value>
1184 # [<git-config-options>...] <config-key>
1186 # for example to check that the value of core.bar is foo
1188 # test_cmp_config foo core.bar
1190 test_cmp_config
() {
1198 printf "%s\n" "$1" >expect.config
&&
1200 git
$GD config
"$@" >actual.config
&&
1201 test_cmp expect.config actual.config
1204 # test_cmp_bin - helper to compare binary files
1207 test "$#" -ne 2 && BUG
"2 param"
1211 # Wrapper for grep which used to be used for
1212 # GIT_TEST_GETTEXT_POISON=false. Only here as a shim for other
1213 # in-flight changes. Should not be used and will be removed soon.
1215 eval "last_arg=\${$#}"
1217 test -f "$last_arg" ||
1218 BUG
"test_i18ngrep requires a file to read as the last parameter"
1221 { test "x!" = "x$1" && test $# -lt 3 ; }
1223 BUG
"too few parameters to test_i18ngrep"
1226 if test "x!" = "x$1"
1229 ! grep "$@" && return 0
1231 echo >&4 "error: '! grep $@' did find a match in:"
1233 grep "$@" && return 0
1235 echo >&4 "error: 'grep $@' didn't find a match in:"
1238 if test -s "$last_arg"
1242 echo >&4 "<File '$last_arg' is empty>"
1248 # Check if the file expected to be empty is indeed empty, and barfs
1251 test_must_be_empty
() {
1252 test "$#" -ne 1 && BUG
"1 param"
1253 test_path_is_file
"$1" &&
1256 echo "'$1' is not empty, it contains:"
1262 # Tests that its two parameters refer to the same revision, or if '!' is
1263 # provided first, that its other two parameters refer to different
1266 local op
='=' wrong_result
=different
1268 if test $# -ge 1 && test "x$1" = 'x!'
1271 wrong_result
='the same'
1276 BUG
"test_cmp_rev requires two revisions, but got $#"
1279 r1
=$
(git rev-parse
--verify "$1") &&
1280 r2
=$
(git rev-parse
--verify "$2") ||
return 1
1282 if ! test "$r1" "$op" "$r2"
1285 error: two revisions point to $wrong_result objects:
1294 # Tests that a commit message matches the expected text
1296 # Usage: test_commit_message <rev> [-m <msg> | <file>]
1298 # When using "-m" <msg> will have a line feed appended. If the second
1299 # argument is omitted then the expected message is read from stdin.
1301 test_commit_message
() {
1302 local msg_file
=expect.msg
1308 printf "%s\n" "$3" >"$msg_file"
1310 BUG
"Usage: test_commit_message <rev> [-m <message> | <file>]"
1320 BUG
"Usage: test_commit_message <rev> [-m <message> | <file>]"
1323 git show
--no-patch --pretty=format
:%B
"$1" -- >actual.msg
&&
1324 test_cmp
"$msg_file" actual.msg
1327 # Compare paths respecting core.ignoreCase
1328 test_cmp_fspath
() {
1329 if test "x$1" = "x$2"
1334 if test true
!= "$(git config --get --type=bool core.ignorecase)"
1339 test "x$(echo "$1" | tr A-Z a-z)" = "x$(echo "$2" | tr A-Z a-z)"
1342 # Print a sequence of integers in increasing order, either with
1343 # two arguments (start and end):
1345 # test_seq 1 5 -- outputs 1 2 3 4 5 one line at a time
1347 # or with one argument (end), in which case it starts counting
1354 *) BUG
"not 1 or 2 parameters to test_seq" ;;
1356 test_seq_counter__
=$1
1357 while test "$test_seq_counter__" -le "$2"
1359 echo "$test_seq_counter__"
1360 test_seq_counter__
=$
(( $test_seq_counter__ + 1 ))
1364 # This function can be used to schedule some commands to be run
1365 # unconditionally at the end of the test to restore sanity:
1367 # test_expect_success 'test core.capslock' '
1368 # git config core.capslock true &&
1369 # test_when_finished "git config --unset core.capslock" &&
1373 # That would be roughly equivalent to
1375 # test_expect_success 'test core.capslock' '
1376 # git config core.capslock true &&
1378 # git config --unset core.capslock
1381 # except that the greeting and config --unset must both succeed for
1384 # Note that under --immediate mode, no clean-up is done to help diagnose
1387 test_when_finished
() {
1388 # We cannot detect when we are in a subshell in general, but by
1389 # doing so on Bash is better than nothing (the test will
1390 # silently pass on other shells).
1391 test "${BASH_SUBSHELL-0}" = 0 ||
1392 BUG
"test_when_finished does nothing in a subshell"
1394 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_cleanup"
1397 # This function can be used to schedule some commands to be run
1398 # unconditionally at the end of the test script, e.g. to stop a daemon:
1400 # test_expect_success 'test git daemon' '
1403 # test_atexit 'kill $daemon_pid' &&
1407 # The commands will be executed before the trash directory is removed,
1408 # i.e. the atexit commands will still be able to access any pidfiles or
1411 # Note that these commands will be run even when a test script run
1412 # with '--immediate' fails. Be careful with your atexit commands to
1413 # minimize any changes to the failed state.
1416 # We cannot detect when we are in a subshell in general, but by
1417 # doing so on Bash is better than nothing (the test will
1418 # silently pass on other shells).
1419 test "${BASH_SUBSHELL-0}" = 0 ||
1420 BUG
"test_atexit does nothing in a subshell"
1421 test_atexit_cleanup
="{ $*
1422 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_atexit_cleanup"
1425 # Deprecated wrapper for "git init", use "git init" directly instead
1426 # Usage: test_create_repo <directory>
1427 test_create_repo
() {
1431 # This function helps on symlink challenged file systems when it is not
1432 # important that the file system entry is a symbolic link.
1433 # Use test_ln_s_add instead of "ln -s x y && git add y" to add a
1434 # symbolic link entry y to the index.
1437 if test_have_prereq SYMLINKS
1440 git update-index
--add "$2"
1442 printf '%s' "$1" >"$2" &&
1443 ln_s_obj
=$
(git hash-object
-w "$2") &&
1444 git update-index
--add --cacheinfo 120000 $ln_s_obj "$2" &&
1445 # pick up stat info from the file
1446 git update-index
"$2"
1450 # This function writes out its parameters, one per line
1451 test_write_lines
() {
1456 command "$PERL_PATH" "$@" 2>&7
1459 # Given the name of an environment variable with a bool value, normalize
1460 # its value to a 0 (true) or 1 (false or empty string) return code.
1462 # test_bool_env GIT_TEST_HTTPD <default-value>
1464 # Return with code corresponding to the given default value if the variable
1466 # Abort the test script if either the value of the variable or the default
1467 # are not valid bool values.
1472 BUG
"test_bool_env requires two parameters (variable name and default value)"
1475 test-tool env-helper
--type=bool
--default="$2" --exit-code "$1"
1478 0|
1) # unset or valid bool value
1480 *) # invalid bool value or something unexpected
1481 error
>&7 "test_bool_env requires bool values both for \$$1 and for the default fallback"
1487 # Exit the test suite, either by skipping all remaining tests or by
1488 # exiting with an error. If our prerequisite variable $1 falls back
1489 # on a default assume we were opportunistically trying to set up some
1490 # tests and we skip. If it is explicitly "true", then we report a failure.
1492 # The error/skip message should be given by $2.
1494 test_skip_or_die
() {
1495 if ! test_bool_env
"$1" false
1503 # Like "env FOO=BAR some-program", but run inside a subshell, which means
1504 # it also works for shell functions (though those functions cannot impact
1505 # the environment outside of the test_env invocation).
1512 eval "${1%%=*}=\${1#*=}"
1513 eval "export ${1%%=*}"
1525 # Returns true if the numeric exit code in "$2" represents the expected signal
1526 # in "$1". Signals should be given numerically.
1527 test_match_signal
() {
1528 if test "$2" = "$((128 + $1))"
1532 elif test "$2" = "$((256 + $1))"
1540 # Read up to "$1" bytes (or to EOF) from stdin and write them to stdout.
1541 test_copy_bytes
() {
1546 my $nread = sysread(STDIN, $s, $len);
1547 die "cannot read: $!" unless defined($nread);
1555 # run "$@" inside a non-git directory
1562 GIT_CEILING_DIRECTORIES
=$
(pwd) &&
1563 export GIT_CEILING_DIRECTORIES
&&
1569 # These functions are historical wrappers around "test-tool pkt-line"
1570 # for older tests. Use "test-tool pkt-line" itself in new tests.
1575 printf '%04x%s' "$((4 + ${#packet}))" "$packet"
1577 test-tool pkt-line pack
1582 test-tool pkt-line pack-raw-stdin
1586 test-tool pkt-line unpack
1589 # Converts base-16 data into base-8. The output is given as a sequence of
1590 # escaped octals, suitable for consumption by 'printf'.
1592 perl
-ne 'printf "\\%03o", hex for /../g'
1595 # Set the hash algorithm in use to $1. Only useful when testing the testsuite.
1600 # Detect the hash algorithm in use.
1601 test_detect_hash
() {
1602 test_hash_algo
="${GIT_TEST_DEFAULT_HASH:-sha1}"
1605 # Load common hash metadata and common placeholder object IDs for use with
1608 test -n "$test_hash_algo" || test_detect_hash
&&
1609 test_oid_cache
<"$TEST_DIRECTORY/oid-info/hash-info" &&
1610 test_oid_cache
<"$TEST_DIRECTORY/oid-info/oid"
1613 # Load key-value pairs from stdin suitable for use with test_oid. Blank lines
1614 # and lines starting with "#" are ignored. Keys must be shell identifier
1621 local tag rest k v
&&
1623 { test -n "$test_hash_algo" || test_detect_hash
; } &&
1640 if ! expr "$k" : '[a-z0-9][a-z0-9]*$' >/dev
/null
1642 BUG
'bad hash algorithm'
1644 eval "test_oid_${k}_$tag=\"\$v\""
1648 # Look up a per-hash value based on a key ($1). The value must have been loaded
1649 # by test_oid_init or test_oid_cache.
1651 local algo
="${test_hash_algo}" &&
1655 algo
="${1#--hash=}" &&
1661 local var
="test_oid_${algo}_$1" &&
1663 # If the variable is unset, we must be missing an entry for this
1664 # key-hash pair, so exit with an error.
1665 if eval "test -z \"\${$var+set}\""
1667 BUG
"undefined key '$1'"
1669 eval "printf '%s\n' \"\${$var}\""
1672 # Insert a slash into an object ID so it can be used to reference a location
1673 # under ".git/objects". For example, "deadbeef..." becomes "de/adbeef..".
1674 test_oid_to_path
() {
1675 local basename=${1#??}
1676 echo "${1%$basename}/$basename"
1679 # Parse oids from git ls-files --staged output
1680 test_parse_ls_files_stage_oids
() {
1684 # Parse oids from git ls-tree output
1685 test_parse_ls_tree_oids
() {
1689 # Choose a port number based on the test script's number and store it in
1690 # the given variable name, unless that variable already contains a number.
1694 if test $# -ne 1 ||
test -z "$var"
1696 BUG
"test_set_port requires a variable name"
1702 # No port is set in the given env var, use the test
1703 # number as port number instead.
1704 # Remove not only the leading 't', but all leading zeros
1705 # as well, so the arithmetic below won't (mis)interpret
1706 # a test number like '0123' as an octal value.
1707 port
=${this_test#${this_test%%[1-9]*}}
1708 if test "${port:-0}" -lt 1024
1710 # root-only port, use a larger one instead.
1711 port
=$
(($port + 10000))
1715 error
>&7 "invalid port number: $port"
1718 # The user has specified the port.
1722 # Make sure that parallel '--stress' test jobs get different
1724 port
=$
(($port + ${GIT_TEST_STRESS_JOB_NR:-0}))
1728 # Tests for the hidden file attribute on Windows
1729 test_path_is_hidden
() {
1730 test_have_prereq MINGW ||
1731 BUG
"test_path_is_hidden can only be used on Windows"
1733 # Use the output of `attrib`, ignore the absolute path
1734 case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H
*?
:*) return 0;; esac
1738 # Poor man's URI escaping. Good enough for the test suite whose trash
1739 # directory has a space in it. See 93c3fcbe4d4 (git-svn: attempt to
1740 # mimic SVN 1.7 URL canonicalization, 2012-07-28) for prior art.
1745 # Check that the given command was invoked as part of the
1746 # trace2-format trace on stdin.
1748 # test_subcommand [!] <command> <args>... < <trace>
1750 # For example, to look for an invocation of "git upload-pack
1753 # GIT_TRACE2_EVENT=event.log git fetch ... &&
1754 # test_subcommand git upload-pack "$PATH" <event.log
1756 # If the first parameter passed is !, this instead checks that
1757 # the given command was not called.
1759 test_subcommand
() {
1767 local expr=$
(printf '"%s",' "$@")
1770 if test -n "$negate"
1778 # Check that the given command was invoked as part of the
1779 # trace2-format trace on stdin.
1781 # test_region [!] <category> <label> git <command> <args>...
1783 # For example, to look for trace2_region_enter("index", "do_read_index", repo)
1784 # in an invocation of "git checkout HEAD~1", run
1786 # GIT_TRACE2_EVENT="$(pwd)/trace.txt" GIT_TRACE2_EVENT_NESTING=10 \
1787 # git checkout HEAD~1 &&
1788 # test_region index do_read_index <trace.txt
1790 # If the first parameter passed is !, this instead checks that
1791 # the given region was not entered.
1801 grep -e '"region_enter".*"category":"'"$1"'","label":"'"$2"\" "$3"
1804 if test $exitcode != $expect_exit
1809 grep -e '"region_leave".*"category":"'"$1"'","label":"'"$2"\" "$3"
1812 if test $exitcode != $expect_exit
1820 # Given a GIT_TRACE2_EVENT log over stdin, writes to stdout a list of URLs
1821 # sent to git-remote-https child processes.
1822 test_remote_https_urls
() {
1823 grep -e '"event":"child_start".*"argv":\["git-remote-https",".*"\]' |
1824 sed -e 's/{"event":"child_start".*"argv":\["git-remote-https","//g' \
1828 # Print the destination of symlink(s) provided as arguments. Basically
1829 # the same as the readlink command, but it's not available everywhere.
1831 perl
-le 'print readlink($_) for @ARGV' "$@"
1834 # Set mtime to a fixed "magic" timestamp in mid February 2009, before we
1835 # run an operation that may or may not touch the file. If the file was
1836 # touched, its timestamp will not accidentally have such an old timestamp,
1837 # as long as your filesystem clock is reasonably correct. To verify the
1838 # timestamp, follow up with test_is_magic_mtime.
1840 # An optional increment to the magic timestamp may be specified as second
1842 test_set_magic_mtime
() {
1843 local inc
=${2:-0} &&
1844 local mtime
=$
((1234567890 + $inc)) &&
1845 test-tool chmtime
=$mtime "$1" &&
1846 test_is_magic_mtime
"$1" $inc
1849 # Test whether the given file has the "magic" mtime set. This is meant to
1850 # be used in combination with test_set_magic_mtime.
1852 # An optional increment to the magic timestamp may be specified as second
1853 # argument. Usually, this should be the same increment which was used for
1854 # the associated test_set_magic_mtime.
1855 test_is_magic_mtime
() {
1856 local inc
=${2:-0} &&
1857 local mtime
=$
((1234567890 + $inc)) &&
1858 echo $mtime >.git
/test-mtime-expect
&&
1859 test-tool chmtime
--get "$1" >.git
/test-mtime-actual
&&
1860 test_cmp .git
/test-mtime-expect .git
/test-mtime-actual
1862 rm -f .git
/test-mtime-expect
1863 rm -f .git
/test-mtime-actual
1867 # Given two filenames, parse both using 'git config --list --file'
1868 # and compare the sorted output of those commands. Useful when
1869 # wanting to ignore whitespace differences and sorting concerns.
1870 test_cmp_config_output
() {
1871 git config
--list --file="$1" >config-expect
&&
1872 git config
--list --file="$2" >config-actual
&&
1873 sort config-expect
>sorted-expect
&&
1874 sort config-actual
>sorted-actual
&&
1875 test_cmp sorted-expect sorted-actual
1878 # Given a filename, extract its trailing hash as a hex string
1879 test_trailing_hash
() {
1881 tail -c $
(test_oid rawsz
) "$file" |