Merge branch 'wl/new-command-doc'
[git.git] / t / test-lib-functions.sh
blob58cfd2f1fdaea1bfea1733a9b0cec1fc06dcf39a
1 # Library of functions shared by all tests scripts, included by
2 # test-lib.sh.
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
27 # that we're using.
28 test_set_editor () {
29 FAKE_EDITOR="$1"
30 export FAKE_EDITOR
31 EDITOR='"$FAKE_EDITOR"'
32 export EDITOR
35 test_decode_color () {
36 awk '
37 function name(n) {
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)
65 printf "%s", name(0)
66 else {
67 n = split(codes, ary, ";");
68 sep = "";
69 for (i = 1; i <= n; i++) {
70 printf "%s%s", sep, name(ary[i]);
71 sep = ";"
74 printf ">";
75 $0 = substr($0, RSTART + RLENGTH, length($0) - RSTART - RLENGTH + 1);
77 print
82 lf_to_nul () {
83 perl -pe 'y/\012/\000/'
86 nul_to_q () {
87 perl -pe 'y/\000/Q/'
90 q_to_nul () {
91 perl -pe 'y/Q/\000/'
94 q_to_cr () {
95 tr Q '\015'
98 q_to_tab () {
99 tr Q '\011'
102 qz_to_tab_space () {
103 tr QZ '\011\040'
106 append_cr () {
107 sed -e 's/$/Q/' | tr Q '\015'
110 remove_cr () {
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
116 # place.
118 # Use sane_unset when that should not be considered an error.
120 sane_unset () {
121 unset "$@"
122 return 0
125 test_tick () {
126 if test -z "${test_tick+set}"
127 then
128 test_tick=1112911993
129 else
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
144 # running the test.
146 # Usage: test_pause [options]
147 # -t
148 # Use your original TERM instead of test-lib.sh's "dumb".
149 # This usually restores color output in the invoked shell.
150 # -s
151 # Invoke $SHELL instead of $TEST_SHELL_PATH.
152 # -h
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.
157 # -a
158 # Shortcut for -t -s -h
160 test_pause () {
161 PAUSE_TERM=$TERM &&
162 PAUSE_SHELL=$TEST_SHELL_PATH &&
163 PAUSE_HOME=$HOME &&
164 while test $# != 0
166 case "$1" in
168 PAUSE_TERM="$USER_TERM"
171 PAUSE_SHELL="$SHELL"
174 PAUSE_HOME="$USER_HOME"
177 PAUSE_TERM="$USER_TERM"
178 PAUSE_SHELL="$SHELL"
179 PAUSE_HOME="$USER_HOME"
182 break
184 esac
185 shift
186 done &&
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>
194 # -d <debugger>
195 # --debugger=<debugger>
196 # Use <debugger> instead of GDB
197 # -t
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
201 # running the test.
203 # Examples:
204 # debug git checkout master
205 # debug --debugger=nemiver git $ARGS
206 # debug -d "valgrind --tool=memcheck --track-origins=yes" git $ARGS
207 debug () {
208 GIT_DEBUGGER=1 &&
209 DEBUG_TERM=$TERM &&
210 while test $# != 0
212 case "$1" in
214 DEBUG_TERM="$USER_TERM"
217 GIT_DEBUGGER="$2" &&
218 shift
220 --debugger=*)
221 GIT_DEBUGGER="${1#*=}"
224 break
226 esac
227 shift
228 done &&
230 dotfiles=".gdbinit .lldbinit"
232 for dotfile in $dotfiles
234 dotfile="$USER_HOME/$dotfile" &&
235 test -f "$dotfile" && cp "$dotfile" "$HOME" || :
236 done &&
238 TERM="$DEBUG_TERM" GIT_DEBUGGER="${GIT_DEBUGGER}" "$@" <&6 >&5 2>&7 &&
240 for dotfile in $dotfiles
242 rm -f "$HOME/$dotfile"
243 done
246 # Usage: test_commit [options] <message> [<file> [<contents> [<tag>]]]
247 # -C <dir>:
248 # Run all git commands in directory <dir>
249 # --notick
250 # Do not call test_tick before making a commit
251 # --append
252 # Use ">>" instead of ">" when writing "<contents>" to "<file>"
253 # --printf
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
258 # ARGUMENT(s).
259 # --signoff
260 # Invoke "git commit" with --signoff
261 # --author <author>
262 # Invoke "git commit" with --author <author>
263 # --no-tag
264 # Do not tag the resulting commit
265 # --annotate
266 # Create an annotated tag with "--annotate -m <message>". Calls
267 # test_tick between making the commit and tag, unless --notick
268 # is given.
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>.
275 test_commit () {
276 local notick= &&
277 local echo=echo &&
278 local append= &&
279 local author= &&
280 local signoff= &&
281 local indir= &&
282 local tag=light &&
283 while test $# != 0
285 case "$1" in
286 --notick)
287 notick=yes
289 --printf)
290 echo=printf
292 --append)
293 append=yes
295 --author)
296 author="$2"
297 shift
299 --signoff)
300 signoff="$1"
302 --date)
303 notick=yes
304 GIT_COMMITTER_DATE="$2"
305 GIT_AUTHOR_DATE="$2"
306 shift
309 indir="$2"
310 shift
312 --no-tag)
313 tag=none
315 --annotate)
316 tag=annotate
319 break
321 esac
322 shift
323 done &&
324 indir=${indir:+"$indir"/} &&
325 local file=${2:-"$1.t"} &&
326 if test -n "$append"
327 then
328 $echo "${3-$1}" >>"$indir$file"
329 else
330 $echo "${3-$1}" >"$indir$file"
331 fi &&
332 git ${indir:+ -C "$indir"} add -- "$file" &&
333 if test -z "$notick"
334 then
335 test_tick
336 fi &&
337 git ${indir:+ -C "$indir"} commit \
338 ${author:+ --author "$author"} \
339 $signoff -m "$1" &&
340 case "$tag" in
341 none)
343 light)
344 git ${indir:+ -C "$indir"} tag "${4:-$1}"
346 annotate)
347 if test -z "$notick"
348 then
349 test_tick
350 fi &&
351 git ${indir:+ -C "$indir"} tag -a -m "$1" "${4:-$1}"
353 esac
356 # Call test_merge with the arguments "<message> <commit>", where <commit>
357 # can be a tag pointing to the commit-to-merge.
359 test_merge () {
360 label="$1" &&
361 shift &&
362 test_tick &&
363 git merge -m "$label" "$@" &&
364 git tag "$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>
371 # -C <dir>:
372 # Run all git commands in directory <dir>
373 # --ref=<n>:
374 # ref on which to create commits (default: HEAD)
375 # --start=<n>:
376 # number commit messages from <n> (default: 1)
377 # --message=<msg>:
378 # use <msg> as the commit mesasge (default: "commit %s")
379 # --filename=<fn>:
380 # modify <fn> in each commit (default: %s.t)
381 # --contents=<string>:
382 # place <string> in each file (default: "content %s")
383 # --id=<string>:
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
395 indir=.
396 ref=HEAD
398 message='commit %s'
399 filename='%s.t'
400 contents='content %s'
401 while test $# -gt 0
403 case "$1" in
405 indir=$2
406 shift
408 --ref=*)
409 ref=${1#--*=}
411 --start=*)
412 n=${1#--*=}
414 --message=*)
415 message=${1#--*=}
417 --filename=*)
418 filename=${1#--*=}
420 --contents=*)
421 contents=${1#--*=}
423 --id=*)
424 message="${1#--*=} %s"
425 filename="${1#--*=}-%s.t"
426 contents="${1#--*=} %s"
429 BUG "invalid test_commit_bulk option: $1"
432 break
434 esac
435 shift
436 done
437 total=$1
439 add_from=
440 if git -C "$indir" rev-parse --quiet --verify "$ref"
441 then
442 add_from=t
445 while test "$total" -gt 0
447 test_tick &&
448 echo "commit $ref"
449 printf 'author %s <%s> %s\n' \
450 "$GIT_AUTHOR_NAME" \
451 "$GIT_AUTHOR_EMAIL" \
452 "$GIT_AUTHOR_DATE"
453 printf 'committer %s <%s> %s\n' \
454 "$GIT_COMMITTER_NAME" \
455 "$GIT_COMMITTER_EMAIL" \
456 "$GIT_COMMITTER_DATE"
457 echo "data <<EOF"
458 printf "$message\n" $n
459 echo "EOF"
460 if test -n "$add_from"
461 then
462 echo "from $ref^0"
463 add_from=
465 printf "M 644 inline $filename\n" $n
466 echo "data <<EOF"
467 printf "$contents\n" $n
468 echo "EOF"
469 echo
470 n=$((n + 1))
471 total=$((total - 1))
472 done >"$tmpfile"
474 git -C "$indir" \
475 -c fastimport.unpacklimit=0 \
476 fast-import <"$tmpfile" || return 1
478 # This will be left in place on failure, which may aid debugging.
479 rm -f "$tmpfile"
481 # If we updated HEAD, then be nice and update the index and working
482 # tree, too.
483 if test "$ref" = "HEAD"
484 then
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.
494 test_chmod () {
495 chmod "$@" &&
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.
504 test_modebits () {
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.
510 test_unconfig () {
511 config_dir=
512 if test "$1" = -C
513 then
514 shift
515 config_dir=$1
516 shift
518 git ${config_dir:+-C "$config_dir"} config --unset-all "$@"
519 config_status=$?
520 case "$config_status" in
521 5) # ok, nothing to unset
522 config_status=0
524 esac
525 return $config_status
528 # Set git config, automatically unsetting it after the test is over.
529 test_config () {
530 config_dir=
531 if test "$1" = -C
532 then
533 shift
534 config_dir=$1
535 shift
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 "$@"
546 write_script () {
548 echo "#!${2-"$SHELL_PATH"}" &&
550 } >"$1" &&
551 chmod +x "$1"
554 # Usage: test_hook [options] <hook-name> <<-\EOF
556 # -C <dir>:
557 # Run all git commands in directory <dir>
558 # --setup
559 # Setup a hook for subsequent tests, i.e. don't remove it in a
560 # "test_when_finished"
561 # --clobber
562 # Overwrite an existing <hook-name>, if it exists. Implies
563 # --setup (i.e. the "test_when_finished" is assumed to have been
564 # set up already).
565 # --disable
566 # Disable (chmod -x) an existing <hook-name>, which must exist.
567 # --remove
568 # Remove (rm -f) an existing <hook-name>, which must exist.
569 test_hook () {
570 setup= &&
571 clobber= &&
572 disable= &&
573 remove= &&
574 indir= &&
575 while test $# != 0
577 case "$1" in
579 indir="$2" &&
580 shift
582 --setup)
583 setup=t
585 --clobber)
586 clobber=t
588 --disable)
589 disable=t
591 --remove)
592 remove=t
595 BUG "invalid argument: $1"
598 break
600 esac &&
601 shift
602 done &&
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"
608 then
609 test_path_is_file "$hook_file" &&
610 if test -n "$disable"
611 then
612 chmod -x "$hook_file"
613 elif test -n "$remove"
614 then
615 rm -f "$hook_file"
616 fi &&
617 return 0
618 fi &&
619 if test -z "$clobber"
620 then
621 test_path_is_missing "$hook_file"
622 fi &&
623 if test -z "$setup$clobber"
624 then
625 test_when_finished "rm \"$hook_file\""
626 fi &&
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 }"
646 test_set_prereq () {
647 if test -n "$GIT_TEST_FAIL_PREREQS_INTERNAL"
648 then
649 case "$1" in
650 # The "!" case is handled below with
651 # test_unset_prereq()
654 # List of things we can't easily pretend to not support
655 SYMLINKS)
657 # Inspecting whether GIT_TEST_FAIL_PREREQS is on
658 # should be unaffected.
659 FAIL_PREREQS)
662 return
663 esac
666 case "$1" in
668 test_unset_prereq "${1#!}"
671 satisfied_prereq="$satisfied_prereq$1 "
673 esac
675 satisfied_prereq=" "
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_ () {
685 script='
686 mkdir -p "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&
688 cd "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&'"$2"'
690 say >&3 "checking prerequisite: $1"
691 say >&3 "$script"
692 test_eval_ "$script"
693 eval_ret=$?
694 rm -rf "$TRASH_DIRECTORY/prereq-test-dir-$1"
695 if test "$eval_ret" = 0; then
696 say >&3 "prerequisite $1 ok"
697 else
698 say >&3 "prerequisite $1 not satisfied"
700 return $eval_ret
703 test_have_prereq () {
704 # prerequisites can be concatenated with ','
705 save_IFS=$IFS
706 IFS=,
707 set -- $*
708 IFS=$save_IFS
710 total_prereq=0
711 ok_prereq=0
712 missing_prereq=
714 for prerequisite
716 case "$prerequisite" in
718 negative_prereq=t
719 prerequisite=${prerequisite#!}
722 negative_prereq=
723 esac
725 case " $lazily_tested_prereq " in
726 *" $prerequisite "*)
729 case " $lazily_testable_prereq " in
730 *" $prerequisite "*)
731 eval "script=\$test_prereq_lazily_$prerequisite" &&
732 if test_run_lazy_prereq_ "$prerequisite" "$script"
733 then
734 test_set_prereq $prerequisite
736 lazily_tested_prereq="$lazily_tested_prereq$prerequisite "
737 esac
739 esac
741 total_prereq=$(($total_prereq + 1))
742 case "$satisfied_prereq" in
743 *" $prerequisite "*)
744 satisfied_this_prereq=t
747 satisfied_this_prereq=
748 esac
750 case "$satisfied_this_prereq,$negative_prereq" in
751 t,|,t)
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"
761 then
762 case " $GIT_TEST_REQUIRE_PREREQ " in
763 *" $prerequisite "*)
764 BAIL_OUT "required prereq $prerequisite failed"
766 esac
769 if test -z "$missing_prereq"
770 then
771 missing_prereq=$prerequisite
772 else
773 missing_prereq="$prerequisite,$missing_prereq"
775 esac
776 done
778 test $total_prereq = $ok_prereq
781 test_declared_prereq () {
782 case ",$test_prereq," in
783 *,$1,*)
784 return 0
786 esac
787 return 1
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 () {
797 test_start_ "$@"
798 test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
799 test "$#" = 2 ||
800 BUG "not 2 or 3 parameters to test-expect-failure"
801 test_verify_prereq
802 export test_prereq
803 if ! test_skip "$@"
804 then
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
808 then
809 test_known_broken_ok_ "$1"
810 else
811 test_known_broken_failure_ "$1"
814 test_finish_
817 test_expect_success () {
818 test_start_ "$@"
819 test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
820 test "$#" = 2 ||
821 BUG "not 2 or 3 parameters to test-expect-success"
822 test_verify_prereq
823 export test_prereq
824 if ! test_skip "$@"
825 then
826 test -n "$test_skip_test_preamble" ||
827 say >&3 "expecting success of $TEST_NUMBER.$test_count '$1': $2"
828 if test_run_ "$2"
829 then
830 test_ok_ "$1"
831 else
832 test_failure_ "$@"
835 test_finish_
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"
842 if ! test -f "$1"
843 then
844 echo "File $1 doesn't exist"
845 false
849 test_path_is_file_not_symlink () {
850 test "$#" -ne 1 && BUG "1 param"
851 test_path_is_file "$1" &&
852 if test -h "$1"
853 then
854 echo "$1 shouldn't be a symbolic link"
855 false
859 test_path_is_dir () {
860 test "$#" -ne 1 && BUG "1 param"
861 if ! test -d "$1"
862 then
863 echo "Directory $1 doesn't exist"
864 false
868 test_path_is_dir_not_symlink () {
869 test "$#" -ne 1 && BUG "1 param"
870 test_path_is_dir "$1" &&
871 if test -h "$1"
872 then
873 echo "$1 shouldn't be a symbolic link"
874 false
878 test_path_exists () {
879 test "$#" -ne 1 && BUG "1 param"
880 if ! test -e "$1"
881 then
882 echo "Path $1 doesn't exist"
883 false
887 test_path_is_symlink () {
888 test "$#" -ne 1 && BUG "1 param"
889 if ! test -h "$1"
890 then
891 echo "Symbolic link $1 doesn't exist"
892 false
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 '^\.\.?$')"
901 then
902 echo "Directory '$1' is not empty, it contains:"
903 ls -la "$1"
904 return 1
908 # Check if the file exists and has a size greater than zero
909 test_file_not_empty () {
910 test "$#" = 2 && BUG "2 param"
911 if ! test -s "$1"
912 then
913 echo "'$1' is not a non-empty file."
914 false
918 test_path_is_missing () {
919 test "$#" -ne 1 && BUG "1 param"
920 if test -e "$1"
921 then
922 echo "Path exists:"
923 ls -ld "$1"
924 false
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.
939 test_line_count () {
940 if test $# != 3
941 then
942 BUG "not 3 parameters to test_line_count"
943 elif ! test $(wc -l <"$3") "$1" "$2"
944 then
945 echo "test_line_count: line count for $3 !$1 $2"
946 cat "$3"
947 return 1
951 # SYNOPSIS:
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 &&
961 if test "$#" -le 3
962 then
963 BUG "expect 3 or more arguments"
964 fi &&
965 ops="$1" &&
966 val="$2" &&
967 shift 2 &&
968 if ! trashdir="$(git rev-parse --git-dir)/trash"; then
969 BUG "expect to be run inside a worktree"
970 fi &&
971 mkdir -p "$trashdir" &&
972 "$@" >"$trashdir/output" &&
973 test_line_count "$ops" "$val" "$trashdir/output"
977 test_file_size () {
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).
984 # Examples:
985 # `list_contains "foo,bar" bar` returns 0
986 # `list_contains "foo" bar` returns 1
988 list_contains () {
989 case ",$1," in
990 *,$2,*)
991 return 0
993 esac
994 return 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"
1003 then
1004 shift
1005 while test $# -gt 0
1007 case "$1" in
1008 *?=*)
1009 shift
1012 break
1014 esac
1015 done
1018 case "$1" in
1019 git|__git*|scalar|test-tool|test_terminal)
1020 return 0
1023 return 1
1025 esac
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' '
1032 # do something &&
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
1051 # is wrong:
1053 # test_must_fail grep pattern output
1055 # Instead use '!':
1057 # ! grep pattern output
1059 test_must_fail () {
1060 case "$1" in
1061 ok=*)
1062 _test_ok=${1#ok=}
1063 shift
1066 _test_ok=
1068 esac
1069 if ! test_must_fail_acceptable "$@"
1070 then
1071 echo >&7 "test_must_fail: only 'git' is allowed: $*"
1072 return 1
1074 "$@" 2>&7
1075 exit_code=$?
1076 if test $exit_code -eq 0 && ! list_contains "$_test_ok" success
1077 then
1078 echo >&4 "test_must_fail: command succeeded: $*"
1079 return 1
1080 elif test_match_signal 13 $exit_code && list_contains "$_test_ok" sigpipe
1081 then
1082 return 0
1083 elif test $exit_code -gt 129 && test $exit_code -le 192
1084 then
1085 echo >&4 "test_must_fail: died by signal $(($exit_code - 128)): $*"
1086 return 1
1087 elif test $exit_code -eq 127
1088 then
1089 echo >&4 "test_must_fail: command not found: $*"
1090 return 1
1091 elif test $exit_code -eq 126
1092 then
1093 echo >&4 "test_must_fail: valgrind error: $*"
1094 return 1
1096 return 0
1097 } 7>&2 2>&4
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 &&
1104 # do something
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
1114 } 7>&2 2>&4
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 () {
1124 want_code=$1
1125 shift
1126 "$@" 2>&7
1127 exit_code=$?
1128 if test $exit_code = $want_code
1129 then
1130 return 0
1133 echo >&4 "test_expect_code: command exited with $exit_code, we wanted $want_code $*"
1134 return 1
1135 } 7>&2 2>&4
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 &&
1142 # foo >actual &&
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"
1150 test_cmp () {
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 () {
1165 local GD &&
1166 if test "$1" = "-C"
1167 then
1168 shift &&
1169 GD="-C $1" &&
1170 shift
1171 fi &&
1172 printf "%s\n" "$1" >expect.config &&
1173 shift &&
1174 git $GD config "$@" >actual.config &&
1175 test_cmp expect.config actual.config
1178 # test_cmp_bin - helper to compare binary files
1180 test_cmp_bin () {
1181 test "$#" -ne 2 && BUG "2 param"
1182 cmp "$@"
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.
1188 test_i18ngrep () {
1189 eval "last_arg=\${$#}"
1191 test -f "$last_arg" ||
1192 BUG "test_i18ngrep requires a file to read as the last parameter"
1194 if test $# -lt 2 ||
1195 { test "x!" = "x$1" && test $# -lt 3 ; }
1196 then
1197 BUG "too few parameters to test_i18ngrep"
1200 if test "x!" = "x$1"
1201 then
1202 shift
1203 ! grep "$@" && return 0
1205 echo >&4 "error: '! grep $@' did find a match in:"
1206 else
1207 grep "$@" && return 0
1209 echo >&4 "error: 'grep $@' didn't find a match in:"
1212 if test -s "$last_arg"
1213 then
1214 cat >&4 "$last_arg"
1215 else
1216 echo >&4 "<File '$last_arg' is empty>"
1219 return 1
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.
1225 verbose () {
1226 "$@" && return 0
1227 echo >&4 "command failed: $(git rev-parse --sq-quote "$@")"
1228 return 1
1231 # Check if the file expected to be empty is indeed empty, and barfs
1232 # otherwise.
1234 test_must_be_empty () {
1235 test "$#" -ne 1 && BUG "1 param"
1236 test_path_is_file "$1" &&
1237 if test -s "$1"
1238 then
1239 echo "'$1' is not empty, it contains:"
1240 cat "$1"
1241 return 1
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
1247 # revisions.
1248 test_cmp_rev () {
1249 local op='=' wrong_result=different
1251 if test $# -ge 1 && test "x$1" = 'x!'
1252 then
1253 op='!='
1254 wrong_result='the same'
1255 shift
1257 if test $# != 2
1258 then
1259 BUG "test_cmp_rev requires two revisions, but got $#"
1260 else
1261 local r1 r2
1262 r1=$(git rev-parse --verify "$1") &&
1263 r2=$(git rev-parse --verify "$2") || return 1
1265 if ! test "$r1" "$op" "$r2"
1266 then
1267 cat >&4 <<-EOF
1268 error: two revisions point to $wrong_result objects:
1269 '$1': $r1
1270 '$2': $r2
1272 return 1
1277 # Compare paths respecting core.ignoreCase
1278 test_cmp_fspath () {
1279 if test "x$1" = "x$2"
1280 then
1281 return 0
1284 if test true != "$(git config --get --type=bool core.ignorecase)"
1285 then
1286 return 1
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
1298 # from 1.
1300 test_seq () {
1301 case $# in
1302 1) set 1 "$@" ;;
1303 2) ;;
1304 *) BUG "not 1 or 2 parameters to test_seq" ;;
1305 esac
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 ))
1311 done
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" &&
1320 # hello world
1323 # That would be roughly equivalent to
1325 # test_expect_success 'test core.capslock' '
1326 # git config core.capslock true &&
1327 # hello world
1328 # git config --unset core.capslock
1331 # except that the greeting and config --unset must both succeed for
1332 # the test to pass.
1334 # Note that under --immediate mode, no clean-up is done to help diagnose
1335 # what went wrong.
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"
1343 test_cleanup="{ $*
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' '
1351 # git daemon &
1352 # daemon_pid=$! &&
1353 # test_atexit 'kill $daemon_pid' &&
1354 # hello world
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
1359 # socket files.
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.
1365 test_atexit () {
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 () {
1378 git init "$@"
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.
1386 test_ln_s_add () {
1387 if test_have_prereq SYMLINKS
1388 then
1389 ln -s "$1" "$2" &&
1390 git update-index --add "$2"
1391 else
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 () {
1402 printf "%s\n" "$@"
1405 perl () {
1406 command "$PERL_PATH" "$@" 2>&7
1407 } 7>&2 2>&4
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
1415 # is unset.
1416 # Abort the test script if either the value of the variable or the default
1417 # are not valid bool values.
1419 test_bool_env () {
1420 if test $# != 2
1421 then
1422 BUG "test_bool_env requires two parameters (variable name and default value)"
1425 test-tool env-helper --type=bool --default="$2" --exit-code "$1"
1426 ret=$?
1427 case $ret in
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"
1433 esac
1434 return $ret
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
1446 then
1447 skip_all=$2
1448 test_done
1450 error "$2"
1453 # Like "env FOO=BAR some-program", but run inside a subshell, which means
1454 # it also works for shell functions (though those functions cannot impact
1455 # the environment outside of the test_env invocation).
1456 test_env () {
1458 while test $# -gt 0
1460 case "$1" in
1461 *=*)
1462 eval "${1%%=*}=\${1#*=}"
1463 eval "export ${1%%=*}"
1464 shift
1467 "$@" 2>&7
1468 exit
1470 esac
1471 done
1473 } 7>&2 2>&4
1475 # Returns true if the numeric exit code in "$2" represents the expected signal
1476 # in "$1". Signals should be given numerically.
1477 test_match_signal () {
1478 if test "$2" = "$((128 + $1))"
1479 then
1480 # POSIX
1481 return 0
1482 elif test "$2" = "$((256 + $1))"
1483 then
1484 # ksh
1485 return 0
1487 return 1
1490 # Read up to "$1" bytes (or to EOF) from stdin and write them to stdout.
1491 test_copy_bytes () {
1492 perl -e '
1493 my $len = $ARGV[1];
1494 while ($len > 0) {
1495 my $s;
1496 my $nread = sysread(STDIN, $s, $len);
1497 die "cannot read: $!" unless defined($nread);
1498 last unless $nread;
1499 print $s;
1500 $len -= $nread;
1502 ' - "$1"
1505 # run "$@" inside a non-git directory
1506 nongit () {
1507 test -d non-repo ||
1508 mkdir non-repo ||
1509 return 1
1512 GIT_CEILING_DIRECTORIES=$(pwd) &&
1513 export GIT_CEILING_DIRECTORIES &&
1514 cd non-repo &&
1515 "$@" 2>&7
1517 } 7>&2 2>&4
1519 # These functions are historical wrappers around "test-tool pkt-line"
1520 # for older tests. Use "test-tool pkt-line" itself in new tests.
1521 packetize () {
1522 if test $# -gt 0
1523 then
1524 packet="$*"
1525 printf '%04x%s' "$((4 + ${#packet}))" "$packet"
1526 else
1527 test-tool pkt-line pack
1531 packetize_raw () {
1532 test-tool pkt-line pack-raw-stdin
1535 depacketize () {
1536 test-tool pkt-line unpack
1539 # Converts base-16 data into base-8. The output is given as a sequence of
1540 # escaped octals, suitable for consumption by 'printf'.
1541 hex2oct () {
1542 perl -ne 'printf "\\%03o", hex for /../g'
1545 # Set the hash algorithm in use to $1. Only useful when testing the testsuite.
1546 test_set_hash () {
1547 test_hash_algo="$1"
1550 # Detect the hash algorithm in use.
1551 test_detect_hash () {
1552 test_hash_algo="${GIT_TEST_DEFAULT_HASH:-sha1}"
1555 # Load common hash metadata and common placeholder object IDs for use with
1556 # test_oid.
1557 test_oid_init () {
1558 test -n "$test_hash_algo" || test_detect_hash &&
1559 test_oid_cache <"$TEST_DIRECTORY/oid-info/hash-info" &&
1560 test_oid_cache <"$TEST_DIRECTORY/oid-info/oid"
1563 # Load key-value pairs from stdin suitable for use with test_oid. Blank lines
1564 # and lines starting with "#" are ignored. Keys must be shell identifier
1565 # characters.
1567 # Examples:
1568 # rawsz sha1:20
1569 # rawsz sha256:32
1570 test_oid_cache () {
1571 local tag rest k v &&
1573 { test -n "$test_hash_algo" || test_detect_hash; } &&
1574 while read tag rest
1576 case $tag in
1577 \#*)
1578 continue;;
1580 # non-empty
1583 # blank line
1584 continue;;
1585 esac &&
1587 k="${rest%:*}" &&
1588 v="${rest#*:}" &&
1590 if ! expr "$k" : '[a-z0-9][a-z0-9]*$' >/dev/null
1591 then
1592 BUG 'bad hash algorithm'
1593 fi &&
1594 eval "test_oid_${k}_$tag=\"\$v\""
1595 done
1598 # Look up a per-hash value based on a key ($1). The value must have been loaded
1599 # by test_oid_init or test_oid_cache.
1600 test_oid () {
1601 local algo="${test_hash_algo}" &&
1603 case "$1" in
1604 --hash=*)
1605 algo="${1#--hash=}" &&
1606 shift;;
1609 esac &&
1611 local var="test_oid_${algo}_$1" &&
1613 # If the variable is unset, we must be missing an entry for this
1614 # key-hash pair, so exit with an error.
1615 if eval "test -z \"\${$var+set}\""
1616 then
1617 BUG "undefined key '$1'"
1618 fi &&
1619 eval "printf '%s\n' \"\${$var}\""
1622 # Insert a slash into an object ID so it can be used to reference a location
1623 # under ".git/objects". For example, "deadbeef..." becomes "de/adbeef..".
1624 test_oid_to_path () {
1625 local basename=${1#??}
1626 echo "${1%$basename}/$basename"
1629 # Parse oids from git ls-files --staged output
1630 test_parse_ls_files_stage_oids () {
1631 awk '{print $2}' -
1634 # Parse oids from git ls-tree output
1635 test_parse_ls_tree_oids () {
1636 awk '{print $3}' -
1639 # Choose a port number based on the test script's number and store it in
1640 # the given variable name, unless that variable already contains a number.
1641 test_set_port () {
1642 local var=$1 port
1644 if test $# -ne 1 || test -z "$var"
1645 then
1646 BUG "test_set_port requires a variable name"
1649 eval port=\$$var
1650 case "$port" in
1652 # No port is set in the given env var, use the test
1653 # number as port number instead.
1654 # Remove not only the leading 't', but all leading zeros
1655 # as well, so the arithmetic below won't (mis)interpret
1656 # a test number like '0123' as an octal value.
1657 port=${this_test#${this_test%%[1-9]*}}
1658 if test "${port:-0}" -lt 1024
1659 then
1660 # root-only port, use a larger one instead.
1661 port=$(($port + 10000))
1664 *[!0-9]*|0*)
1665 error >&7 "invalid port number: $port"
1668 # The user has specified the port.
1670 esac
1672 # Make sure that parallel '--stress' test jobs get different
1673 # ports.
1674 port=$(($port + ${GIT_TEST_STRESS_JOB_NR:-0}))
1675 eval $var=$port
1678 # Tests for the hidden file attribute on Windows
1679 test_path_is_hidden () {
1680 test_have_prereq MINGW ||
1681 BUG "test_path_is_hidden can only be used on Windows"
1683 # Use the output of `attrib`, ignore the absolute path
1684 case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H*?:*) return 0;; esac
1685 return 1
1688 # Poor man's URI escaping. Good enough for the test suite whose trash
1689 # directory has a space in it. See 93c3fcbe4d4 (git-svn: attempt to
1690 # mimic SVN 1.7 URL canonicalization, 2012-07-28) for prior art.
1691 test_uri_escape() {
1692 sed 's/ /%20/g'
1695 # Check that the given command was invoked as part of the
1696 # trace2-format trace on stdin.
1698 # test_subcommand [!] <command> <args>... < <trace>
1700 # For example, to look for an invocation of "git upload-pack
1701 # /path/to/repo"
1703 # GIT_TRACE2_EVENT=event.log git fetch ... &&
1704 # test_subcommand git upload-pack "$PATH" <event.log
1706 # If the first parameter passed is !, this instead checks that
1707 # the given command was not called.
1709 test_subcommand () {
1710 local negate=
1711 if test "$1" = "!"
1712 then
1713 negate=t
1714 shift
1717 local expr=$(printf '"%s",' "$@")
1718 expr="${expr%,}"
1720 if test -n "$negate"
1721 then
1722 ! grep "\[$expr\]"
1723 else
1724 grep "\[$expr\]"
1728 # Check that the given command was invoked as part of the
1729 # trace2-format trace on stdin.
1731 # test_region [!] <category> <label> git <command> <args>...
1733 # For example, to look for trace2_region_enter("index", "do_read_index", repo)
1734 # in an invocation of "git checkout HEAD~1", run
1736 # GIT_TRACE2_EVENT="$(pwd)/trace.txt" GIT_TRACE2_EVENT_NESTING=10 \
1737 # git checkout HEAD~1 &&
1738 # test_region index do_read_index <trace.txt
1740 # If the first parameter passed is !, this instead checks that
1741 # the given region was not entered.
1743 test_region () {
1744 local expect_exit=0
1745 if test "$1" = "!"
1746 then
1747 expect_exit=1
1748 shift
1751 grep -e '"region_enter".*"category":"'"$1"'","label":"'"$2"\" "$3"
1752 exitcode=$?
1754 if test $exitcode != $expect_exit
1755 then
1756 return 1
1759 grep -e '"region_leave".*"category":"'"$1"'","label":"'"$2"\" "$3"
1760 exitcode=$?
1762 if test $exitcode != $expect_exit
1763 then
1764 return 1
1767 return 0
1770 # Given a GIT_TRACE2_EVENT log over stdin, writes to stdout a list of URLs
1771 # sent to git-remote-https child processes.
1772 test_remote_https_urls() {
1773 grep -e '"event":"child_start".*"argv":\["git-remote-https",".*"\]' |
1774 sed -e 's/{"event":"child_start".*"argv":\["git-remote-https","//g' \
1775 -e 's/"\]}//g'
1778 # Print the destination of symlink(s) provided as arguments. Basically
1779 # the same as the readlink command, but it's not available everywhere.
1780 test_readlink () {
1781 perl -le 'print readlink($_) for @ARGV' "$@"
1784 # Set mtime to a fixed "magic" timestamp in mid February 2009, before we
1785 # run an operation that may or may not touch the file. If the file was
1786 # touched, its timestamp will not accidentally have such an old timestamp,
1787 # as long as your filesystem clock is reasonably correct. To verify the
1788 # timestamp, follow up with test_is_magic_mtime.
1790 # An optional increment to the magic timestamp may be specified as second
1791 # argument.
1792 test_set_magic_mtime () {
1793 local inc=${2:-0} &&
1794 local mtime=$((1234567890 + $inc)) &&
1795 test-tool chmtime =$mtime "$1" &&
1796 test_is_magic_mtime "$1" $inc
1799 # Test whether the given file has the "magic" mtime set. This is meant to
1800 # be used in combination with test_set_magic_mtime.
1802 # An optional increment to the magic timestamp may be specified as second
1803 # argument. Usually, this should be the same increment which was used for
1804 # the associated test_set_magic_mtime.
1805 test_is_magic_mtime () {
1806 local inc=${2:-0} &&
1807 local mtime=$((1234567890 + $inc)) &&
1808 echo $mtime >.git/test-mtime-expect &&
1809 test-tool chmtime --get "$1" >.git/test-mtime-actual &&
1810 test_cmp .git/test-mtime-expect .git/test-mtime-actual
1811 local ret=$?
1812 rm -f .git/test-mtime-expect
1813 rm -f .git/test-mtime-actual
1814 return $ret
1817 # Given two filenames, parse both using 'git config --list --file'
1818 # and compare the sorted output of those commands. Useful when
1819 # wanting to ignore whitespace differences and sorting concerns.
1820 test_cmp_config_output () {
1821 git config --list --file="$1" >config-expect &&
1822 git config --list --file="$2" >config-actual &&
1823 sort config-expect >sorted-expect &&
1824 sort config-actual >sorted-actual &&
1825 test_cmp sorted-expect sorted-actual
1828 # Given a filename, extract its trailing hash as a hex string
1829 test_trailing_hash () {
1830 local file="$1" &&
1831 tail -c $(test_oid rawsz) "$file" |
1832 test-tool hexdump |
1833 sed "s/ //g"