repack: introduce repack.writeBitmaps config option
[git.git] / t / t9902-completion.sh
blob2d4beb5e50c257fed2f4b6475cb5834425b5a64f
1 #!/bin/sh
3 # Copyright (c) 2012 Felipe Contreras
6 test_description='test bash completion'
8 . ./lib-bash.sh
10 complete ()
12 # do nothing
13 return 0
16 # Be careful when updating this list:
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
27 # the way.
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_COMMAND_COMPLETION='add checkout check-attr filter-branch ls-files'
35 . "$GIT_BUILD_DIR/contrib/completion/git-completion.bash"
37 # We don't need this function to actually join words or do anything special.
38 # Also, it's cleaner to avoid touching bash's internal completion variables.
39 # So let's override it with a minimal version for testing purposes.
40 _get_comp_words_by_ref ()
42 while [ $# -gt 0 ]; do
43 case "$1" in
44 cur)
45 cur=${_words[_cword]}
47 prev)
48 prev=${_words[_cword-1]}
50 words)
51 words=("${_words[@]}")
53 cword)
54 cword=$_cword
56 esac
57 shift
58 done
61 print_comp ()
63 local IFS=$'\n'
64 echo "${COMPREPLY[*]}" > out
67 run_completion ()
69 local -a COMPREPLY _words
70 local _cword
71 _words=( $1 )
72 test "${1: -1}" = ' ' && _words[${#_words[@]}+1]=''
73 (( _cword = ${#_words[@]} - 1 ))
74 __git_wrap__git_main && print_comp
77 # Test high-level completion
78 # Arguments are:
79 # 1: typed text so far (cur)
80 # 2: expected completion
81 test_completion ()
83 if test $# -gt 1
84 then
85 printf '%s\n' "$2" >expected
86 else
87 sed -e 's/Z$//' >expected
88 fi &&
89 run_completion "$1" &&
90 test_cmp expected out
93 # Test __gitcomp.
94 # The first argument is the typed text so far (cur); the rest are
95 # passed to __gitcomp. Expected output comes is read from the
96 # standard input, like test_completion().
97 test_gitcomp ()
99 local -a COMPREPLY &&
100 sed -e 's/Z$//' >expected &&
101 cur="$1" &&
102 shift &&
103 __gitcomp "$@" &&
104 print_comp &&
105 test_cmp expected out
108 # Test __gitcomp_nl
109 # Arguments are:
110 # 1: current word (cur)
111 # -: the rest are passed to __gitcomp_nl
112 test_gitcomp_nl ()
114 local -a COMPREPLY &&
115 sed -e 's/Z$//' >expected &&
116 cur="$1" &&
117 shift &&
118 __gitcomp_nl "$@" &&
119 print_comp &&
120 test_cmp expected out
123 invalid_variable_name='${foo.bar}'
125 actual="$TRASH_DIRECTORY/actual"
127 test_expect_success 'setup for __gitdir tests' '
128 mkdir -p subdir/subsubdir &&
129 git init otherrepo
132 test_expect_success '__gitdir - from command line (through $__git_dir)' '
133 echo "$TRASH_DIRECTORY/otherrepo/.git" >expected &&
135 __git_dir="$TRASH_DIRECTORY/otherrepo/.git" &&
136 __gitdir >"$actual"
137 ) &&
138 test_cmp expected "$actual"
141 test_expect_success '__gitdir - repo as argument' '
142 echo "otherrepo/.git" >expected &&
143 __gitdir "otherrepo" >"$actual" &&
144 test_cmp expected "$actual"
147 test_expect_success '__gitdir - remote as argument' '
148 echo "remote" >expected &&
149 __gitdir "remote" >"$actual" &&
150 test_cmp expected "$actual"
153 test_expect_success '__gitdir - .git directory in cwd' '
154 echo ".git" >expected &&
155 __gitdir >"$actual" &&
156 test_cmp expected "$actual"
159 test_expect_success '__gitdir - .git directory in parent' '
160 echo "$(pwd -P)/.git" >expected &&
162 cd subdir/subsubdir &&
163 __gitdir >"$actual"
164 ) &&
165 test_cmp expected "$actual"
168 test_expect_success '__gitdir - cwd is a .git directory' '
169 echo "." >expected &&
171 cd .git &&
172 __gitdir >"$actual"
173 ) &&
174 test_cmp expected "$actual"
177 test_expect_success '__gitdir - parent is a .git directory' '
178 echo "$(pwd -P)/.git" >expected &&
180 cd .git/refs/heads &&
181 __gitdir >"$actual"
182 ) &&
183 test_cmp expected "$actual"
186 test_expect_success '__gitdir - $GIT_DIR set while .git directory in cwd' '
187 echo "$TRASH_DIRECTORY/otherrepo/.git" >expected &&
189 GIT_DIR="$TRASH_DIRECTORY/otherrepo/.git" &&
190 export GIT_DIR &&
191 __gitdir >"$actual"
192 ) &&
193 test_cmp expected "$actual"
196 test_expect_success '__gitdir - $GIT_DIR set while .git directory in parent' '
197 echo "$TRASH_DIRECTORY/otherrepo/.git" >expected &&
199 GIT_DIR="$TRASH_DIRECTORY/otherrepo/.git" &&
200 export GIT_DIR &&
201 cd subdir &&
202 __gitdir >"$actual"
203 ) &&
204 test_cmp expected "$actual"
207 test_expect_success '__gitdir - non-existing $GIT_DIR' '
209 GIT_DIR="$TRASH_DIRECTORY/non-existing" &&
210 export GIT_DIR &&
211 test_must_fail __gitdir
215 test_expect_success '__gitdir - gitfile in cwd' '
216 echo "$(pwd -P)/otherrepo/.git" >expected &&
217 echo "gitdir: $TRASH_DIRECTORY/otherrepo/.git" >subdir/.git &&
218 test_when_finished "rm -f subdir/.git" &&
220 cd subdir &&
221 __gitdir >"$actual"
222 ) &&
223 test_cmp expected "$actual"
226 test_expect_success '__gitdir - gitfile in parent' '
227 echo "$(pwd -P)/otherrepo/.git" >expected &&
228 echo "gitdir: $TRASH_DIRECTORY/otherrepo/.git" >subdir/.git &&
229 test_when_finished "rm -f subdir/.git" &&
231 cd subdir/subsubdir &&
232 __gitdir >"$actual"
233 ) &&
234 test_cmp expected "$actual"
237 test_expect_success SYMLINKS '__gitdir - resulting path avoids symlinks' '
238 echo "$(pwd -P)/otherrepo/.git" >expected &&
239 mkdir otherrepo/dir &&
240 test_when_finished "rm -rf otherrepo/dir" &&
241 ln -s otherrepo/dir link &&
242 test_when_finished "rm -f link" &&
244 cd link &&
245 __gitdir >"$actual"
246 ) &&
247 test_cmp expected "$actual"
250 test_expect_success '__gitdir - not a git repository' '
252 cd subdir/subsubdir &&
253 GIT_CEILING_DIRECTORIES="$TRASH_DIRECTORY" &&
254 export GIT_CEILING_DIRECTORIES &&
255 test_must_fail __gitdir
259 test_expect_success '__gitcomp - trailing space - options' '
260 test_gitcomp "--re" "--dry-run --reuse-message= --reedit-message=
261 --reset-author" <<-EOF
262 --reuse-message=Z
263 --reedit-message=Z
264 --reset-author Z
268 test_expect_success '__gitcomp - trailing space - config keys' '
269 test_gitcomp "br" "branch. branch.autosetupmerge
270 branch.autosetuprebase browser." <<-\EOF
271 branch.Z
272 branch.autosetupmerge Z
273 branch.autosetuprebase Z
274 browser.Z
278 test_expect_success '__gitcomp - option parameter' '
279 test_gitcomp "--strategy=re" "octopus ours recursive resolve subtree" \
280 "" "re" <<-\EOF
281 recursive Z
282 resolve Z
286 test_expect_success '__gitcomp - prefix' '
287 test_gitcomp "branch.me" "remote merge mergeoptions rebase" \
288 "branch.maint." "me" <<-\EOF
289 branch.maint.merge Z
290 branch.maint.mergeoptions Z
294 test_expect_success '__gitcomp - suffix' '
295 test_gitcomp "branch.me" "master maint next pu" "branch." \
296 "ma" "." <<-\EOF
297 branch.master.Z
298 branch.maint.Z
302 test_expect_success '__gitcomp - doesnt fail because of invalid variable name' '
303 __gitcomp "$invalid_variable_name"
306 read -r -d "" refs <<-\EOF
307 maint
308 master
309 next
313 test_expect_success '__gitcomp_nl - trailing space' '
314 test_gitcomp_nl "m" "$refs" <<-EOF
315 maint Z
316 master Z
320 test_expect_success '__gitcomp_nl - prefix' '
321 test_gitcomp_nl "--fixup=m" "$refs" "--fixup=" "m" <<-EOF
322 --fixup=maint Z
323 --fixup=master Z
327 test_expect_success '__gitcomp_nl - suffix' '
328 test_gitcomp_nl "branch.ma" "$refs" "branch." "ma" "." <<-\EOF
329 branch.maint.Z
330 branch.master.Z
334 test_expect_success '__gitcomp_nl - no suffix' '
335 test_gitcomp_nl "ma" "$refs" "" "ma" "" <<-\EOF
336 maintZ
337 masterZ
341 test_expect_success '__gitcomp_nl - doesnt fail because of invalid variable name' '
342 __gitcomp_nl "$invalid_variable_name"
345 test_expect_success 'basic' '
346 run_completion "git " &&
347 # built-in
348 grep -q "^add \$" out &&
349 # script
350 grep -q "^filter-branch \$" out &&
351 # plumbing
352 ! grep -q "^ls-files \$" out &&
354 run_completion "git f" &&
355 ! grep -q -v "^f" out
358 test_expect_success 'double dash "git" itself' '
359 test_completion "git --" <<-\EOF
360 --paginate Z
361 --no-pager Z
362 --git-dir=
363 --bare Z
364 --version Z
365 --exec-path Z
366 --exec-path=
367 --html-path Z
368 --man-path Z
369 --info-path Z
370 --work-tree=
371 --namespace=
372 --no-replace-objects Z
373 --help Z
377 test_expect_success 'double dash "git checkout"' '
378 test_completion "git checkout --" <<-\EOF
379 --quiet Z
380 --ours Z
381 --theirs Z
382 --track Z
383 --no-track Z
384 --merge Z
385 --conflict=
386 --orphan Z
387 --patch Z
391 test_expect_success 'general options' '
392 test_completion "git --ver" "--version " &&
393 test_completion "git --hel" "--help " &&
394 test_completion "git --exe" <<-\EOF &&
395 --exec-path Z
396 --exec-path=
398 test_completion "git --htm" "--html-path " &&
399 test_completion "git --pag" "--paginate " &&
400 test_completion "git --no-p" "--no-pager " &&
401 test_completion "git --git" "--git-dir=" &&
402 test_completion "git --wor" "--work-tree=" &&
403 test_completion "git --nam" "--namespace=" &&
404 test_completion "git --bar" "--bare " &&
405 test_completion "git --inf" "--info-path " &&
406 test_completion "git --no-r" "--no-replace-objects "
409 test_expect_success 'general options plus command' '
410 test_completion "git --version check" "checkout " &&
411 test_completion "git --paginate check" "checkout " &&
412 test_completion "git --git-dir=foo check" "checkout " &&
413 test_completion "git --bare check" "checkout " &&
414 test_completion "git --exec-path=foo check" "checkout " &&
415 test_completion "git --html-path check" "checkout " &&
416 test_completion "git --no-pager check" "checkout " &&
417 test_completion "git --work-tree=foo check" "checkout " &&
418 test_completion "git --namespace=foo check" "checkout " &&
419 test_completion "git --paginate check" "checkout " &&
420 test_completion "git --info-path check" "checkout " &&
421 test_completion "git --no-replace-objects check" "checkout "
424 test_expect_success 'git --help completion' '
425 test_completion "git --help ad" "add " &&
426 test_completion "git --help core" "core-tutorial "
429 test_expect_success 'setup for ref completion' '
430 echo content >file1 &&
431 echo more >file2 &&
432 git add . &&
433 git commit -m one &&
434 git branch mybranch &&
435 git tag mytag
438 test_expect_success 'checkout completes ref names' '
439 test_completion "git checkout m" <<-\EOF
440 master Z
441 mybranch Z
442 mytag Z
446 test_expect_success 'show completes all refs' '
447 test_completion "git show m" <<-\EOF
448 master Z
449 mybranch Z
450 mytag Z
454 test_expect_success '<ref>: completes paths' '
455 test_completion "git show mytag:f" <<-\EOF
456 file1 Z
457 file2 Z
461 test_expect_success 'complete tree filename with spaces' '
462 echo content >"name with spaces" &&
463 git add . &&
464 git commit -m spaces &&
465 test_completion "git show HEAD:nam" <<-\EOF
466 name with spaces Z
470 test_expect_success 'complete tree filename with metacharacters' '
471 echo content >"name with \${meta}" &&
472 git add . &&
473 git commit -m meta &&
474 test_completion "git show HEAD:nam" <<-\EOF
475 name with ${meta} Z
476 name with spaces Z
480 test_expect_success 'send-email' '
481 test_completion "git send-email --cov" "--cover-letter " &&
482 test_completion "git send-email ma" "master "
485 test_expect_success 'complete files' '
486 git init tmp && cd tmp &&
487 test_when_finished "cd .. && rm -rf tmp" &&
489 echo "expected" > .gitignore &&
490 echo "out" >> .gitignore &&
492 git add .gitignore &&
493 test_completion "git commit " ".gitignore" &&
495 git commit -m ignore &&
497 touch new &&
498 test_completion "git add " "new" &&
500 git add new &&
501 git commit -a -m new &&
502 test_completion "git add " "" &&
504 git mv new modified &&
505 echo modify > modified &&
506 test_completion "git add " "modified" &&
508 touch untracked &&
510 : TODO .gitignore should not be here &&
511 test_completion "git rm " <<-\EOF &&
512 .gitignore
513 modified
516 test_completion "git clean " "untracked" &&
518 : TODO .gitignore should not be here &&
519 test_completion "git mv " <<-\EOF &&
520 .gitignore
521 modified
524 mkdir dir &&
525 touch dir/file-in-dir &&
526 git add dir/file-in-dir &&
527 git commit -m dir &&
529 mkdir untracked-dir &&
531 : TODO .gitignore should not be here &&
532 test_completion "git mv modified " <<-\EOF &&
533 .gitignore
535 modified
536 untracked
537 untracked-dir
540 test_completion "git commit " "modified" &&
542 : TODO .gitignore should not be here &&
543 test_completion "git ls-files " <<-\EOF
544 .gitignore
546 modified
549 touch momified &&
550 test_completion "git add mom" "momified"
553 test_expect_failure 'complete with tilde expansion' '
554 git init tmp && cd tmp &&
555 test_when_finished "cd .. && rm -rf tmp" &&
557 touch ~/tmp/file &&
559 test_completion "git add ~/tmp/" "~/tmp/file"
562 test_done