]> git.ipfire.org Git - thirdparty/git.git/blob - t/test-lib-functions.sh
Merge branch 'es/locate-httpd-module-location-in-test'
[thirdparty/git.git] / t / test-lib-functions.sh
1 # Library of functions shared by all tests scripts, included by
2 # test-lib.sh.
3 #
4 # Copyright (c) 2005 Junio C Hamano
5 #
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.
10 #
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.
15 #
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/ .
18
19 # The semantics of the editor variables are that of invoking
20 # sh -c "$EDITOR \"$@\"" files ...
21 #
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.
25 #
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
33 }
34
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";
59 }
60 {
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 = ";"
72 }
73 }
74 printf ">";
75 $0 = substr($0, RSTART + RLENGTH, length($0) - RSTART - RLENGTH + 1);
76 }
77 print
78 }
79 '
80 }
81
82 lf_to_nul () {
83 perl -pe 'y/\012/\000/'
84 }
85
86 nul_to_q () {
87 perl -pe 'y/\000/Q/'
88 }
89
90 q_to_nul () {
91 perl -pe 'y/Q/\000/'
92 }
93
94 q_to_cr () {
95 tr Q '\015'
96 }
97
98 q_to_tab () {
99 tr Q '\011'
100 }
101
102 qz_to_tab_space () {
103 tr QZ '\011\040'
104 }
105
106 append_cr () {
107 sed -e 's/$/Q/' | tr Q '\015'
108 }
109
110 remove_cr () {
111 tr '\015' Q | sed -e 's/Q$//'
112 }
113
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.
117 #
118 # Use sane_unset when that should not be considered an error.
119
120 sane_unset () {
121 unset "$@"
122 return 0
123 }
124
125 test_tick () {
126 if test -z "${test_tick+set}"
127 then
128 test_tick=1112911993
129 else
130 test_tick=$(($test_tick + 60))
131 fi
132 GIT_COMMITTER_DATE="$test_tick -0700"
133 GIT_AUTHOR_DATE="$test_tick -0700"
134 export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
135 }
136
137 # Stop execution and start a shell. This is useful for debugging tests.
138 #
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.
145 #
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
159
160 test_pause () {
161 PAUSE_TERM=$TERM &&
162 PAUSE_SHELL=$TEST_SHELL_PATH &&
163 PAUSE_HOME=$HOME &&
164 while test $# != 0
165 do
166 case "$1" in
167 -t)
168 PAUSE_TERM="$USER_TERM"
169 ;;
170 -s)
171 PAUSE_SHELL="$SHELL"
172 ;;
173 -h)
174 PAUSE_HOME="$USER_HOME"
175 ;;
176 -a)
177 PAUSE_TERM="$USER_TERM"
178 PAUSE_SHELL="$SHELL"
179 PAUSE_HOME="$USER_HOME"
180 ;;
181 *)
182 break
183 ;;
184 esac
185 shift
186 done &&
187 TERM="$PAUSE_TERM" HOME="$PAUSE_HOME" "$PAUSE_SHELL" <&6 >&5 2>&7
188 }
189
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.
192 #
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.
202 #
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
211 do
212 case "$1" in
213 -t)
214 DEBUG_TERM="$USER_TERM"
215 ;;
216 -d)
217 GIT_DEBUGGER="$2" &&
218 shift
219 ;;
220 --debugger=*)
221 GIT_DEBUGGER="${1#*=}"
222 ;;
223 *)
224 break
225 ;;
226 esac
227 shift
228 done &&
229
230 dotfiles=".gdbinit .lldbinit"
231
232 for dotfile in $dotfiles
233 do
234 dotfile="$USER_HOME/$dotfile" &&
235 test -f "$dotfile" && cp "$dotfile" "$HOME" || :
236 done &&
237
238 TERM="$DEBUG_TERM" GIT_DEBUGGER="${GIT_DEBUGGER}" "$@" <&6 >&5 2>&7 &&
239
240 for dotfile in $dotfiles
241 do
242 rm -f "$HOME/$dotfile"
243 done
244 }
245
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.
269 #
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.
272 #
273 # <file>, <contents>, and <tag> all default to <message>.
274
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
284 do
285 case "$1" in
286 --notick)
287 notick=yes
288 ;;
289 --printf)
290 echo=printf
291 ;;
292 --append)
293 append=yes
294 ;;
295 --author)
296 author="$2"
297 shift
298 ;;
299 --signoff)
300 signoff="$1"
301 ;;
302 --date)
303 notick=yes
304 GIT_COMMITTER_DATE="$2"
305 GIT_AUTHOR_DATE="$2"
306 shift
307 ;;
308 -C)
309 indir="$2"
310 shift
311 ;;
312 --no-tag)
313 tag=none
314 ;;
315 --annotate)
316 tag=annotate
317 ;;
318 *)
319 break
320 ;;
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)
342 ;;
343 light)
344 git ${indir:+ -C "$indir"} tag "${4:-$1}"
345 ;;
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}"
352 ;;
353 esac
354 }
355
356 # Call test_merge with the arguments "<message> <commit>", where <commit>
357 # can be a tag pointing to the commit-to-merge.
358
359 test_merge () {
360 label="$1" &&
361 shift &&
362 test_tick &&
363 git merge -m "$label" "$@" &&
364 git tag "$label"
365 }
366
367 # Efficiently create <nr> commits, each with a unique number (from 1 to <nr>
368 # by default) in the commit message.
369 #
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
385 #
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:
388 #
389 # test_commit_bulk --filename=file --contents="modification %s"
390 #
391 # to have every commit touch the same file, but with unique content.
392 #
393 test_commit_bulk () {
394 tmpfile=.bulk-commit.input
395 indir=.
396 ref=HEAD
397 n=1
398 message='commit %s'
399 filename='%s.t'
400 contents='content %s'
401 while test $# -gt 0
402 do
403 case "$1" in
404 -C)
405 indir=$2
406 shift
407 ;;
408 --ref=*)
409 ref=${1#--*=}
410 ;;
411 --start=*)
412 n=${1#--*=}
413 ;;
414 --message=*)
415 message=${1#--*=}
416 ;;
417 --filename=*)
418 filename=${1#--*=}
419 ;;
420 --contents=*)
421 contents=${1#--*=}
422 ;;
423 --id=*)
424 message="${1#--*=} %s"
425 filename="${1#--*=}-%s.t"
426 contents="${1#--*=} %s"
427 ;;
428 -*)
429 BUG "invalid test_commit_bulk option: $1"
430 ;;
431 *)
432 break
433 ;;
434 esac
435 shift
436 done
437 total=$1
438
439 add_from=
440 if git -C "$indir" rev-parse --quiet --verify "$ref"
441 then
442 add_from=t
443 fi
444
445 while test "$total" -gt 0
446 do
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=
464 fi
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"
473
474 git -C "$indir" \
475 -c fastimport.unpacklimit=0 \
476 fast-import <"$tmpfile" || return 1
477
478 # This will be left in place on failure, which may aid debugging.
479 rm -f "$tmpfile"
480
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
486 fi
487
488 }
489
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.
493
494 test_chmod () {
495 chmod "$@" &&
496 git update-index --add "--chmod=$@"
497 }
498
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.
503 #
504 test_modebits () {
505 ls -ld "$1" | sed -e 's|^\(..........\).*|\1|' \
506 -e 's|^\(......\)S|\1-|' -e 's|^\(......\)s|\1x|'
507 }
508
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
517 fi
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
523 ;;
524 esac
525 return $config_status
526 }
527
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
536 fi
537 test_when_finished "test_unconfig ${config_dir:+-C '$config_dir'} '$1'" &&
538 git ${config_dir:+-C "$config_dir"} config "$@"
539 }
540
541 test_config_global () {
542 test_when_finished "test_unconfig --global '$1'" &&
543 git config --global "$@"
544 }
545
546 write_script () {
547 {
548 echo "#!${2-"$SHELL_PATH"}" &&
549 cat
550 } >"$1" &&
551 chmod +x "$1"
552 }
553
554 # Usage: test_hook [options] <hook-name> <<-\EOF
555 #
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
576 do
577 case "$1" in
578 -C)
579 indir="$2" &&
580 shift
581 ;;
582 --setup)
583 setup=t
584 ;;
585 --clobber)
586 clobber=t
587 ;;
588 --disable)
589 disable=t
590 ;;
591 --remove)
592 remove=t
593 ;;
594 -*)
595 BUG "invalid argument: $1"
596 ;;
597 *)
598 break
599 ;;
600 esac &&
601 shift
602 done &&
603
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"
628 }
629
630 # Use test_set_prereq to tell that a particular prerequisite is available.
631 # The prerequisite can later be checked for in two ways:
632 #
633 # - Explicitly using test_have_prereq.
634 #
635 # - Implicitly by specifying the prerequisite tag in the calls to
636 # test_expect_{success,failure}
637 #
638 # The single parameter is the prerequisite tag (a simple word, in all
639 # capital letters by convention).
640
641 test_unset_prereq () {
642 ! test_have_prereq "$1" ||
643 satisfied_prereq="${satisfied_prereq% $1 *} ${satisfied_prereq#* $1 }"
644 }
645
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()
652 !*)
653 ;;
654 # List of things we can't easily pretend to not support
655 SYMLINKS)
656 ;;
657 # Inspecting whether GIT_TEST_FAIL_PREREQS is on
658 # should be unaffected.
659 FAIL_PREREQS)
660 ;;
661 *)
662 return
663 esac
664 fi
665
666 case "$1" in
667 !*)
668 test_unset_prereq "${1#!}"
669 ;;
670 *)
671 satisfied_prereq="$satisfied_prereq$1 "
672 ;;
673 esac
674 }
675 satisfied_prereq=" "
676 lazily_testable_prereq= lazily_tested_prereq=
677
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
682 }
683
684 test_run_lazy_prereq_ () {
685 script='
686 mkdir -p "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&
687 (
688 cd "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&'"$2"'
689 )'
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"
699 fi
700 return $eval_ret
701 }
702
703 test_have_prereq () {
704 # prerequisites can be concatenated with ','
705 save_IFS=$IFS
706 IFS=,
707 set -- $*
708 IFS=$save_IFS
709
710 total_prereq=0
711 ok_prereq=0
712 missing_prereq=
713
714 for prerequisite
715 do
716 case "$prerequisite" in
717 !*)
718 negative_prereq=t
719 prerequisite=${prerequisite#!}
720 ;;
721 *)
722 negative_prereq=
723 esac
724
725 case " $lazily_tested_prereq " in
726 *" $prerequisite "*)
727 ;;
728 *)
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
735 fi
736 lazily_tested_prereq="$lazily_tested_prereq$prerequisite "
737 esac
738 ;;
739 esac
740
741 total_prereq=$(($total_prereq + 1))
742 case "$satisfied_prereq" in
743 *" $prerequisite "*)
744 satisfied_this_prereq=t
745 ;;
746 *)
747 satisfied_this_prereq=
748 esac
749
750 case "$satisfied_this_prereq,$negative_prereq" in
751 t,|,t)
752 ok_prereq=$(($ok_prereq + 1))
753 ;;
754 *)
755 # Keep a list of missing prerequisites; restore
756 # the negative marker if necessary.
757 prerequisite=${negative_prereq:+!}$prerequisite
758
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"
765 ;;
766 esac
767 fi
768
769 if test -z "$missing_prereq"
770 then
771 missing_prereq=$prerequisite
772 else
773 missing_prereq="$prerequisite,$missing_prereq"
774 fi
775 esac
776 done
777
778 test $total_prereq = $ok_prereq
779 }
780
781 test_declared_prereq () {
782 case ",$test_prereq," in
783 *,$1,*)
784 return 0
785 ;;
786 esac
787 return 1
788 }
789
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"
794 }
795
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"
812 fi
813 fi
814 test_finish_
815 }
816
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_ "$@"
833 fi
834 fi
835 test_finish_
836 }
837
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
846 fi
847 }
848
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
856 fi
857 }
858
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
865 fi
866 }
867
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
875 fi
876 }
877
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
884 fi
885 }
886
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
893 fi
894 }
895
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
905 fi
906 }
907
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
915 fi
916 }
917
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
925 fi
926 }
927
928 # test_line_count checks that a file has the number of lines it
929 # ought to. For example:
930 #
931 # test_expect_success 'produce exactly one line of output' '
932 # do something >output &&
933 # test_line_count = 1 output
934 # '
935 #
936 # is like "test $(wc -l <output) = 1" except that it passes the
937 # output through when the number of lines is wrong.
938
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
948 fi
949 }
950
951 # SYNOPSIS:
952 # test_stdout_line_count <bin-ops> <value> <cmd> [<args>...]
953 #
954 # test_stdout_line_count checks that the output of a command has the number
955 # of lines it ought to. For example:
956 #
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"
974 }
975
976
977 test_file_size () {
978 test "$#" -ne 1 && BUG "1 param"
979 test-tool path-utils file-size "$1"
980 }
981
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
987
988 list_contains () {
989 case ",$1," in
990 *,$2,*)
991 return 0
992 ;;
993 esac
994 return 1
995 }
996
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
1006 do
1007 case "$1" in
1008 *?=*)
1009 shift
1010 ;;
1011 *)
1012 break
1013 ;;
1014 esac
1015 done
1016 fi
1017
1018 case "$1" in
1019 git|__git*|test-tool|test_terminal)
1020 return 0
1021 ;;
1022 *)
1023 return 1
1024 ;;
1025 esac
1026 }
1027
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:
1030 #
1031 # test_expect_success 'complain and die' '
1032 # do something &&
1033 # do something else &&
1034 # test_must_fail git checkout ../outerspace
1035 # '
1036 #
1037 # Writing this as "! git checkout ../outerspace" is wrong, because
1038 # the failure could be due to a segv. We want a controlled failure.
1039 #
1040 # Accepts the following options:
1041 #
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.)
1047 #
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:
1052 #
1053 # test_must_fail grep pattern output
1054 #
1055 # Instead use '!':
1056 #
1057 # ! grep pattern output
1058
1059 test_must_fail () {
1060 case "$1" in
1061 ok=*)
1062 _test_ok=${1#ok=}
1063 shift
1064 ;;
1065 *)
1066 _test_ok=
1067 ;;
1068 esac
1069 if ! test_must_fail_acceptable "$@"
1070 then
1071 echo >&7 "test_must_fail: only 'git' is allowed: $*"
1072 return 1
1073 fi
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
1095 fi
1096 return 0
1097 } 7>&2 2>&4
1098
1099 # Similar to test_must_fail, but tolerates success, too. This is
1100 # meant to be used in contexts like:
1101 #
1102 # test_expect_success 'some command works without configuration' '
1103 # test_might_fail git config --unset all.configuration &&
1104 # do something
1105 # '
1106 #
1107 # Writing "git config --unset all.configuration || :" would be wrong,
1108 # because we want to notice if it fails due to segv.
1109 #
1110 # Accepts the same options as test_must_fail.
1111
1112 test_might_fail () {
1113 test_must_fail ok=success "$@" 2>&7
1114 } 7>&2 2>&4
1115
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:
1118 #
1119 # test_expect_success 'Merge with d/f conflicts' '
1120 # test_expect_code 1 git merge "merge msg" B master
1121 # '
1122
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
1131 fi
1132
1133 echo >&4 "test_expect_code: command exited with $exit_code, we wanted $want_code $*"
1134 return 1
1135 } 7>&2 2>&4
1136
1137 # test_cmp is a helper function to compare actual and expected output.
1138 # You can use it like:
1139 #
1140 # test_expect_success 'foo works' '
1141 # echo expected >expected &&
1142 # foo >actual &&
1143 # test_cmp expected actual
1144 # '
1145 #
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"
1149
1150 test_cmp () {
1151 test "$#" -ne 2 && BUG "2 param"
1152 eval "$GIT_TEST_CMP" '"$@"'
1153 }
1154
1155 # Check that the given config key has the expected value.
1156 #
1157 # test_cmp_config [-C <dir>] <expected-value>
1158 # [<git-config-options>...] <config-key>
1159 #
1160 # for example to check that the value of core.bar is foo
1161 #
1162 # test_cmp_config foo core.bar
1163 #
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
1176 }
1177
1178 # test_cmp_bin - helper to compare binary files
1179
1180 test_cmp_bin () {
1181 test "$#" -ne 2 && BUG "2 param"
1182 cmp "$@"
1183 }
1184
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=\${$#}"
1190
1191 test -f "$last_arg" ||
1192 BUG "test_i18ngrep requires a file to read as the last parameter"
1193
1194 if test $# -lt 2 ||
1195 { test "x!" = "x$1" && test $# -lt 3 ; }
1196 then
1197 BUG "too few parameters to test_i18ngrep"
1198 fi
1199
1200 if test "x!" = "x$1"
1201 then
1202 shift
1203 ! grep "$@" && return 0
1204
1205 echo >&4 "error: '! grep $@' did find a match in:"
1206 else
1207 grep "$@" && return 0
1208
1209 echo >&4 "error: 'grep $@' didn't find a match in:"
1210 fi
1211
1212 if test -s "$last_arg"
1213 then
1214 cat >&4 "$last_arg"
1215 else
1216 echo >&4 "<File '$last_arg' is empty>"
1217 fi
1218
1219 return 1
1220 }
1221
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
1229 }
1230
1231 # Check if the file expected to be empty is indeed empty, and barfs
1232 # otherwise.
1233
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
1242 fi
1243 }
1244
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
1250
1251 if test $# -ge 1 && test "x$1" = 'x!'
1252 then
1253 op='!='
1254 wrong_result='the same'
1255 shift
1256 fi
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
1264
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
1271 EOF
1272 return 1
1273 fi
1274 fi
1275 }
1276
1277 # Compare paths respecting core.ignoreCase
1278 test_cmp_fspath () {
1279 if test "x$1" = "x$2"
1280 then
1281 return 0
1282 fi
1283
1284 if test true != "$(git config --get --type=bool core.ignorecase)"
1285 then
1286 return 1
1287 fi
1288
1289 test "x$(echo "$1" | tr A-Z a-z)" = "x$(echo "$2" | tr A-Z a-z)"
1290 }
1291
1292 # Print a sequence of integers in increasing order, either with
1293 # two arguments (start and end):
1294 #
1295 # test_seq 1 5 -- outputs 1 2 3 4 5 one line at a time
1296 #
1297 # or with one argument (end), in which case it starts counting
1298 # from 1.
1299
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"
1308 do
1309 echo "$test_seq_counter__"
1310 test_seq_counter__=$(( $test_seq_counter__ + 1 ))
1311 done
1312 }
1313
1314 # This function can be used to schedule some commands to be run
1315 # unconditionally at the end of the test to restore sanity:
1316 #
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
1321 # '
1322 #
1323 # That would be roughly equivalent to
1324 #
1325 # test_expect_success 'test core.capslock' '
1326 # git config core.capslock true &&
1327 # hello world
1328 # git config --unset core.capslock
1329 # '
1330 #
1331 # except that the greeting and config --unset must both succeed for
1332 # the test to pass.
1333 #
1334 # Note that under --immediate mode, no clean-up is done to help diagnose
1335 # what went wrong.
1336
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"
1345 }
1346
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:
1349 #
1350 # test_expect_success 'test git daemon' '
1351 # git daemon &
1352 # daemon_pid=$! &&
1353 # test_atexit 'kill $daemon_pid' &&
1354 # hello world
1355 # '
1356 #
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.
1360 #
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.
1364
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"
1373 }
1374
1375 # Deprecated wrapper for "git init", use "git init" directly instead
1376 # Usage: test_create_repo <directory>
1377 test_create_repo () {
1378 git init "$@"
1379 }
1380
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.
1385
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"
1397 fi
1398 }
1399
1400 # This function writes out its parameters, one per line
1401 test_write_lines () {
1402 printf "%s\n" "$@"
1403 }
1404
1405 perl () {
1406 command "$PERL_PATH" "$@" 2>&7
1407 } 7>&2 2>&4
1408
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.
1411 #
1412 # test_bool_env GIT_TEST_HTTPD <default-value>
1413 #
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.
1418
1419 test_bool_env () {
1420 if test $# != 2
1421 then
1422 BUG "test_bool_env requires two parameters (variable name and default value)"
1423 fi
1424
1425 git env--helper --type=bool --default="$2" --exit-code "$1"
1426 ret=$?
1427 case $ret in
1428 0|1) # unset or valid bool value
1429 ;;
1430 *) # invalid bool value or something unexpected
1431 error >&7 "test_bool_env requires bool values both for \$$1 and for the default fallback"
1432 ;;
1433 esac
1434 return $ret
1435 }
1436
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.
1441 #
1442 # The error/skip message should be given by $2.
1443 #
1444 test_skip_or_die () {
1445 if ! test_bool_env "$1" false
1446 then
1447 skip_all=$2
1448 test_done
1449 fi
1450 error "$2"
1451 }
1452
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.
1455
1456 # A test_cmp function that treats LF and CRLF equal and avoids to fork
1457 # diff when possible.
1458 mingw_test_cmp () {
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=
1462
1463 # When text came from stdin (one argument is '-') we must feed it
1464 # to diff.
1465 local stdin_for_diff=
1466
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"
1471 then
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" = -
1476 then
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"
1482 then
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"'
1487 fi
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"
1492 }
1493
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.
1498 local line
1499 while :
1500 do
1501 if IFS=$'\r' read -r -d $'\n' line
1502 then
1503 # good
1504 line=$line$'\n'
1505 else
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
1509 if test -z "$line"
1510 then
1511 # EOF, really
1512 break
1513 fi
1514 fi
1515 eval "$1=\$$1\$line"
1516 done
1517 }
1518
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).
1522 test_env () {
1523 (
1524 while test $# -gt 0
1525 do
1526 case "$1" in
1527 *=*)
1528 eval "${1%%=*}=\${1#*=}"
1529 eval "export ${1%%=*}"
1530 shift
1531 ;;
1532 *)
1533 "$@" 2>&7
1534 exit
1535 ;;
1536 esac
1537 done
1538 )
1539 } 7>&2 2>&4
1540
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))"
1545 then
1546 # POSIX
1547 return 0
1548 elif test "$2" = "$((256 + $1))"
1549 then
1550 # ksh
1551 return 0
1552 fi
1553 return 1
1554 }
1555
1556 # Read up to "$1" bytes (or to EOF) from stdin and write them to stdout.
1557 test_copy_bytes () {
1558 perl -e '
1559 my $len = $ARGV[1];
1560 while ($len > 0) {
1561 my $s;
1562 my $nread = sysread(STDIN, $s, $len);
1563 die "cannot read: $!" unless defined($nread);
1564 last unless $nread;
1565 print $s;
1566 $len -= $nread;
1567 }
1568 ' - "$1"
1569 }
1570
1571 # run "$@" inside a non-git directory
1572 nongit () {
1573 test -d non-repo ||
1574 mkdir non-repo ||
1575 return 1
1576
1577 (
1578 GIT_CEILING_DIRECTORIES=$(pwd) &&
1579 export GIT_CEILING_DIRECTORIES &&
1580 cd non-repo &&
1581 "$@" 2>&7
1582 )
1583 } 7>&2 2>&4
1584
1585 # These functions are historical wrappers around "test-tool pkt-line"
1586 # for older tests. Use "test-tool pkt-line" itself in new tests.
1587 packetize () {
1588 if test $# -gt 0
1589 then
1590 packet="$*"
1591 printf '%04x%s' "$((4 + ${#packet}))" "$packet"
1592 else
1593 test-tool pkt-line pack
1594 fi
1595 }
1596
1597 packetize_raw () {
1598 test-tool pkt-line pack-raw-stdin
1599 }
1600
1601 depacketize () {
1602 test-tool pkt-line unpack
1603 }
1604
1605 # Converts base-16 data into base-8. The output is given as a sequence of
1606 # escaped octals, suitable for consumption by 'printf'.
1607 hex2oct () {
1608 perl -ne 'printf "\\%03o", hex for /../g'
1609 }
1610
1611 # Set the hash algorithm in use to $1. Only useful when testing the testsuite.
1612 test_set_hash () {
1613 test_hash_algo="$1"
1614 }
1615
1616 # Detect the hash algorithm in use.
1617 test_detect_hash () {
1618 test_hash_algo="${GIT_TEST_DEFAULT_HASH:-sha1}"
1619 }
1620
1621 # Load common hash metadata and common placeholder object IDs for use with
1622 # test_oid.
1623 test_oid_init () {
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"
1627 }
1628
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
1631 # characters.
1632 #
1633 # Examples:
1634 # rawsz sha1:20
1635 # rawsz sha256:32
1636 test_oid_cache () {
1637 local tag rest k v &&
1638
1639 { test -n "$test_hash_algo" || test_detect_hash; } &&
1640 while read tag rest
1641 do
1642 case $tag in
1643 \#*)
1644 continue;;
1645 ?*)
1646 # non-empty
1647 ;;
1648 *)
1649 # blank line
1650 continue;;
1651 esac &&
1652
1653 k="${rest%:*}" &&
1654 v="${rest#*:}" &&
1655
1656 if ! expr "$k" : '[a-z0-9][a-z0-9]*$' >/dev/null
1657 then
1658 BUG 'bad hash algorithm'
1659 fi &&
1660 eval "test_oid_${k}_$tag=\"\$v\""
1661 done
1662 }
1663
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.
1666 test_oid () {
1667 local algo="${test_hash_algo}" &&
1668
1669 case "$1" in
1670 --hash=*)
1671 algo="${1#--hash=}" &&
1672 shift;;
1673 *)
1674 ;;
1675 esac &&
1676
1677 local var="test_oid_${algo}_$1" &&
1678
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}\""
1682 then
1683 BUG "undefined key '$1'"
1684 fi &&
1685 eval "printf '%s' \"\${$var}\""
1686 }
1687
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"
1693 }
1694
1695 # Parse oids from git ls-files --staged output
1696 test_parse_ls_files_stage_oids () {
1697 awk '{print $2}' -
1698 }
1699
1700 # Parse oids from git ls-tree output
1701 test_parse_ls_tree_oids () {
1702 awk '{print $3}' -
1703 }
1704
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.
1707 test_set_port () {
1708 local var=$1 port
1709
1710 if test $# -ne 1 || test -z "$var"
1711 then
1712 BUG "test_set_port requires a variable name"
1713 fi
1714
1715 eval port=\$$var
1716 case "$port" in
1717 "")
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
1725 then
1726 # root-only port, use a larger one instead.
1727 port=$(($port + 10000))
1728 fi
1729 ;;
1730 *[!0-9]*|0*)
1731 error >&7 "invalid port number: $port"
1732 ;;
1733 *)
1734 # The user has specified the port.
1735 ;;
1736 esac
1737
1738 # Make sure that parallel '--stress' test jobs get different
1739 # ports.
1740 port=$(($port + ${GIT_TEST_STRESS_JOB_NR:-0}))
1741 eval $var=$port
1742 }
1743
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"
1748
1749 # Use the output of `attrib`, ignore the absolute path
1750 case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H*?:*) return 0;; esac
1751 return 1
1752 }
1753
1754 # Check that the given command was invoked as part of the
1755 # trace2-format trace on stdin.
1756 #
1757 # test_subcommand [!] <command> <args>... < <trace>
1758 #
1759 # For example, to look for an invocation of "git upload-pack
1760 # /path/to/repo"
1761 #
1762 # GIT_TRACE2_EVENT=event.log git fetch ... &&
1763 # test_subcommand git upload-pack "$PATH" <event.log
1764 #
1765 # If the first parameter passed is !, this instead checks that
1766 # the given command was not called.
1767 #
1768 test_subcommand () {
1769 local negate=
1770 if test "$1" = "!"
1771 then
1772 negate=t
1773 shift
1774 fi
1775
1776 local expr=$(printf '"%s",' "$@")
1777 expr="${expr%,}"
1778
1779 if test -n "$negate"
1780 then
1781 ! grep "\[$expr\]"
1782 else
1783 grep "\[$expr\]"
1784 fi
1785 }
1786
1787 # Check that the given command was invoked as part of the
1788 # trace2-format trace on stdin.
1789 #
1790 # test_region [!] <category> <label> git <command> <args>...
1791 #
1792 # For example, to look for trace2_region_enter("index", "do_read_index", repo)
1793 # in an invocation of "git checkout HEAD~1", run
1794 #
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
1798 #
1799 # If the first parameter passed is !, this instead checks that
1800 # the given region was not entered.
1801 #
1802 test_region () {
1803 local expect_exit=0
1804 if test "$1" = "!"
1805 then
1806 expect_exit=1
1807 shift
1808 fi
1809
1810 grep -e '"region_enter".*"category":"'"$1"'","label":"'"$2"\" "$3"
1811 exitcode=$?
1812
1813 if test $exitcode != $expect_exit
1814 then
1815 return 1
1816 fi
1817
1818 grep -e '"region_leave".*"category":"'"$1"'","label":"'"$2"\" "$3"
1819 exitcode=$?
1820
1821 if test $exitcode != $expect_exit
1822 then
1823 return 1
1824 fi
1825
1826 return 0
1827 }
1828
1829 # Print the destination of symlink(s) provided as arguments. Basically
1830 # the same as the readlink command, but it's not available everywhere.
1831 test_readlink () {
1832 perl -le 'print readlink($_) for @ARGV' "$@"
1833 }
1834
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.
1840 #
1841 # An optional increment to the magic timestamp may be specified as second
1842 # argument.
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
1848 }
1849
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.
1852 #
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
1862 local ret=$?
1863 rm -f .git/test-mtime-expect
1864 rm -f .git/test-mtime-actual
1865 return $ret
1866 }
1867
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
1877 }