3 # Copyright (c) 2012 Felipe Contreras
6 test_description
='test bash completion'
16 # Be careful when updating these lists:
18 # (1) The build tree may have build artifact from different branch, or
19 # the user's $PATH may have a random executable that may begin
20 # with "git-check" that are not part of the subcommands this build
21 # will ship, e.g. "check-ignore". The tests for completion for
22 # subcommand names tests how "check" is expanded; we limit the
23 # possible candidates to "checkout" and "check-attr" to make sure
24 # "check-attr", which is known by the filter function as a
25 # subcommand to be thrown out, while excluding other random files
26 # that happen to begin with "check" to avoid letting them get in
29 # (2) A test makes sure that common subcommands are included in the
30 # completion for "git <TAB>", and a plumbing is excluded. "add",
31 # "filter-branch" and "ls-files" are listed for this.
33 GIT_TESTING_ALL_COMMAND_LIST
='add checkout check-attr filter-branch ls-files'
34 GIT_TESTING_PORCELAIN_COMMAND_LIST
='add checkout filter-branch'
36 .
"$GIT_BUILD_DIR/contrib/completion/git-completion.bash"
38 # We don't need this function to actually join words or do anything special.
39 # Also, it's cleaner to avoid touching bash's internal completion variables.
40 # So let's override it with a minimal version for testing purposes.
41 _get_comp_words_by_ref
()
43 while [ $# -gt 0 ]; do
49 prev
=${_words[_cword-1]}
52 words
=("${_words[@]}")
65 echo "${COMPREPLY[*]}" > out
70 local -a COMPREPLY _words
73 test "${1: -1}" = ' ' && _words
[${#_words[@]}+1]=''
74 (( _cword
= ${#_words[@]} - 1 ))
75 __git_wrap__git_main
&& print_comp
78 # Test high-level completion
80 # 1: typed text so far (cur)
81 # 2: expected completion
86 printf '%s\n' "$2" >expected
88 sed -e 's/Z$//' |
sort >expected
90 run_completion
"$1" &&
91 sort out
>out_sorted
&&
92 test_cmp expected out_sorted
96 # The first argument is the typed text so far (cur); the rest are
97 # passed to __gitcomp. Expected output comes is read from the
98 # standard input, like test_completion().
101 local -a COMPREPLY
&&
102 sed -e 's/Z$//' >expected
&&
107 test_cmp expected out
112 # 1: current word (cur)
113 # -: the rest are passed to __gitcomp_nl
116 local -a COMPREPLY
&&
117 sed -e 's/Z$//' >expected
&&
122 test_cmp expected out
125 invalid_variable_name
='${foo.bar}'
127 actual
="$TRASH_DIRECTORY/actual"
129 if test_have_prereq MINGW
136 test_expect_success
'setup for __git_find_repo_path/__gitdir tests' '
137 mkdir -p subdir/subsubdir &&
142 test_expect_success
'__git_find_repo_path - from command line (through $__git_dir)' '
143 echo "$ROOT/otherrepo/.git" >expected &&
145 __git_dir="$ROOT/otherrepo/.git" &&
146 __git_find_repo_path &&
147 echo "$__git_repo_path" >"$actual"
149 test_cmp expected "$actual"
152 test_expect_success
'__git_find_repo_path - .git directory in cwd' '
153 echo ".git" >expected &&
155 __git_find_repo_path &&
156 echo "$__git_repo_path" >"$actual"
158 test_cmp expected "$actual"
161 test_expect_success
'__git_find_repo_path - .git directory in parent' '
162 echo "$ROOT/.git" >expected &&
164 cd subdir/subsubdir &&
165 __git_find_repo_path &&
166 echo "$__git_repo_path" >"$actual"
168 test_cmp expected "$actual"
171 test_expect_success
'__git_find_repo_path - cwd is a .git directory' '
172 echo "." >expected &&
175 __git_find_repo_path &&
176 echo "$__git_repo_path" >"$actual"
178 test_cmp expected "$actual"
181 test_expect_success
'__git_find_repo_path - parent is a .git directory' '
182 echo "$ROOT/.git" >expected &&
185 __git_find_repo_path &&
186 echo "$__git_repo_path" >"$actual"
188 test_cmp expected "$actual"
191 test_expect_success
'__git_find_repo_path - $GIT_DIR set while .git directory in cwd' '
192 echo "$ROOT/otherrepo/.git" >expected &&
194 GIT_DIR="$ROOT/otherrepo/.git" &&
196 __git_find_repo_path &&
197 echo "$__git_repo_path" >"$actual"
199 test_cmp expected "$actual"
202 test_expect_success
'__git_find_repo_path - $GIT_DIR set while .git directory in parent' '
203 echo "$ROOT/otherrepo/.git" >expected &&
205 GIT_DIR="$ROOT/otherrepo/.git" &&
208 __git_find_repo_path &&
209 echo "$__git_repo_path" >"$actual"
211 test_cmp expected "$actual"
214 test_expect_success
'__git_find_repo_path - from command line while "git -C"' '
215 echo "$ROOT/.git" >expected &&
217 __git_dir="$ROOT/.git" &&
218 __git_C_args=(-C otherrepo) &&
219 __git_find_repo_path &&
220 echo "$__git_repo_path" >"$actual"
222 test_cmp expected "$actual"
225 test_expect_success
'__git_find_repo_path - relative dir from command line and "git -C"' '
226 echo "$ROOT/otherrepo/.git" >expected &&
229 __git_dir="otherrepo/.git" &&
230 __git_C_args=(-C ..) &&
231 __git_find_repo_path &&
232 echo "$__git_repo_path" >"$actual"
234 test_cmp expected "$actual"
237 test_expect_success
'__git_find_repo_path - $GIT_DIR set while "git -C"' '
238 echo "$ROOT/.git" >expected &&
240 GIT_DIR="$ROOT/.git" &&
242 __git_C_args=(-C otherrepo) &&
243 __git_find_repo_path &&
244 echo "$__git_repo_path" >"$actual"
246 test_cmp expected "$actual"
249 test_expect_success
'__git_find_repo_path - relative dir in $GIT_DIR and "git -C"' '
250 echo "$ROOT/otherrepo/.git" >expected &&
253 GIT_DIR="otherrepo/.git" &&
255 __git_C_args=(-C ..) &&
256 __git_find_repo_path &&
257 echo "$__git_repo_path" >"$actual"
259 test_cmp expected "$actual"
262 test_expect_success
'__git_find_repo_path - "git -C" while .git directory in cwd' '
263 echo "$ROOT/otherrepo/.git" >expected &&
265 __git_C_args=(-C otherrepo) &&
266 __git_find_repo_path &&
267 echo "$__git_repo_path" >"$actual"
269 test_cmp expected "$actual"
272 test_expect_success
'__git_find_repo_path - "git -C" while cwd is a .git directory' '
273 echo "$ROOT/otherrepo/.git" >expected &&
276 __git_C_args=(-C .. -C otherrepo) &&
277 __git_find_repo_path &&
278 echo "$__git_repo_path" >"$actual"
280 test_cmp expected "$actual"
283 test_expect_success
'__git_find_repo_path - "git -C" while .git directory in parent' '
284 echo "$ROOT/otherrepo/.git" >expected &&
287 __git_C_args=(-C .. -C otherrepo) &&
288 __git_find_repo_path &&
289 echo "$__git_repo_path" >"$actual"
291 test_cmp expected "$actual"
294 test_expect_success
'__git_find_repo_path - non-existing path in "git -C"' '
296 __git_C_args=(-C non-existing) &&
297 test_must_fail __git_find_repo_path &&
298 printf "$__git_repo_path" >"$actual"
300 test_must_be_empty "$actual"
303 test_expect_success
'__git_find_repo_path - non-existing path in $__git_dir' '
305 __git_dir="non-existing" &&
306 test_must_fail __git_find_repo_path &&
307 printf "$__git_repo_path" >"$actual"
309 test_must_be_empty "$actual"
312 test_expect_success
'__git_find_repo_path - non-existing $GIT_DIR' '
314 GIT_DIR="$ROOT/non-existing" &&
316 test_must_fail __git_find_repo_path &&
317 printf "$__git_repo_path" >"$actual"
319 test_must_be_empty "$actual"
322 test_expect_success
'__git_find_repo_path - gitfile in cwd' '
323 echo "$ROOT/otherrepo/.git" >expected &&
324 echo "gitdir: $ROOT/otherrepo/.git" >subdir/.git &&
325 test_when_finished "rm -f subdir/.git" &&
328 __git_find_repo_path &&
329 echo "$__git_repo_path" >"$actual"
331 test_cmp expected "$actual"
334 test_expect_success
'__git_find_repo_path - gitfile in parent' '
335 echo "$ROOT/otherrepo/.git" >expected &&
336 echo "gitdir: $ROOT/otherrepo/.git" >subdir/.git &&
337 test_when_finished "rm -f subdir/.git" &&
339 cd subdir/subsubdir &&
340 __git_find_repo_path &&
341 echo "$__git_repo_path" >"$actual"
343 test_cmp expected "$actual"
346 test_expect_success SYMLINKS
'__git_find_repo_path - resulting path avoids symlinks' '
347 echo "$ROOT/otherrepo/.git" >expected &&
348 mkdir otherrepo/dir &&
349 test_when_finished "rm -rf otherrepo/dir" &&
350 ln -s otherrepo/dir link &&
351 test_when_finished "rm -f link" &&
354 __git_find_repo_path &&
355 echo "$__git_repo_path" >"$actual"
357 test_cmp expected "$actual"
360 test_expect_success
'__git_find_repo_path - not a git repository' '
363 GIT_CEILING_DIRECTORIES="$ROOT" &&
364 export GIT_CEILING_DIRECTORIES &&
365 test_must_fail __git_find_repo_path &&
366 printf "$__git_repo_path" >"$actual"
368 test_must_be_empty "$actual"
371 test_expect_success
'__gitdir - finds repo' '
372 echo "$ROOT/.git" >expected &&
374 cd subdir/subsubdir &&
377 test_cmp expected "$actual"
381 test_expect_success
'__gitdir - returns error when cant find repo' '
383 __git_dir="non-existing" &&
384 test_must_fail __gitdir >"$actual"
386 test_must_be_empty "$actual"
389 test_expect_success
'__gitdir - repo as argument' '
390 echo "otherrepo/.git" >expected &&
392 __gitdir "otherrepo" >"$actual"
394 test_cmp expected "$actual"
397 test_expect_success
'__gitdir - remote as argument' '
398 echo "remote" >expected &&
400 __gitdir "remote" >"$actual"
402 test_cmp expected "$actual"
406 test_expect_success
'__git_dequote - plain unquoted word' '
407 __git_dequote unquoted-word &&
408 verbose test unquoted-word = "$dequoted_word"
411 # input: b\a\c\k\'\\\"s\l\a\s\h\es
412 # expected: back'\"slashes
413 test_expect_success
'__git_dequote - backslash escaped' '
414 __git_dequote "b\a\c\k\\'\''\\\\\\\"s\l\a\s\h\es" &&
415 verbose test "back'\''\\\"slashes" = "$dequoted_word"
418 # input: sin'gle\' '"quo'ted
419 # expected: single\ "quoted
420 test_expect_success
'__git_dequote - single quoted' '
421 __git_dequote "'"sin'gle\\\\' '\\\"quo'ted"'" &&
422 verbose test '\''single\ "quoted'\'' = "$dequoted_word"
425 # input: dou"ble\\" "\"\quot"ed
426 # expected: double\ "\quoted
427 test_expect_success
'__git_dequote - double quoted' '
428 __git_dequote '\''dou"ble\\" "\"\quot"ed'\'' &&
429 verbose test '\''double\ "\quoted'\'' = "$dequoted_word"
432 # input: 'open single quote
433 test_expect_success
'__git_dequote - open single quote' '
434 __git_dequote "'\''open single quote" &&
435 verbose test "open single quote" = "$dequoted_word"
438 # input: "open double quote
439 test_expect_success
'__git_dequote - open double quote' '
440 __git_dequote "\"open double quote" &&
441 verbose test "open double quote" = "$dequoted_word"
445 test_expect_success
'__gitcomp_direct - puts everything into COMPREPLY as-is' '
446 sed -e "s/Z$//g" >expected <<-EOF &&
447 with-trailing-space Z
448 without-trailing-spaceZ
451 $invalid_variable_name Z
454 cur=should_be_ignored &&
455 __gitcomp_direct "$(cat expected)" &&
458 test_cmp expected out
461 test_expect_success
'__gitcomp - trailing space - options' '
462 test_gitcomp "--re" "--dry-run --reuse-message= --reedit-message=
463 --reset-author" <<-EOF
470 test_expect_success
'__gitcomp - trailing space - config keys' '
471 test_gitcomp "br" "branch. branch.autosetupmerge
472 branch.autosetuprebase browser." <<-\EOF
474 branch.autosetupmerge Z
475 branch.autosetuprebase Z
480 test_expect_success
'__gitcomp - option parameter' '
481 test_gitcomp "--strategy=re" "octopus ours recursive resolve subtree" \
488 test_expect_success
'__gitcomp - prefix' '
489 test_gitcomp "branch.me" "remote merge mergeoptions rebase" \
490 "branch.maint." "me" <<-\EOF
492 branch.maint.mergeoptions Z
496 test_expect_success
'__gitcomp - suffix' '
497 test_gitcomp "branch.me" "master maint next pu" "branch." \
504 test_expect_success
'__gitcomp - ignore optional negative options' '
505 test_gitcomp "--" "--abc --def --no-one -- --no-two" <<-\EOF
513 test_expect_success
'__gitcomp - ignore/narrow optional negative options' '
514 test_gitcomp "--a" "--abc --abcdef --no-one -- --no-two" <<-\EOF
520 test_expect_success
'__gitcomp - ignore/narrow optional negative options' '
521 test_gitcomp "--n" "--abc --def --no-one -- --no-two" <<-\EOF
527 test_expect_success
'__gitcomp - expand all negative options' '
528 test_gitcomp "--no-" "--abc --def --no-one -- --no-two" <<-\EOF
534 test_expect_success
'__gitcomp - expand/narrow all negative options' '
535 test_gitcomp "--no-o" "--abc --def --no-one -- --no-two" <<-\EOF
540 test_expect_success
'__gitcomp - doesnt fail because of invalid variable name' '
541 __gitcomp "$invalid_variable_name"
544 read -r -d "" refs
<<-\EOF
551 test_expect_success '__gitcomp_nl - trailing space
' '
552 test_gitcomp_nl
"m" "$refs" <<-EOF
558 test_expect_success '__gitcomp_nl
- prefix
' '
559 test_gitcomp_nl
"--fixup=m" "$refs" "--fixup=" "m" <<-EOF
565 test_expect_success '__gitcomp_nl
- suffix
' '
566 test_gitcomp_nl
"branch.ma" "$refs" "branch." "ma" "." <<-\EOF
572 test_expect_success '__gitcomp_nl - no suffix
' '
573 test_gitcomp_nl
"ma" "$refs" "" "ma" "" <<-\EOF
579 test_expect_success '__gitcomp_nl - doesnt fail because of invalid variable name
' '
580 __gitcomp_nl
"$invalid_variable_name"
583 test_expect_success '__git_remotes
- list remotes from
$GIT_DIR/remotes and from config
file' '
584 cat >expect
<<-EOF &&
590 test_when_finished
"rm -rf .git/remotes" &&
591 mkdir
-p .git
/remotes
&&
592 >.git
/remotes
/remote_from_file_1
&&
593 >.git
/remotes
/remote_from_file_2
&&
594 test_when_finished
"git remote remove remote_in_config_1" &&
595 git remote add remote_in_config_1 git
://remote_1
&&
596 test_when_finished
"git remote remove remote_in_config_2" &&
597 git remote add remote_in_config_2 git
://remote_2
&&
599 __git_remotes
>actual
601 test_cmp expect actual
604 test_expect_success '__git_is_configured_remote
' '
605 test_when_finished
"git remote remove remote_1" &&
606 git remote add remote_1 git
://remote_1
&&
607 test_when_finished
"git remote remove remote_2" &&
608 git remote add remote_2 git
://remote_2
&&
610 verbose __git_is_configured_remote remote_2
&&
611 test_must_fail __git_is_configured_remote non-existent
615 test_expect_success 'setup
for ref completion
' '
616 git commit
--allow-empty -m initial
&&
617 git branch matching-branch
&&
618 git tag matching-tag
&&
621 git commit
--allow-empty -m initial
&&
622 git branch
-m master master-in-other
&&
623 git branch branch-in-other
&&
626 git remote add other
"$ROOT/otherrepo/.git" &&
627 git fetch
--no-tags other
&&
628 rm -f .git
/FETCH_HEAD
&&
632 test_expect_success '__git_refs
- simple
' '
633 cat >expected
<<-EOF &&
637 other/branch-in-other
638 other/master-in-other
643 __git_refs
>"$actual"
645 test_cmp expected
"$actual"
648 test_expect_success '__git_refs
- full refs
' '
649 cat >expected
<<-EOF &&
651 refs/heads/matching-branch
652 refs/remotes/other/branch-in-other
653 refs/remotes/other/master-in-other
654 refs/tags/matching-tag
658 __git_refs
>"$actual"
660 test_cmp expected
"$actual"
663 test_expect_success '__git_refs
- repo given on the
command line
' '
664 cat >expected
<<-EOF &&
671 __git_dir
="$ROOT/otherrepo/.git" &&
673 __git_refs
>"$actual"
675 test_cmp expected
"$actual"
678 test_expect_success '__git_refs
- remote on
local file system
' '
679 cat >expected
<<-EOF &&
687 __git_refs otherrepo
>"$actual"
689 test_cmp expected
"$actual"
692 test_expect_success '__git_refs
- remote on
local file system
- full refs
' '
693 cat >expected
<<-EOF &&
694 refs/heads/branch-in-other
695 refs/heads/master-in-other
696 refs/tags/tag-in-other
700 __git_refs otherrepo
>"$actual"
702 test_cmp expected
"$actual"
705 test_expect_success '__git_refs
- configured remote
' '
706 cat >expected
<<-EOF &&
713 __git_refs other
>"$actual"
715 test_cmp expected
"$actual"
718 test_expect_success '__git_refs
- configured remote
- full refs
' '
719 cat >expected
<<-EOF &&
721 refs/heads/branch-in-other
722 refs/heads/master-in-other
723 refs/tags/tag-in-other
727 __git_refs other
>"$actual"
729 test_cmp expected
"$actual"
732 test_expect_success '__git_refs
- configured remote
- repo given on the
command line
' '
733 cat >expected
<<-EOF &&
740 __git_dir
="$ROOT/.git" &&
742 __git_refs other
>"$actual"
744 test_cmp expected
"$actual"
747 test_expect_success '__git_refs
- configured remote
- full refs
- repo given on the
command line
' '
748 cat >expected
<<-EOF &&
750 refs/heads/branch-in-other
751 refs/heads/master-in-other
752 refs/tags/tag-in-other
756 __git_dir
="$ROOT/.git" &&
758 __git_refs other
>"$actual"
760 test_cmp expected
"$actual"
763 test_expect_success '__git_refs
- configured remote
- remote name matches a directory
' '
764 cat >expected
<<-EOF &&
770 test_when_finished
"rm -rf other" &&
773 __git_refs other
>"$actual"
775 test_cmp expected
"$actual"
778 test_expect_success '__git_refs
- URL remote
' '
779 cat >expected
<<-EOF &&
787 __git_refs
"file://$ROOT/otherrepo/.git" >"$actual"
789 test_cmp expected
"$actual"
792 test_expect_success '__git_refs
- URL remote
- full refs
' '
793 cat >expected
<<-EOF &&
795 refs/heads/branch-in-other
796 refs/heads/master-in-other
797 refs/tags/tag-in-other
801 __git_refs
"file://$ROOT/otherrepo/.git" >"$actual"
803 test_cmp expected
"$actual"
806 test_expect_success '__git_refs
- non-existing remote
' '
809 __git_refs non-existing
>"$actual"
811 test_must_be_empty
"$actual"
814 test_expect_success '__git_refs
- non-existing remote
- full refs
' '
817 __git_refs non-existing
>"$actual"
819 test_must_be_empty
"$actual"
822 test_expect_success '__git_refs
- non-existing URL remote
' '
825 __git_refs
"file://$ROOT/non-existing" >"$actual"
827 test_must_be_empty
"$actual"
830 test_expect_success '__git_refs
- non-existing URL remote
- full refs
' '
833 __git_refs
"file://$ROOT/non-existing" >"$actual"
835 test_must_be_empty
"$actual"
838 test_expect_success '__git_refs
- not
in a git repository
' '
840 GIT_CEILING_DIRECTORIES
="$ROOT" &&
841 export GIT_CEILING_DIRECTORIES
&&
844 __git_refs
>"$actual"
846 test_must_be_empty
"$actual"
849 test_expect_success '__git_refs
- unique remote branches
for git checkout DWIMery
' '
850 cat >expected
<<-EOF &&
855 other/branch-in-other
856 other/master-in-other
858 remote/branch-in-remote
864 for remote_ref
in refs
/remotes
/other
/ambiguous \
865 refs
/remotes
/remote
/ambiguous \
866 refs
/remotes
/remote
/branch-in-remote
868 git update-ref
$remote_ref master
&&
869 test_when_finished
"git update-ref -d $remote_ref"
873 __git_refs
"" 1 >"$actual"
875 test_cmp expected
"$actual"
878 test_expect_success '__git_refs
- after
--opt=' '
879 cat >expected
<<-EOF &&
883 other/branch-in-other
884 other/master-in-other
889 __git_refs
"" "" "" "" >"$actual"
891 test_cmp expected
"$actual"
894 test_expect_success '__git_refs
- after
--opt= - full refs
' '
895 cat >expected
<<-EOF &&
897 refs/heads/matching-branch
898 refs/remotes/other/branch-in-other
899 refs/remotes/other/master-in-other
900 refs/tags/matching-tag
904 __git_refs
"" "" "" refs
/ >"$actual"
906 test_cmp expected
"$actual"
909 test_expect_success '__git refs
- exluding refs
' '
910 cat >expected
<<-EOF &&
914 ^other/branch-in-other
915 ^other/master-in-other
920 __git_refs
>"$actual"
922 test_cmp expected
"$actual"
925 test_expect_success '__git refs
- exluding full refs
' '
926 cat >expected
<<-EOF &&
928 ^refs/heads/matching-branch
929 ^refs/remotes/other/branch-in-other
930 ^refs/remotes/other/master-in-other
931 ^refs/tags/matching-tag
935 __git_refs
>"$actual"
937 test_cmp expected
"$actual"
940 test_expect_success 'setup
for filtering matching refs
' '
941 git branch matching
/branch
&&
942 git tag matching
/tag
&&
943 git
-C otherrepo branch matching
/branch-in-other
&&
944 git fetch
--no-tags other
&&
945 rm -f .git
/FETCH_HEAD
948 test_expect_success '__git_refs
- dont filter refs unless told so
' '
949 cat >expected
<<-EOF &&
954 other/branch-in-other
955 other/master-in-other
956 other/matching/branch-in-other
962 __git_refs
>"$actual"
964 test_cmp expected
"$actual"
967 test_expect_success '__git_refs
- only matching refs
' '
968 cat >expected
<<-EOF &&
976 __git_refs
"" "" "" "$cur" >"$actual"
978 test_cmp expected
"$actual"
981 test_expect_success '__git_refs
- only matching refs
- full refs
' '
982 cat >expected
<<-EOF &&
983 refs/heads/matching-branch
984 refs/heads/matching/branch
987 cur
=refs
/heads
/mat
&&
988 __git_refs
"" "" "" "$cur" >"$actual"
990 test_cmp expected
"$actual"
993 test_expect_success '__git_refs
- only matching refs
- remote on
local file system
' '
994 cat >expected
<<-EOF &&
996 matching/branch-in-other
1000 __git_refs otherrepo
"" "" "$cur" >"$actual"
1002 test_cmp expected
"$actual"
1005 test_expect_success '__git_refs
- only matching refs
- configured remote
' '
1006 cat >expected
<<-EOF &&
1008 matching/branch-in-other
1012 __git_refs other
"" "" "$cur" >"$actual"
1014 test_cmp expected
"$actual"
1017 test_expect_success '__git_refs
- only matching refs
- remote
- full refs
' '
1018 cat >expected
<<-EOF &&
1019 refs/heads/master-in-other
1020 refs/heads/matching/branch-in-other
1023 cur
=refs
/heads
/ma
&&
1024 __git_refs other
"" "" "$cur" >"$actual"
1026 test_cmp expected
"$actual"
1029 test_expect_success '__git_refs
- only matching refs
- checkout DWIMery
' '
1030 cat >expected
<<-EOF &&
1035 matching/branch-in-other
1037 for remote_ref
in refs
/remotes
/other
/ambiguous \
1038 refs
/remotes
/remote
/ambiguous \
1039 refs
/remotes
/remote
/branch-in-remote
1041 git update-ref
$remote_ref master
&&
1042 test_when_finished
"git update-ref -d $remote_ref"
1046 __git_refs
"" 1 "" "$cur" >"$actual"
1048 test_cmp expected
"$actual"
1051 test_expect_success 'teardown after filtering matching refs
' '
1052 git branch
-d matching
/branch
&&
1053 git tag
-d matching
/tag
&&
1054 git update-ref
-d refs
/remotes
/other
/matching
/branch-in-other
&&
1055 git
-C otherrepo branch
-D matching
/branch-in-other
1058 test_expect_success '__git_refs
- for-each-ref format specifiers
in prefix
' '
1059 cat >expected
<<-EOF &&
1060 evil-%%-%42-%(refname)..master
1063 cur
="evil-%%-%42-%(refname)..mas" &&
1064 __git_refs
"" "" "evil-%%-%42-%(refname).." mas
>"$actual"
1066 test_cmp expected
"$actual"
1069 test_expect_success '__git_complete_refs
- simple
' '
1070 sed -e "s/Z$//" >expected
<<-EOF &&
1074 other/branch-in-other Z
1075 other/master-in-other Z
1080 __git_complete_refs
&&
1083 test_cmp expected out
1086 test_expect_success '__git_complete_refs
- matching
' '
1087 sed -e "s/Z$//" >expected
<<-EOF &&
1093 __git_complete_refs
&&
1096 test_cmp expected out
1099 test_expect_success '__git_complete_refs
- remote
' '
1100 sed -e "s/Z$//" >expected
<<-EOF &&
1107 __git_complete_refs
--remote=other
&&
1110 test_cmp expected out
1113 test_expect_success '__git_complete_refs
- track
' '
1114 sed -e "s/Z$//" >expected
<<-EOF &&
1118 other/branch-in-other Z
1119 other/master-in-other Z
1126 __git_complete_refs
--track &&
1129 test_cmp expected out
1132 test_expect_success '__git_complete_refs
- current word
' '
1133 sed -e "s/Z$//" >expected
<<-EOF &&
1138 cur
="--option=mat" &&
1139 __git_complete_refs
--cur="${cur#*=}" &&
1142 test_cmp expected out
1145 test_expect_success '__git_complete_refs
- prefix
' '
1146 sed -e "s/Z$//" >expected
<<-EOF &&
1147 v1.0..matching-branch Z
1148 v1.0..matching-tag Z
1152 __git_complete_refs
--pfx=v1.0..
--cur=mat
&&
1155 test_cmp expected out
1158 test_expect_success '__git_complete_refs
- suffix
' '
1159 cat >expected
<<-EOF &&
1163 other/branch-in-other.
1164 other/master-in-other.
1169 __git_complete_refs
--sfx=.
&&
1172 test_cmp expected out
1175 test_expect_success '__git_complete_fetch_refspecs
- simple
' '
1176 sed -e "s/Z$//" >expected
<<-EOF &&
1178 branch-in-other:branch-in-other Z
1179 master-in-other:master-in-other Z
1183 __git_complete_fetch_refspecs other
&&
1186 test_cmp expected out
1189 test_expect_success '__git_complete_fetch_refspecs
- matching
' '
1190 sed -e "s/Z$//" >expected
<<-EOF &&
1191 branch-in-other:branch-in-other Z
1195 __git_complete_fetch_refspecs other
"" br
&&
1198 test_cmp expected out
1201 test_expect_success '__git_complete_fetch_refspecs
- prefix
' '
1202 sed -e "s/Z$//" >expected
<<-EOF &&
1204 +branch-in-other:branch-in-other Z
1205 +master-in-other:master-in-other Z
1209 __git_complete_fetch_refspecs other
"+" "" &&
1212 test_cmp expected out
1215 test_expect_success '__git_complete_fetch_refspecs
- fully qualified
' '
1216 sed -e "s/Z$//" >expected
<<-EOF &&
1217 refs/heads/branch-in-other:refs/heads/branch-in-other Z
1218 refs/heads/master-in-other:refs/heads/master-in-other Z
1219 refs/tags/tag-in-other:refs/tags/tag-in-other Z
1223 __git_complete_fetch_refspecs other
"" refs
/ &&
1226 test_cmp expected out
1229 test_expect_success '__git_complete_fetch_refspecs
- fully qualified
& prefix
' '
1230 sed -e "s/Z$//" >expected
<<-EOF &&
1231 +refs/heads/branch-in-other:refs/heads/branch-in-other Z
1232 +refs/heads/master-in-other:refs/heads/master-in-other Z
1233 +refs/tags/tag-in-other:refs/tags/tag-in-other Z
1237 __git_complete_fetch_refspecs other
+ refs
/ &&
1240 test_cmp expected out
1243 test_expect_success 'teardown after ref completion
' '
1244 git branch
-d matching-branch
&&
1245 git tag
-d matching-tag
&&
1246 git remote remove other
1250 test_path_completion ()
1252 test $# = 2 || BUG "not 2 parameters to test_path_completion"
1254 local cur="$1" expected="$2"
1255 echo "$expected" >expected &&
1257 # In the following tests calling this function we only
1258 # care about how __git_complete_index_file() deals with
1259 # unusual characters in path names. By requesting only
1260 # untracked files we dont have to bother adding any
1261 # paths to the index in those tests.
1262 __git_complete_index_file --others &&
1265 test_cmp expected out
1268 test_expect_success 'setup
for path completion tests
' '
1272 touch simple-dir
/simple-file \
1273 "spaces in dir/spaces in file" \
1274 "árvíztűrő/Сайн яваарай" &&
1275 if test_have_prereq
!MINGW
&&
1277 '$'separators
\034in\035dir
'' &&
1278 touch BS
\\dir
/DQ
\"file \
1279 '$'separators
\034in\035dir
/sep
\036in\037file''
1281 test_set_prereq FUNNIERNAMES
1283 rm -rf BS
\\dir
'$'separators
\034in\035dir
''
1287 test_expect_success '__git_complete_index_file
- simple
' '
1288 test_path_completion simple simple-dir
&& # Bash is supposed to
1289 # add the trailing /.
1290 test_path_completion simple-dir
/simple simple-dir
/simple-file
1293 test_expect_success \
1294 '__git_complete_index_file
- escaped characters on cmdline
' '
1295 test_path_completion spac
"spaces in dir" && # Bash will turn this
1296 # into "spaces\ in\ dir"
1297 test_path_completion
"spaces\\ i" \
1299 test_path_completion
"spaces\\ in\\ dir/s" \
1300 "spaces in dir/spaces in file" &&
1301 test_path_completion
"spaces\\ in\\ dir/spaces\\ i" \
1302 "spaces in dir/spaces in file"
1305 test_expect_success \
1306 '__git_complete_index_file
- quoted characters on cmdline
' '
1307 # Testing with an opening but without a corresponding closing
1308 # double quote is important.
1309 test_path_completion
\"spac
"spaces in dir" &&
1310 test_path_completion
"\"spaces i" \
1312 test_path_completion
"\"spaces in dir/s" \
1313 "spaces in dir/spaces in file" &&
1314 test_path_completion
"\"spaces in dir/spaces i" \
1315 "spaces in dir/spaces in file"
1318 test_expect_success '__git_complete_index_file
- UTF-8
in ls-files output
' '
1319 test_path_completion á árvíztűrő
&&
1320 test_path_completion árvíztűrő
/С
"árvíztűrő/Сайн яваарай"
1323 test_expect_success FUNNIERNAMES \
1324 '__git_complete_index_file
- C-style escapes
in ls-files output
' '
1325 test_path_completion BS \
1327 test_path_completion BS
\\\\d \
1329 test_path_completion BS
\\\\dir
/DQ \
1331 test_path_completion BS
\\\\dir
/DQ
\\\"f \
1335 test_expect_success FUNNIERNAMES \
1336 '__git_complete_index_file
- \nnn
-escaped characters
in ls-files output
' '
1337 test_path_completion sep
'$'separators
\034in\035dir
'' &&
1338 test_path_completion
'$'separators
\034i
'' \
1339 '$'separators
\034in\035dir
'' &&
1340 test_path_completion
'$'separators
\034in\035dir
/sep
'' \
1341 '$'separators
\034in\035dir
/sep
\036in\037file'' &&
1342 test_path_completion
'$'separators
\034in\035dir
/sep
\036i
'' \
1343 '$'separators
\034in\035dir
/sep
\036in\037file''
1346 test_expect_success FUNNYNAMES \
1347 '__git_complete_index_file
- removing repeated quoted path components
' '
1348 test_when_finished
rm -r repeated-quoted
&&
1349 mkdir repeated-quoted
&& # A directory whose name in itself
1350 # would not be quoted ...
1351 >repeated-quoted
/0-file &&
1352 >repeated-quoted
/1\"file && # ... but here the file makes the
1353 # dirname quoted ...
1354 >repeated-quoted
/2-file &&
1355 >repeated-quoted
/3\"file && # ... and here, too.
1357 # Still, we shold only list the directory name only once.
1358 test_path_completion repeated repeated-quoted
1361 test_expect_success 'teardown after path completion tests
' '
1362 rm -rf simple-dir
"spaces in dir" árvíztűrő \
1363 BS
\\dir
'$'separators
\034in\035dir
''
1367 test_expect_success '__git_get_config_variables
' '
1368 cat >expect
<<-EOF &&
1372 test_config interesting.name-1 good
&&
1373 test_config interesting.name-2 good
&&
1374 test_config subsection.interesting.name-3 bad
&&
1375 __git_get_config_variables interesting
>actual
&&
1376 test_cmp expect actual
1379 test_expect_success '__git_pretty_aliases
' '
1380 cat >expect
<<-EOF &&
1384 test_config pretty.author
"%an %ae" &&
1385 test_config pretty.
hash %H
&&
1386 __git_pretty_aliases
>actual
&&
1387 test_cmp expect actual
1390 test_expect_success 'basic
' '
1391 run_completion
"git " &&
1393 grep -q "^add \$" out
&&
1395 grep -q "^filter-branch \$" out
&&
1397 ! grep -q "^ls-files \$" out
&&
1399 run_completion
"git f" &&
1400 ! grep -q -v "^f" out
1403 test_expect_success 'double dash
"git" itself
' '
1404 test_completion
"git --" <<-\EOF
1417 --no-replace-objects Z
1422 test_expect_success 'double dash "git checkout"' '
1423 test_completion "git checkout --" <<-\
EOF
1433 --ignore-skip-worktree-bits Z
1434 --ignore-other-worktrees Z
1435 --recurse-submodules Z
1444 test_expect_success 'general options' '
1445 test_completion "git --ver" "--version " &&
1446 test_completion "git --hel" "--help " &&
1447 test_completion "git --exe" <<-\EOF &&
1451 test_completion "git --htm" "--html-path " &&
1452 test_completion "git --pag" "--paginate " &&
1453 test_completion "git --no-p" "--no-pager " &&
1454 test_completion "git --git" "--git-dir=" &&
1455 test_completion "git --wor" "--work-tree=" &&
1456 test_completion "git --nam" "--namespace=" &&
1457 test_completion "git --bar" "--bare " &&
1458 test_completion "git --inf" "--info-path " &&
1459 test_completion "git --no-r" "--no-replace-objects "
1462 test_expect_success 'general options plus command' '
1463 test_completion "git --version check" "checkout " &&
1464 test_completion "git --paginate check" "checkout " &&
1465 test_completion "git --git-dir=foo check" "checkout " &&
1466 test_completion "git --bare check" "checkout " &&
1467 test_completion "git --exec-path=foo check" "checkout " &&
1468 test_completion "git --html-path check" "checkout " &&
1469 test_completion "git --no-pager check" "checkout " &&
1470 test_completion "git --work-tree=foo check" "checkout " &&
1471 test_completion "git --namespace=foo check" "checkout " &&
1472 test_completion "git --paginate check" "checkout " &&
1473 test_completion "git --info-path check" "checkout " &&
1474 test_completion "git --no-replace-objects check" "checkout " &&
1475 test_completion "git --git-dir some/path check" "checkout " &&
1476 test_completion "git -c conf.var=value check" "checkout " &&
1477 test_completion "git -C some/path check" "checkout " &&
1478 test_completion "git --work-tree some/path check" "checkout " &&
1479 test_completion "git --namespace name/space check" "checkout "
1482 test_expect_success 'git --help completion' '
1483 test_completion "git --help ad" "add " &&
1484 test_completion "git --help core" "core-tutorial "
1487 test_expect_success 'completion.commands removes multiple commands' '
1488 test_config completion.commands "-cherry -mergetool" &&
1489 git --list-cmds=list-mainporcelain,list-complete,config >out &&
1490 ! grep -E "^(cherry|mergetool)$" out
1493 test_expect_success 'setup for integration tests' '
1494 echo content >file1 &&
1496 git add file1 file2 &&
1497 git commit -m one &&
1498 git branch mybranch &&
1502 test_expect_success 'checkout completes ref names' '
1503 test_completion "git checkout m" <<-\EOF
1510 test_expect_success 'git -C <path> checkout uses the right repo' '
1511 test_completion "git -C subdir -C subsubdir -C .. -C ../otherrepo checkout b" <<-\EOF
1516 test_expect_success 'show completes all refs' '
1517 test_completion "git show m" <<-\EOF
1524 test_expect_success '<ref>: completes paths' '
1525 test_completion "git show mytag:f" <<-\EOF
1531 test_expect_success 'complete tree filename with spaces' '
1532 echo content >"name with spaces" &&
1533 git add "name with spaces" &&
1534 git commit -m spaces &&
1535 test_completion "git show HEAD:nam" <<-\EOF
1540 test_expect_success 'complete tree filename with metacharacters' '
1541 echo content >"name with \${meta}" &&
1542 git add "name with \${meta}" &&
1543 git commit -m meta &&
1544 test_completion "git show HEAD:nam" <<-\EOF
1550 test_expect_success PERL 'send-email' '
1551 test_completion "git send-email --cov" "--cover-letter " &&
1552 test_completion "git send-email ma" "master "
1555 test_expect_success 'complete files' '
1556 git init tmp && cd tmp &&
1557 test_when_finished "cd .. && rm -rf tmp" &&
1559 echo "expected" > .gitignore &&
1560 echo "out" >> .gitignore &&
1561 echo "out_sorted" >> .gitignore &&
1563 git add .gitignore &&
1564 test_completion "git commit " ".gitignore" &&
1566 git commit -m ignore &&
1569 test_completion "git add " "new" &&
1572 git commit -a -m new &&
1573 test_completion "git add " "" &&
1575 git mv new modified &&
1576 echo modify > modified &&
1577 test_completion "git add " "modified" &&
1581 : TODO .gitignore should not be here &&
1582 test_completion "git rm " <<-\EOF &&
1587 test_completion "git clean " "untracked" &&
1589 : TODO .gitignore should not be here &&
1590 test_completion "git mv " <<-\EOF &&
1596 touch dir/file-in-dir &&
1597 git add dir/file-in-dir &&
1598 git commit -m dir &&
1600 mkdir untracked-dir &&
1602 : TODO .gitignore should not be here &&
1603 test_completion "git mv modified " <<-\EOF &&
1611 test_completion "git commit " "modified" &&
1613 : TODO .gitignore should not be here &&
1614 test_completion "git ls-files " <<-\EOF &&
1621 test_completion "git add mom" "momified"
1624 test_expect_success "completion uses <cmd> completion for alias: !sh -c 'git <cmd> ...'" '
1625 test_config alias.co "!sh -c '"'"'git checkout ...'"'"'" &&
1626 test_completion "git co m" <<-\EOF
1633 test_expect_success 'completion uses <cmd> completion for alias: !f () { VAR=val git <cmd> ... }' '
1634 test_config alias.co "!f () { VAR=val git checkout ... ; } f" &&
1635 test_completion "git co m" <<-\EOF
1642 test_expect_success 'completion used <cmd> completion for alias: !f() { : git <cmd> ; ... }' '
1643 test_config alias.co "!f() { : git checkout ; if ... } f" &&
1644 test_completion "git co m" <<-\EOF
1651 test_expect_success 'completion without explicit _git_xxx function' '
1652 test_completion "git version --" <<-\EOF
1654 --no-build-options Z
1658 test_expect_failure 'complete with tilde expansion' '
1659 git init tmp && cd tmp &&
1660 test_when_finished "cd .. && rm -rf tmp" &&
1664 test_completion "git add ~/tmp/" "~/tmp/file"
1667 test_expect_success 'setup other remote for remote reference completion' '
1668 git remote add other otherrepo &&
1672 for flag in -d --delete
1674 test_expect_success "__git_complete_remote_or_refspec - push
$flag other
" '
1675 sed -e "s
/Z$
//" >expected <<-EOF &&
1679 words=(git push '$flag' other ma) &&
1680 cword=${#words[@]} cur=${words[cword-1]} &&
1681 __git_complete_remote_or_refspec &&
1684 test_cmp expected out
1687 test_expect_failure "__git_complete_remote_or_refspec
- push other
$flag" '
1688 sed -e "s
/Z$
//" >expected <<-EOF &&
1692 words=(git push other '$flag' ma) &&
1693 cword=${#words[@]} cur=${words[cword-1]} &&
1694 __git_complete_remote_or_refspec &&
1697 test_cmp expected out
1701 test_expect_success 'sourcing the completion script clears cached commands' '
1702 __git_compute_all_commands &&
1703 verbose test -n "$__git_all_commands" &&
1704 . "$GIT_BUILD_DIR/contrib
/completion
/git-completion.bash
" &&
1705 verbose test -z "$__git_all_commands"
1708 test_expect_success 'sourcing the completion script clears cached merge strategies' '
1709 GIT_TEST_GETTEXT_POISON= &&
1710 __git_compute_merge_strategies &&
1711 verbose test -n "$__git_merge_strategies" &&
1712 . "$GIT_BUILD_DIR/contrib
/completion
/git-completion.bash
" &&
1713 verbose test -z "$__git_merge_strategies"
1716 test_expect_success 'sourcing the completion script clears cached --options' '
1717 __gitcomp_builtin checkout &&
1718 verbose test -n "$__gitcomp_builtin_checkout" &&
1719 __gitcomp_builtin notes_edit &&
1720 verbose test -n "$__gitcomp_builtin_notes_edit" &&
1721 . "$GIT_BUILD_DIR/contrib
/completion
/git-completion.bash
" &&
1722 verbose test -z "$__gitcomp_builtin_checkout" &&
1723 verbose test -z "$__gitcomp_builtin_notes_edit"