test-lib-functions: reword "test_commit --append" docs
[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
141 test_pause () {
142         "$SHELL_PATH" <&6 >&5 2>&7
143 }
144
145 # Wrap git with a debugger. Adding this to a command can make it easier
146 # to understand what is going on in a failing test.
147 #
148 # Examples:
149 #     debug git checkout master
150 #     debug --debugger=nemiver git $ARGS
151 #     debug -d "valgrind --tool=memcheck --track-origins=yes" git $ARGS
152 debug () {
153         case "$1" in
154         -d)
155                 GIT_DEBUGGER="$2" &&
156                 shift 2
157                 ;;
158         --debugger=*)
159                 GIT_DEBUGGER="${1#*=}" &&
160                 shift 1
161                 ;;
162         *)
163                 GIT_DEBUGGER=1
164                 ;;
165         esac &&
166         GIT_DEBUGGER="${GIT_DEBUGGER}" "$@" <&6 >&5 2>&7
167 }
168
169 # Usage: test_commit [options] <message> [<file> [<contents> [<tag>]]]
170 #   -C <dir>:
171 #       Run all git commands in directory <dir>
172 #   --notick
173 #       Do not call test_tick before making a commit
174 #   --append
175 #       Use ">>" instead of ">" when writing "<contents>" to "<file>"
176 #   --signoff
177 #       Invoke "git commit" with --signoff
178 #   --author <author>
179 #       Invoke "git commit" with --author <author>
180 #
181 # This will commit a file with the given contents and the given commit
182 # message, and tag the resulting commit with the given tag name.
183 #
184 # <file>, <contents>, and <tag> all default to <message>.
185
186 test_commit () {
187         notick= &&
188         append= &&
189         author= &&
190         signoff= &&
191         indir= &&
192         no_tag= &&
193         while test $# != 0
194         do
195                 case "$1" in
196                 --notick)
197                         notick=yes
198                         ;;
199                 --append)
200                         append=yes
201                         ;;
202                 --author)
203                         author="$2"
204                         shift
205                         ;;
206                 --signoff)
207                         signoff="$1"
208                         ;;
209                 --date)
210                         notick=yes
211                         GIT_COMMITTER_DATE="$2"
212                         GIT_AUTHOR_DATE="$2"
213                         shift
214                         ;;
215                 -C)
216                         indir="$2"
217                         shift
218                         ;;
219                 --no-tag)
220                         no_tag=yes
221                         ;;
222                 *)
223                         break
224                         ;;
225                 esac
226                 shift
227         done &&
228         indir=${indir:+"$indir"/} &&
229         file=${2:-"$1.t"} &&
230         if test -n "$append"
231         then
232                 echo "${3-$1}" >>"$indir$file"
233         else
234                 echo "${3-$1}" >"$indir$file"
235         fi &&
236         git ${indir:+ -C "$indir"} add "$file" &&
237         if test -z "$notick"
238         then
239                 test_tick
240         fi &&
241         git ${indir:+ -C "$indir"} commit \
242             ${author:+ --author "$author"} \
243             $signoff -m "$1" &&
244         if test -z "$no_tag"
245         then
246                 git ${indir:+ -C "$indir"} tag "${4:-$1}"
247         fi
248 }
249
250 # Call test_merge with the arguments "<message> <commit>", where <commit>
251 # can be a tag pointing to the commit-to-merge.
252
253 test_merge () {
254         label="$1" &&
255         shift &&
256         test_tick &&
257         git merge -m "$label" "$@" &&
258         git tag "$label"
259 }
260
261 # Efficiently create <nr> commits, each with a unique number (from 1 to <nr>
262 # by default) in the commit message.
263 #
264 # Usage: test_commit_bulk [options] <nr>
265 #   -C <dir>:
266 #       Run all git commands in directory <dir>
267 #   --ref=<n>:
268 #       ref on which to create commits (default: HEAD)
269 #   --start=<n>:
270 #       number commit messages from <n> (default: 1)
271 #   --message=<msg>:
272 #       use <msg> as the commit mesasge (default: "commit %s")
273 #   --filename=<fn>:
274 #       modify <fn> in each commit (default: %s.t)
275 #   --contents=<string>:
276 #       place <string> in each file (default: "content %s")
277 #   --id=<string>:
278 #       shorthand to use <string> and %s in message, filename, and contents
279 #
280 # The message, filename, and contents strings are evaluated by printf, with the
281 # first "%s" replaced by the current commit number. So you can do:
282 #
283 #   test_commit_bulk --filename=file --contents="modification %s"
284 #
285 # to have every commit touch the same file, but with unique content.
286 #
287 test_commit_bulk () {
288         tmpfile=.bulk-commit.input
289         indir=.
290         ref=HEAD
291         n=1
292         message='commit %s'
293         filename='%s.t'
294         contents='content %s'
295         while test $# -gt 0
296         do
297                 case "$1" in
298                 -C)
299                         indir=$2
300                         shift
301                         ;;
302                 --ref=*)
303                         ref=${1#--*=}
304                         ;;
305                 --start=*)
306                         n=${1#--*=}
307                         ;;
308                 --message=*)
309                         message=${1#--*=}
310                         ;;
311                 --filename=*)
312                         filename=${1#--*=}
313                         ;;
314                 --contents=*)
315                         contents=${1#--*=}
316                         ;;
317                 --id=*)
318                         message="${1#--*=} %s"
319                         filename="${1#--*=}-%s.t"
320                         contents="${1#--*=} %s"
321                         ;;
322                 -*)
323                         BUG "invalid test_commit_bulk option: $1"
324                         ;;
325                 *)
326                         break
327                         ;;
328                 esac
329                 shift
330         done
331         total=$1
332
333         add_from=
334         if git -C "$indir" rev-parse --quiet --verify "$ref"
335         then
336                 add_from=t
337         fi
338
339         while test "$total" -gt 0
340         do
341                 test_tick &&
342                 echo "commit $ref"
343                 printf 'author %s <%s> %s\n' \
344                         "$GIT_AUTHOR_NAME" \
345                         "$GIT_AUTHOR_EMAIL" \
346                         "$GIT_AUTHOR_DATE"
347                 printf 'committer %s <%s> %s\n' \
348                         "$GIT_COMMITTER_NAME" \
349                         "$GIT_COMMITTER_EMAIL" \
350                         "$GIT_COMMITTER_DATE"
351                 echo "data <<EOF"
352                 printf "$message\n" $n
353                 echo "EOF"
354                 if test -n "$add_from"
355                 then
356                         echo "from $ref^0"
357                         add_from=
358                 fi
359                 printf "M 644 inline $filename\n" $n
360                 echo "data <<EOF"
361                 printf "$contents\n" $n
362                 echo "EOF"
363                 echo
364                 n=$((n + 1))
365                 total=$((total - 1))
366         done >"$tmpfile"
367
368         git -C "$indir" \
369             -c fastimport.unpacklimit=0 \
370             fast-import <"$tmpfile" || return 1
371
372         # This will be left in place on failure, which may aid debugging.
373         rm -f "$tmpfile"
374
375         # If we updated HEAD, then be nice and update the index and working
376         # tree, too.
377         if test "$ref" = "HEAD"
378         then
379                 git -C "$indir" checkout -f HEAD || return 1
380         fi
381
382 }
383
384 # This function helps systems where core.filemode=false is set.
385 # Use it instead of plain 'chmod +x' to set or unset the executable bit
386 # of a file in the working directory and add it to the index.
387
388 test_chmod () {
389         chmod "$@" &&
390         git update-index --add "--chmod=$@"
391 }
392
393 # Get the modebits from a file or directory, ignoring the setgid bit (g+s).
394 # This bit is inherited by subdirectories at their creation. So we remove it
395 # from the returning string to prevent callers from having to worry about the
396 # state of the bit in the test directory.
397 #
398 test_modebits () {
399         ls -ld "$1" | sed -e 's|^\(..........\).*|\1|' \
400                           -e 's|^\(......\)S|\1-|' -e 's|^\(......\)s|\1x|'
401 }
402
403 # Unset a configuration variable, but don't fail if it doesn't exist.
404 test_unconfig () {
405         config_dir=
406         if test "$1" = -C
407         then
408                 shift
409                 config_dir=$1
410                 shift
411         fi
412         git ${config_dir:+-C "$config_dir"} config --unset-all "$@"
413         config_status=$?
414         case "$config_status" in
415         5) # ok, nothing to unset
416                 config_status=0
417                 ;;
418         esac
419         return $config_status
420 }
421
422 # Set git config, automatically unsetting it after the test is over.
423 test_config () {
424         config_dir=
425         if test "$1" = -C
426         then
427                 shift
428                 config_dir=$1
429                 shift
430         fi
431         test_when_finished "test_unconfig ${config_dir:+-C '$config_dir'} '$1'" &&
432         git ${config_dir:+-C "$config_dir"} config "$@"
433 }
434
435 test_config_global () {
436         test_when_finished "test_unconfig --global '$1'" &&
437         git config --global "$@"
438 }
439
440 write_script () {
441         {
442                 echo "#!${2-"$SHELL_PATH"}" &&
443                 cat
444         } >"$1" &&
445         chmod +x "$1"
446 }
447
448 # Use test_set_prereq to tell that a particular prerequisite is available.
449 # The prerequisite can later be checked for in two ways:
450 #
451 # - Explicitly using test_have_prereq.
452 #
453 # - Implicitly by specifying the prerequisite tag in the calls to
454 #   test_expect_{success,failure} and test_external{,_without_stderr}.
455 #
456 # The single parameter is the prerequisite tag (a simple word, in all
457 # capital letters by convention).
458
459 test_unset_prereq () {
460         ! test_have_prereq "$1" ||
461         satisfied_prereq="${satisfied_prereq% $1 *} ${satisfied_prereq#* $1 }"
462 }
463
464 test_set_prereq () {
465         if test -n "$GIT_TEST_FAIL_PREREQS_INTERNAL"
466         then
467                 case "$1" in
468                 # The "!" case is handled below with
469                 # test_unset_prereq()
470                 !*)
471                         ;;
472                 # (Temporary?) whitelist of things we can't easily
473                 # pretend not to support
474                 SYMLINKS)
475                         ;;
476                 # Inspecting whether GIT_TEST_FAIL_PREREQS is on
477                 # should be unaffected.
478                 FAIL_PREREQS)
479                         ;;
480                 *)
481                         return
482                 esac
483         fi
484
485         case "$1" in
486         !*)
487                 test_unset_prereq "${1#!}"
488                 ;;
489         *)
490                 satisfied_prereq="$satisfied_prereq$1 "
491                 ;;
492         esac
493 }
494 satisfied_prereq=" "
495 lazily_testable_prereq= lazily_tested_prereq=
496
497 # Usage: test_lazy_prereq PREREQ 'script'
498 test_lazy_prereq () {
499         lazily_testable_prereq="$lazily_testable_prereq$1 "
500         eval test_prereq_lazily_$1=\$2
501 }
502
503 test_run_lazy_prereq_ () {
504         script='
505 mkdir -p "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&
506 (
507         cd "$TRASH_DIRECTORY/prereq-test-dir-'"$1"'" &&'"$2"'
508 )'
509         say >&3 "checking prerequisite: $1"
510         say >&3 "$script"
511         test_eval_ "$script"
512         eval_ret=$?
513         rm -rf "$TRASH_DIRECTORY/prereq-test-dir-$1"
514         if test "$eval_ret" = 0; then
515                 say >&3 "prerequisite $1 ok"
516         else
517                 say >&3 "prerequisite $1 not satisfied"
518         fi
519         return $eval_ret
520 }
521
522 test_have_prereq () {
523         # prerequisites can be concatenated with ','
524         save_IFS=$IFS
525         IFS=,
526         set -- $*
527         IFS=$save_IFS
528
529         total_prereq=0
530         ok_prereq=0
531         missing_prereq=
532
533         for prerequisite
534         do
535                 case "$prerequisite" in
536                 !*)
537                         negative_prereq=t
538                         prerequisite=${prerequisite#!}
539                         ;;
540                 *)
541                         negative_prereq=
542                 esac
543
544                 case " $lazily_tested_prereq " in
545                 *" $prerequisite "*)
546                         ;;
547                 *)
548                         case " $lazily_testable_prereq " in
549                         *" $prerequisite "*)
550                                 eval "script=\$test_prereq_lazily_$prerequisite" &&
551                                 if test_run_lazy_prereq_ "$prerequisite" "$script"
552                                 then
553                                         test_set_prereq $prerequisite
554                                 fi
555                                 lazily_tested_prereq="$lazily_tested_prereq$prerequisite "
556                         esac
557                         ;;
558                 esac
559
560                 total_prereq=$(($total_prereq + 1))
561                 case "$satisfied_prereq" in
562                 *" $prerequisite "*)
563                         satisfied_this_prereq=t
564                         ;;
565                 *)
566                         satisfied_this_prereq=
567                 esac
568
569                 case "$satisfied_this_prereq,$negative_prereq" in
570                 t,|,t)
571                         ok_prereq=$(($ok_prereq + 1))
572                         ;;
573                 *)
574                         # Keep a list of missing prerequisites; restore
575                         # the negative marker if necessary.
576                         prerequisite=${negative_prereq:+!}$prerequisite
577                         if test -z "$missing_prereq"
578                         then
579                                 missing_prereq=$prerequisite
580                         else
581                                 missing_prereq="$prerequisite,$missing_prereq"
582                         fi
583                 esac
584         done
585
586         test $total_prereq = $ok_prereq
587 }
588
589 test_declared_prereq () {
590         case ",$test_prereq," in
591         *,$1,*)
592                 return 0
593                 ;;
594         esac
595         return 1
596 }
597
598 test_verify_prereq () {
599         test -z "$test_prereq" ||
600         expr >/dev/null "$test_prereq" : '[A-Z0-9_,!]*$' ||
601         BUG "'$test_prereq' does not look like a prereq"
602 }
603
604 test_expect_failure () {
605         test_start_
606         test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
607         test "$#" = 2 ||
608         BUG "not 2 or 3 parameters to test-expect-failure"
609         test_verify_prereq
610         export test_prereq
611         if ! test_skip "$@"
612         then
613                 say >&3 "checking known breakage of $TEST_NUMBER.$test_count '$1': $2"
614                 if test_run_ "$2" expecting_failure
615                 then
616                         test_known_broken_ok_ "$1"
617                 else
618                         test_known_broken_failure_ "$1"
619                 fi
620         fi
621         test_finish_
622 }
623
624 test_expect_success () {
625         test_start_
626         test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
627         test "$#" = 2 ||
628         BUG "not 2 or 3 parameters to test-expect-success"
629         test_verify_prereq
630         export test_prereq
631         if ! test_skip "$@"
632         then
633                 say >&3 "expecting success of $TEST_NUMBER.$test_count '$1': $2"
634                 if test_run_ "$2"
635                 then
636                         test_ok_ "$1"
637                 else
638                         test_failure_ "$@"
639                 fi
640         fi
641         test_finish_
642 }
643
644 # test_external runs external test scripts that provide continuous
645 # test output about their progress, and succeeds/fails on
646 # zero/non-zero exit code.  It outputs the test output on stdout even
647 # in non-verbose mode, and announces the external script with "# run
648 # <n>: ..." before running it.  When providing relative paths, keep in
649 # mind that all scripts run in "trash directory".
650 # Usage: test_external description command arguments...
651 # Example: test_external 'Perl API' perl ../path/to/test.pl
652 test_external () {
653         test "$#" = 4 && { test_prereq=$1; shift; } || test_prereq=
654         test "$#" = 3 ||
655         BUG "not 3 or 4 parameters to test_external"
656         descr="$1"
657         shift
658         test_verify_prereq
659         export test_prereq
660         if ! test_skip "$descr" "$@"
661         then
662                 # Announce the script to reduce confusion about the
663                 # test output that follows.
664                 say_color "" "# run $test_count: $descr ($*)"
665                 # Export TEST_DIRECTORY, TRASH_DIRECTORY and GIT_TEST_LONG
666                 # to be able to use them in script
667                 export TEST_DIRECTORY TRASH_DIRECTORY GIT_TEST_LONG
668                 # Run command; redirect its stderr to &4 as in
669                 # test_run_, but keep its stdout on our stdout even in
670                 # non-verbose mode.
671                 "$@" 2>&4
672                 if test "$?" = 0
673                 then
674                         if test $test_external_has_tap -eq 0; then
675                                 test_ok_ "$descr"
676                         else
677                                 say_color "" "# test_external test $descr was ok"
678                                 test_success=$(($test_success + 1))
679                         fi
680                 else
681                         if test $test_external_has_tap -eq 0; then
682                                 test_failure_ "$descr" "$@"
683                         else
684                                 say_color error "# test_external test $descr failed: $@"
685                                 test_failure=$(($test_failure + 1))
686                         fi
687                 fi
688         fi
689 }
690
691 # Like test_external, but in addition tests that the command generated
692 # no output on stderr.
693 test_external_without_stderr () {
694         # The temporary file has no (and must have no) security
695         # implications.
696         tmp=${TMPDIR:-/tmp}
697         stderr="$tmp/git-external-stderr.$$.tmp"
698         test_external "$@" 4> "$stderr"
699         test -f "$stderr" || error "Internal error: $stderr disappeared."
700         descr="no stderr: $1"
701         shift
702         say >&3 "# expecting no stderr from previous command"
703         if test ! -s "$stderr"
704         then
705                 rm "$stderr"
706
707                 if test $test_external_has_tap -eq 0; then
708                         test_ok_ "$descr"
709                 else
710                         say_color "" "# test_external_without_stderr test $descr was ok"
711                         test_success=$(($test_success + 1))
712                 fi
713         else
714                 if test "$verbose" = t
715                 then
716                         output=$(echo; echo "# Stderr is:"; cat "$stderr")
717                 else
718                         output=
719                 fi
720                 # rm first in case test_failure exits.
721                 rm "$stderr"
722                 if test $test_external_has_tap -eq 0; then
723                         test_failure_ "$descr" "$@" "$output"
724                 else
725                         say_color error "# test_external_without_stderr test $descr failed: $@: $output"
726                         test_failure=$(($test_failure + 1))
727                 fi
728         fi
729 }
730
731 # debugging-friendly alternatives to "test [-f|-d|-e]"
732 # The commands test the existence or non-existence of $1
733 test_path_is_file () {
734         test "$#" -ne 1 && BUG "1 param"
735         if ! test -f "$1"
736         then
737                 echo "File $1 doesn't exist"
738                 false
739         fi
740 }
741
742 test_path_is_dir () {
743         test "$#" -ne 1 && BUG "1 param"
744         if ! test -d "$1"
745         then
746                 echo "Directory $1 doesn't exist"
747                 false
748         fi
749 }
750
751 test_path_exists () {
752         test "$#" -ne 1 && BUG "1 param"
753         if ! test -e "$1"
754         then
755                 echo "Path $1 doesn't exist"
756                 false
757         fi
758 }
759
760 # Check if the directory exists and is empty as expected, barf otherwise.
761 test_dir_is_empty () {
762         test "$#" -ne 1 && BUG "1 param"
763         test_path_is_dir "$1" &&
764         if test -n "$(ls -a1 "$1" | egrep -v '^\.\.?$')"
765         then
766                 echo "Directory '$1' is not empty, it contains:"
767                 ls -la "$1"
768                 return 1
769         fi
770 }
771
772 # Check if the file exists and has a size greater than zero
773 test_file_not_empty () {
774         test "$#" = 2 && BUG "2 param"
775         if ! test -s "$1"
776         then
777                 echo "'$1' is not a non-empty file."
778                 false
779         fi
780 }
781
782 test_path_is_missing () {
783         test "$#" -ne 1 && BUG "1 param"
784         if test -e "$1"
785         then
786                 echo "Path exists:"
787                 ls -ld "$1"
788                 if test $# -ge 1
789                 then
790                         echo "$*"
791                 fi
792                 false
793         fi
794 }
795
796 # test_line_count checks that a file has the number of lines it
797 # ought to. For example:
798 #
799 #       test_expect_success 'produce exactly one line of output' '
800 #               do something >output &&
801 #               test_line_count = 1 output
802 #       '
803 #
804 # is like "test $(wc -l <output) = 1" except that it passes the
805 # output through when the number of lines is wrong.
806
807 test_line_count () {
808         if test $# != 3
809         then
810                 BUG "not 3 parameters to test_line_count"
811         elif ! test $(wc -l <"$3") "$1" "$2"
812         then
813                 echo "test_line_count: line count for $3 !$1 $2"
814                 cat "$3"
815                 return 1
816         fi
817 }
818
819 test_file_size () {
820         test "$#" -ne 1 && BUG "1 param"
821         test-tool path-utils file-size "$1"
822 }
823
824 # Returns success if a comma separated string of keywords ($1) contains a
825 # given keyword ($2).
826 # Examples:
827 # `list_contains "foo,bar" bar` returns 0
828 # `list_contains "foo" bar` returns 1
829
830 list_contains () {
831         case ",$1," in
832         *,$2,*)
833                 return 0
834                 ;;
835         esac
836         return 1
837 }
838
839 # Returns success if the arguments indicate that a command should be
840 # accepted by test_must_fail(). If the command is run with env, the env
841 # and its corresponding variable settings will be stripped before we
842 # test the command being run.
843 test_must_fail_acceptable () {
844         if test "$1" = "env"
845         then
846                 shift
847                 while test $# -gt 0
848                 do
849                         case "$1" in
850                         *?=*)
851                                 shift
852                                 ;;
853                         *)
854                                 break
855                                 ;;
856                         esac
857                 done
858         fi
859
860         case "$1" in
861         git|__git*|test-tool|test_terminal)
862                 return 0
863                 ;;
864         *)
865                 return 1
866                 ;;
867         esac
868 }
869
870 # This is not among top-level (test_expect_success | test_expect_failure)
871 # but is a prefix that can be used in the test script, like:
872 #
873 #       test_expect_success 'complain and die' '
874 #           do something &&
875 #           do something else &&
876 #           test_must_fail git checkout ../outerspace
877 #       '
878 #
879 # Writing this as "! git checkout ../outerspace" is wrong, because
880 # the failure could be due to a segv.  We want a controlled failure.
881 #
882 # Accepts the following options:
883 #
884 #   ok=<signal-name>[,<...>]:
885 #     Don't treat an exit caused by the given signal as error.
886 #     Multiple signals can be specified as a comma separated list.
887 #     Currently recognized signal names are: sigpipe, success.
888 #     (Don't use 'success', use 'test_might_fail' instead.)
889 #
890 # Do not use this to run anything but "git" and other specific testable
891 # commands (see test_must_fail_acceptable()).  We are not in the
892 # business of vetting system supplied commands -- in other words, this
893 # is wrong:
894 #
895 #    test_must_fail grep pattern output
896 #
897 # Instead use '!':
898 #
899 #    ! grep pattern output
900
901 test_must_fail () {
902         case "$1" in
903         ok=*)
904                 _test_ok=${1#ok=}
905                 shift
906                 ;;
907         *)
908                 _test_ok=
909                 ;;
910         esac
911         if ! test_must_fail_acceptable "$@"
912         then
913                 echo >&7 "test_must_fail: only 'git' is allowed: $*"
914                 return 1
915         fi
916         "$@" 2>&7
917         exit_code=$?
918         if test $exit_code -eq 0 && ! list_contains "$_test_ok" success
919         then
920                 echo >&4 "test_must_fail: command succeeded: $*"
921                 return 1
922         elif test_match_signal 13 $exit_code && list_contains "$_test_ok" sigpipe
923         then
924                 return 0
925         elif test $exit_code -gt 129 && test $exit_code -le 192
926         then
927                 echo >&4 "test_must_fail: died by signal $(($exit_code - 128)): $*"
928                 return 1
929         elif test $exit_code -eq 127
930         then
931                 echo >&4 "test_must_fail: command not found: $*"
932                 return 1
933         elif test $exit_code -eq 126
934         then
935                 echo >&4 "test_must_fail: valgrind error: $*"
936                 return 1
937         fi
938         return 0
939 } 7>&2 2>&4
940
941 # Similar to test_must_fail, but tolerates success, too.  This is
942 # meant to be used in contexts like:
943 #
944 #       test_expect_success 'some command works without configuration' '
945 #               test_might_fail git config --unset all.configuration &&
946 #               do something
947 #       '
948 #
949 # Writing "git config --unset all.configuration || :" would be wrong,
950 # because we want to notice if it fails due to segv.
951 #
952 # Accepts the same options as test_must_fail.
953
954 test_might_fail () {
955         test_must_fail ok=success "$@" 2>&7
956 } 7>&2 2>&4
957
958 # Similar to test_must_fail and test_might_fail, but check that a
959 # given command exited with a given exit code. Meant to be used as:
960 #
961 #       test_expect_success 'Merge with d/f conflicts' '
962 #               test_expect_code 1 git merge "merge msg" B master
963 #       '
964
965 test_expect_code () {
966         want_code=$1
967         shift
968         "$@" 2>&7
969         exit_code=$?
970         if test $exit_code = $want_code
971         then
972                 return 0
973         fi
974
975         echo >&4 "test_expect_code: command exited with $exit_code, we wanted $want_code $*"
976         return 1
977 } 7>&2 2>&4
978
979 # test_cmp is a helper function to compare actual and expected output.
980 # You can use it like:
981 #
982 #       test_expect_success 'foo works' '
983 #               echo expected >expected &&
984 #               foo >actual &&
985 #               test_cmp expected actual
986 #       '
987 #
988 # This could be written as either "cmp" or "diff -u", but:
989 # - cmp's output is not nearly as easy to read as diff -u
990 # - not all diff versions understand "-u"
991
992 test_cmp () {
993         test "$#" -ne 2 && BUG "2 param"
994         eval "$GIT_TEST_CMP" '"$@"'
995 }
996
997 # Check that the given config key has the expected value.
998 #
999 #    test_cmp_config [-C <dir>] <expected-value>
1000 #                    [<git-config-options>...] <config-key>
1001 #
1002 # for example to check that the value of core.bar is foo
1003 #
1004 #    test_cmp_config foo core.bar
1005 #
1006 test_cmp_config () {
1007         local GD &&
1008         if test "$1" = "-C"
1009         then
1010                 shift &&
1011                 GD="-C $1" &&
1012                 shift
1013         fi &&
1014         printf "%s\n" "$1" >expect.config &&
1015         shift &&
1016         git $GD config "$@" >actual.config &&
1017         test_cmp expect.config actual.config
1018 }
1019
1020 # test_cmp_bin - helper to compare binary files
1021
1022 test_cmp_bin () {
1023         test "$#" -ne 2 && BUG "2 param"
1024         cmp "$@"
1025 }
1026
1027 # Wrapper for test_cmp which used to be used for
1028 # GIT_TEST_GETTEXT_POISON=false. Only here as a shim for other
1029 # in-flight changes. Should not be used and will be removed soon.
1030 test_i18ncmp () {
1031         test_cmp "$@"
1032 }
1033
1034 # Wrapper for grep which used to be used for
1035 # GIT_TEST_GETTEXT_POISON=false. Only here as a shim for other
1036 # in-flight changes. Should not be used and will be removed soon.
1037 test_i18ngrep () {
1038         eval "last_arg=\${$#}"
1039
1040         test -f "$last_arg" ||
1041         BUG "test_i18ngrep requires a file to read as the last parameter"
1042
1043         if test $# -lt 2 ||
1044            { test "x!" = "x$1" && test $# -lt 3 ; }
1045         then
1046                 BUG "too few parameters to test_i18ngrep"
1047         fi
1048
1049         if test "x!" = "x$1"
1050         then
1051                 shift
1052                 ! grep "$@" && return 0
1053
1054                 echo >&4 "error: '! grep $@' did find a match in:"
1055         else
1056                 grep "$@" && return 0
1057
1058                 echo >&4 "error: 'grep $@' didn't find a match in:"
1059         fi
1060
1061         if test -s "$last_arg"
1062         then
1063                 cat >&4 "$last_arg"
1064         else
1065                 echo >&4 "<File '$last_arg' is empty>"
1066         fi
1067
1068         return 1
1069 }
1070
1071 # Call any command "$@" but be more verbose about its
1072 # failure. This is handy for commands like "test" which do
1073 # not output anything when they fail.
1074 verbose () {
1075         "$@" && return 0
1076         echo >&4 "command failed: $(git rev-parse --sq-quote "$@")"
1077         return 1
1078 }
1079
1080 # Check if the file expected to be empty is indeed empty, and barfs
1081 # otherwise.
1082
1083 test_must_be_empty () {
1084         test "$#" -ne 1 && BUG "1 param"
1085         test_path_is_file "$1" &&
1086         if test -s "$1"
1087         then
1088                 echo "'$1' is not empty, it contains:"
1089                 cat "$1"
1090                 return 1
1091         fi
1092 }
1093
1094 # Tests that its two parameters refer to the same revision, or if '!' is
1095 # provided first, that its other two parameters refer to different
1096 # revisions.
1097 test_cmp_rev () {
1098         local op='=' wrong_result=different
1099
1100         if test $# -ge 1 && test "x$1" = 'x!'
1101         then
1102             op='!='
1103             wrong_result='the same'
1104             shift
1105         fi
1106         if test $# != 2
1107         then
1108                 BUG "test_cmp_rev requires two revisions, but got $#"
1109         else
1110                 local r1 r2
1111                 r1=$(git rev-parse --verify "$1") &&
1112                 r2=$(git rev-parse --verify "$2") || return 1
1113
1114                 if ! test "$r1" "$op" "$r2"
1115                 then
1116                         cat >&4 <<-EOF
1117                         error: two revisions point to $wrong_result objects:
1118                           '$1': $r1
1119                           '$2': $r2
1120                         EOF
1121                         return 1
1122                 fi
1123         fi
1124 }
1125
1126 # Compare paths respecting core.ignoreCase
1127 test_cmp_fspath () {
1128         if test "x$1" = "x$2"
1129         then
1130                 return 0
1131         fi
1132
1133         if test true != "$(git config --get --type=bool core.ignorecase)"
1134         then
1135                 return 1
1136         fi
1137
1138         test "x$(echo "$1" | tr A-Z a-z)" =  "x$(echo "$2" | tr A-Z a-z)"
1139 }
1140
1141 # Print a sequence of integers in increasing order, either with
1142 # two arguments (start and end):
1143 #
1144 #     test_seq 1 5 -- outputs 1 2 3 4 5 one line at a time
1145 #
1146 # or with one argument (end), in which case it starts counting
1147 # from 1.
1148
1149 test_seq () {
1150         case $# in
1151         1)      set 1 "$@" ;;
1152         2)      ;;
1153         *)      BUG "not 1 or 2 parameters to test_seq" ;;
1154         esac
1155         test_seq_counter__=$1
1156         while test "$test_seq_counter__" -le "$2"
1157         do
1158                 echo "$test_seq_counter__"
1159                 test_seq_counter__=$(( $test_seq_counter__ + 1 ))
1160         done
1161 }
1162
1163 # This function can be used to schedule some commands to be run
1164 # unconditionally at the end of the test to restore sanity:
1165 #
1166 #       test_expect_success 'test core.capslock' '
1167 #               git config core.capslock true &&
1168 #               test_when_finished "git config --unset core.capslock" &&
1169 #               hello world
1170 #       '
1171 #
1172 # That would be roughly equivalent to
1173 #
1174 #       test_expect_success 'test core.capslock' '
1175 #               git config core.capslock true &&
1176 #               hello world
1177 #               git config --unset core.capslock
1178 #       '
1179 #
1180 # except that the greeting and config --unset must both succeed for
1181 # the test to pass.
1182 #
1183 # Note that under --immediate mode, no clean-up is done to help diagnose
1184 # what went wrong.
1185
1186 test_when_finished () {
1187         # We cannot detect when we are in a subshell in general, but by
1188         # doing so on Bash is better than nothing (the test will
1189         # silently pass on other shells).
1190         test "${BASH_SUBSHELL-0}" = 0 ||
1191         BUG "test_when_finished does nothing in a subshell"
1192         test_cleanup="{ $*
1193                 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_cleanup"
1194 }
1195
1196 # This function can be used to schedule some commands to be run
1197 # unconditionally at the end of the test script, e.g. to stop a daemon:
1198 #
1199 #       test_expect_success 'test git daemon' '
1200 #               git daemon &
1201 #               daemon_pid=$! &&
1202 #               test_atexit 'kill $daemon_pid' &&
1203 #               hello world
1204 #       '
1205 #
1206 # The commands will be executed before the trash directory is removed,
1207 # i.e. the atexit commands will still be able to access any pidfiles or
1208 # socket files.
1209 #
1210 # Note that these commands will be run even when a test script run
1211 # with '--immediate' fails.  Be careful with your atexit commands to
1212 # minimize any changes to the failed state.
1213
1214 test_atexit () {
1215         # We cannot detect when we are in a subshell in general, but by
1216         # doing so on Bash is better than nothing (the test will
1217         # silently pass on other shells).
1218         test "${BASH_SUBSHELL-0}" = 0 ||
1219         BUG "test_atexit does nothing in a subshell"
1220         test_atexit_cleanup="{ $*
1221                 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_atexit_cleanup"
1222 }
1223
1224 # Most tests can use the created repository, but some may need to create more.
1225 # Usage: test_create_repo <directory>
1226 test_create_repo () {
1227         test "$#" = 1 ||
1228         BUG "not 1 parameter to test-create-repo"
1229         repo="$1"
1230         mkdir -p "$repo"
1231         (
1232                 cd "$repo" || error "Cannot setup test environment"
1233                 "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \
1234                         init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \
1235                         init \
1236                         "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 ||
1237                 error "cannot run git init -- have you built things yet?"
1238                 mv .git/hooks .git/hooks-disabled
1239         ) || exit
1240 }
1241
1242 # This function helps on symlink challenged file systems when it is not
1243 # important that the file system entry is a symbolic link.
1244 # Use test_ln_s_add instead of "ln -s x y && git add y" to add a
1245 # symbolic link entry y to the index.
1246
1247 test_ln_s_add () {
1248         if test_have_prereq SYMLINKS
1249         then
1250                 ln -s "$1" "$2" &&
1251                 git update-index --add "$2"
1252         else
1253                 printf '%s' "$1" >"$2" &&
1254                 ln_s_obj=$(git hash-object -w "$2") &&
1255                 git update-index --add --cacheinfo 120000 $ln_s_obj "$2" &&
1256                 # pick up stat info from the file
1257                 git update-index "$2"
1258         fi
1259 }
1260
1261 # This function writes out its parameters, one per line
1262 test_write_lines () {
1263         printf "%s\n" "$@"
1264 }
1265
1266 perl () {
1267         command "$PERL_PATH" "$@" 2>&7
1268 } 7>&2 2>&4
1269
1270 # Given the name of an environment variable with a bool value, normalize
1271 # its value to a 0 (true) or 1 (false or empty string) return code.
1272 #
1273 #   test_bool_env GIT_TEST_HTTPD <default-value>
1274 #
1275 # Return with code corresponding to the given default value if the variable
1276 # is unset.
1277 # Abort the test script if either the value of the variable or the default
1278 # are not valid bool values.
1279
1280 test_bool_env () {
1281         if test $# != 2
1282         then
1283                 BUG "test_bool_env requires two parameters (variable name and default value)"
1284         fi
1285
1286         git env--helper --type=bool --default="$2" --exit-code "$1"
1287         ret=$?
1288         case $ret in
1289         0|1)    # unset or valid bool value
1290                 ;;
1291         *)      # invalid bool value or something unexpected
1292                 error >&7 "test_bool_env requires bool values both for \$$1 and for the default fallback"
1293                 ;;
1294         esac
1295         return $ret
1296 }
1297
1298 # Exit the test suite, either by skipping all remaining tests or by
1299 # exiting with an error. If our prerequisite variable $1 falls back
1300 # on a default assume we were opportunistically trying to set up some
1301 # tests and we skip. If it is explicitly "true", then we report a failure.
1302 #
1303 # The error/skip message should be given by $2.
1304 #
1305 test_skip_or_die () {
1306         if ! test_bool_env "$1" false
1307         then
1308                 skip_all=$2
1309                 test_done
1310         fi
1311         error "$2"
1312 }
1313
1314 # The following mingw_* functions obey POSIX shell syntax, but are actually
1315 # bash scripts, and are meant to be used only with bash on Windows.
1316
1317 # A test_cmp function that treats LF and CRLF equal and avoids to fork
1318 # diff when possible.
1319 mingw_test_cmp () {
1320         # Read text into shell variables and compare them. If the results
1321         # are different, use regular diff to report the difference.
1322         local test_cmp_a= test_cmp_b=
1323
1324         # When text came from stdin (one argument is '-') we must feed it
1325         # to diff.
1326         local stdin_for_diff=
1327
1328         # Since it is difficult to detect the difference between an
1329         # empty input file and a failure to read the files, we go straight
1330         # to diff if one of the inputs is empty.
1331         if test -s "$1" && test -s "$2"
1332         then
1333                 # regular case: both files non-empty
1334                 mingw_read_file_strip_cr_ test_cmp_a <"$1"
1335                 mingw_read_file_strip_cr_ test_cmp_b <"$2"
1336         elif test -s "$1" && test "$2" = -
1337         then
1338                 # read 2nd file from stdin
1339                 mingw_read_file_strip_cr_ test_cmp_a <"$1"
1340                 mingw_read_file_strip_cr_ test_cmp_b
1341                 stdin_for_diff='<<<"$test_cmp_b"'
1342         elif test "$1" = - && test -s "$2"
1343         then
1344                 # read 1st file from stdin
1345                 mingw_read_file_strip_cr_ test_cmp_a
1346                 mingw_read_file_strip_cr_ test_cmp_b <"$2"
1347                 stdin_for_diff='<<<"$test_cmp_a"'
1348         fi
1349         test -n "$test_cmp_a" &&
1350         test -n "$test_cmp_b" &&
1351         test "$test_cmp_a" = "$test_cmp_b" ||
1352         eval "diff -u \"\$@\" $stdin_for_diff"
1353 }
1354
1355 # $1 is the name of the shell variable to fill in
1356 mingw_read_file_strip_cr_ () {
1357         # Read line-wise using LF as the line separator
1358         # and use IFS to strip CR.
1359         local line
1360         while :
1361         do
1362                 if IFS=$'\r' read -r -d $'\n' line
1363                 then
1364                         # good
1365                         line=$line$'\n'
1366                 else
1367                         # we get here at EOF, but also if the last line
1368                         # was not terminated by LF; in the latter case,
1369                         # some text was read
1370                         if test -z "$line"
1371                         then
1372                                 # EOF, really
1373                                 break
1374                         fi
1375                 fi
1376                 eval "$1=\$$1\$line"
1377         done
1378 }
1379
1380 # Like "env FOO=BAR some-program", but run inside a subshell, which means
1381 # it also works for shell functions (though those functions cannot impact
1382 # the environment outside of the test_env invocation).
1383 test_env () {
1384         (
1385                 while test $# -gt 0
1386                 do
1387                         case "$1" in
1388                         *=*)
1389                                 eval "${1%%=*}=\${1#*=}"
1390                                 eval "export ${1%%=*}"
1391                                 shift
1392                                 ;;
1393                         *)
1394                                 "$@" 2>&7
1395                                 exit
1396                                 ;;
1397                         esac
1398                 done
1399         )
1400 } 7>&2 2>&4
1401
1402 # Returns true if the numeric exit code in "$2" represents the expected signal
1403 # in "$1". Signals should be given numerically.
1404 test_match_signal () {
1405         if test "$2" = "$((128 + $1))"
1406         then
1407                 # POSIX
1408                 return 0
1409         elif test "$2" = "$((256 + $1))"
1410         then
1411                 # ksh
1412                 return 0
1413         fi
1414         return 1
1415 }
1416
1417 # Read up to "$1" bytes (or to EOF) from stdin and write them to stdout.
1418 test_copy_bytes () {
1419         perl -e '
1420                 my $len = $ARGV[1];
1421                 while ($len > 0) {
1422                         my $s;
1423                         my $nread = sysread(STDIN, $s, $len);
1424                         die "cannot read: $!" unless defined($nread);
1425                         last unless $nread;
1426                         print $s;
1427                         $len -= $nread;
1428                 }
1429         ' - "$1"
1430 }
1431
1432 # run "$@" inside a non-git directory
1433 nongit () {
1434         test -d non-repo ||
1435         mkdir non-repo ||
1436         return 1
1437
1438         (
1439                 GIT_CEILING_DIRECTORIES=$(pwd) &&
1440                 export GIT_CEILING_DIRECTORIES &&
1441                 cd non-repo &&
1442                 "$@" 2>&7
1443         )
1444 } 7>&2 2>&4
1445
1446 # convert function arguments or stdin (if not arguments given) to pktline
1447 # representation. If multiple arguments are given, they are separated by
1448 # whitespace and put in a single packet. Note that data containing NULs must be
1449 # given on stdin, and that empty input becomes an empty packet, not a flush
1450 # packet (for that you can just print 0000 yourself).
1451 packetize () {
1452         if test $# -gt 0
1453         then
1454                 packet="$*"
1455                 printf '%04x%s' "$((4 + ${#packet}))" "$packet"
1456         else
1457                 perl -e '
1458                         my $packet = do { local $/; <STDIN> };
1459                         printf "%04x%s", 4 + length($packet), $packet;
1460                 '
1461         fi
1462 }
1463
1464 # Parse the input as a series of pktlines, writing the result to stdout.
1465 # Sideband markers are removed automatically, and the output is routed to
1466 # stderr if appropriate.
1467 #
1468 # NUL bytes are converted to "\\0" for ease of parsing with text tools.
1469 depacketize () {
1470         perl -e '
1471                 while (read(STDIN, $len, 4) == 4) {
1472                         if ($len eq "0000") {
1473                                 print "FLUSH\n";
1474                         } else {
1475                                 read(STDIN, $buf, hex($len) - 4);
1476                                 $buf =~ s/\0/\\0/g;
1477                                 if ($buf =~ s/^[\x2\x3]//) {
1478                                         print STDERR $buf;
1479                                 } else {
1480                                         $buf =~ s/^\x1//;
1481                                         print $buf;
1482                                 }
1483                         }
1484                 }
1485         '
1486 }
1487
1488 # Converts base-16 data into base-8. The output is given as a sequence of
1489 # escaped octals, suitable for consumption by 'printf'.
1490 hex2oct () {
1491         perl -ne 'printf "\\%03o", hex for /../g'
1492 }
1493
1494 # Set the hash algorithm in use to $1.  Only useful when testing the testsuite.
1495 test_set_hash () {
1496         test_hash_algo="$1"
1497 }
1498
1499 # Detect the hash algorithm in use.
1500 test_detect_hash () {
1501         test_hash_algo="${GIT_TEST_DEFAULT_HASH:-sha1}"
1502 }
1503
1504 # Load common hash metadata and common placeholder object IDs for use with
1505 # test_oid.
1506 test_oid_init () {
1507         test -n "$test_hash_algo" || test_detect_hash &&
1508         test_oid_cache <"$TEST_DIRECTORY/oid-info/hash-info" &&
1509         test_oid_cache <"$TEST_DIRECTORY/oid-info/oid"
1510 }
1511
1512 # Load key-value pairs from stdin suitable for use with test_oid.  Blank lines
1513 # and lines starting with "#" are ignored.  Keys must be shell identifier
1514 # characters.
1515 #
1516 # Examples:
1517 # rawsz sha1:20
1518 # rawsz sha256:32
1519 test_oid_cache () {
1520         local tag rest k v &&
1521
1522         { test -n "$test_hash_algo" || test_detect_hash; } &&
1523         while read tag rest
1524         do
1525                 case $tag in
1526                 \#*)
1527                         continue;;
1528                 ?*)
1529                         # non-empty
1530                         ;;
1531                 *)
1532                         # blank line
1533                         continue;;
1534                 esac &&
1535
1536                 k="${rest%:*}" &&
1537                 v="${rest#*:}" &&
1538
1539                 if ! expr "$k" : '[a-z0-9][a-z0-9]*$' >/dev/null
1540                 then
1541                         BUG 'bad hash algorithm'
1542                 fi &&
1543                 eval "test_oid_${k}_$tag=\"\$v\""
1544         done
1545 }
1546
1547 # Look up a per-hash value based on a key ($1).  The value must have been loaded
1548 # by test_oid_init or test_oid_cache.
1549 test_oid () {
1550         local algo="${test_hash_algo}" &&
1551
1552         case "$1" in
1553         --hash=*)
1554                 algo="${1#--hash=}" &&
1555                 shift;;
1556         *)
1557                 ;;
1558         esac &&
1559
1560         local var="test_oid_${algo}_$1" &&
1561
1562         # If the variable is unset, we must be missing an entry for this
1563         # key-hash pair, so exit with an error.
1564         if eval "test -z \"\${$var+set}\""
1565         then
1566                 BUG "undefined key '$1'"
1567         fi &&
1568         eval "printf '%s' \"\${$var}\""
1569 }
1570
1571 # Insert a slash into an object ID so it can be used to reference a location
1572 # under ".git/objects".  For example, "deadbeef..." becomes "de/adbeef..".
1573 test_oid_to_path () {
1574         local basename=${1#??}
1575         echo "${1%$basename}/$basename"
1576 }
1577
1578 # Choose a port number based on the test script's number and store it in
1579 # the given variable name, unless that variable already contains a number.
1580 test_set_port () {
1581         local var=$1 port
1582
1583         if test $# -ne 1 || test -z "$var"
1584         then
1585                 BUG "test_set_port requires a variable name"
1586         fi
1587
1588         eval port=\$$var
1589         case "$port" in
1590         "")
1591                 # No port is set in the given env var, use the test
1592                 # number as port number instead.
1593                 # Remove not only the leading 't', but all leading zeros
1594                 # as well, so the arithmetic below won't (mis)interpret
1595                 # a test number like '0123' as an octal value.
1596                 port=${this_test#${this_test%%[1-9]*}}
1597                 if test "${port:-0}" -lt 1024
1598                 then
1599                         # root-only port, use a larger one instead.
1600                         port=$(($port + 10000))
1601                 fi
1602                 ;;
1603         *[!0-9]*|0*)
1604                 error >&7 "invalid port number: $port"
1605                 ;;
1606         *)
1607                 # The user has specified the port.
1608                 ;;
1609         esac
1610
1611         # Make sure that parallel '--stress' test jobs get different
1612         # ports.
1613         port=$(($port + ${GIT_TEST_STRESS_JOB_NR:-0}))
1614         eval $var=$port
1615 }
1616
1617 # Tests for the hidden file attribute on Windows
1618 test_path_is_hidden () {
1619         test_have_prereq MINGW ||
1620         BUG "test_path_is_hidden can only be used on Windows"
1621
1622         # Use the output of `attrib`, ignore the absolute path
1623         case "$("$SYSTEMROOT"/system32/attrib "$1")" in *H*?:*) return 0;; esac
1624         return 1
1625 }
1626
1627 # Check that the given command was invoked as part of the
1628 # trace2-format trace on stdin.
1629 #
1630 #       test_subcommand [!] <command> <args>... < <trace>
1631 #
1632 # For example, to look for an invocation of "git upload-pack
1633 # /path/to/repo"
1634 #
1635 #       GIT_TRACE2_EVENT=event.log git fetch ... &&
1636 #       test_subcommand git upload-pack "$PATH" <event.log
1637 #
1638 # If the first parameter passed is !, this instead checks that
1639 # the given command was not called.
1640 #
1641 test_subcommand () {
1642         local negate=
1643         if test "$1" = "!"
1644         then
1645                 negate=t
1646                 shift
1647         fi
1648
1649         local expr=$(printf '"%s",' "$@")
1650         expr="${expr%,}"
1651
1652         if test -n "$negate"
1653         then
1654                 ! grep "\[$expr\]"
1655         else
1656                 grep "\[$expr\]"
1657         fi
1658 }
1659
1660 # Check that the given command was invoked as part of the
1661 # trace2-format trace on stdin.
1662 #
1663 #       test_region [!] <category> <label> git <command> <args>...
1664 #
1665 # For example, to look for trace2_region_enter("index", "do_read_index", repo)
1666 # in an invocation of "git checkout HEAD~1", run
1667 #
1668 #       GIT_TRACE2_EVENT="$(pwd)/trace.txt" GIT_TRACE2_EVENT_NESTING=10 \
1669 #               git checkout HEAD~1 &&
1670 #       test_region index do_read_index <trace.txt
1671 #
1672 # If the first parameter passed is !, this instead checks that
1673 # the given region was not entered.
1674 #
1675 test_region () {
1676         local expect_exit=0
1677         if test "$1" = "!"
1678         then
1679                 expect_exit=1
1680                 shift
1681         fi
1682
1683         grep -e '"region_enter".*"category":"'"$1"'","label":"'"$2"\" "$3"
1684         exitcode=$?
1685
1686         if test $exitcode != $expect_exit
1687         then
1688                 return 1
1689         fi
1690
1691         grep -e '"region_leave".*"category":"'"$1"'","label":"'"$2"\" "$3"
1692         exitcode=$?
1693
1694         if test $exitcode != $expect_exit
1695         then
1696                 return 1
1697         fi
1698
1699         return 0
1700 }