Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- Something is better than nothing. t/t9902-completion.sh | 198 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 198 insertions(+) create mode 100755 t/t9902-completion.sh diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh new file mode 100755 index 0000000..a037dff --- /dev/null +++ b/t/t9902-completion.sh @@ -0,0 +1,198 @@ +#!/bin/bash +# +# Copyright (c) 2012 Felipe Contreras +# + +test_description='test bash completion' + +. ./test-lib.sh + +complete () +{ + # do nothing + return 0 +} + +. "$GIT_BUILD_DIR/contrib/completion/git-completion.bash" + +print_comp () +{ + local IFS=$'\n' + echo "${COMPREPLY[*]}" > out +} + +print_words () +{ + local w=(foo foo. --foo=bar) + local IFS=$'\n' + echo "${w[*]}" +} + +_get_comp_words_by_ref () +{ + while [ $# -gt 0 ]; do + case "$1" in + cur) + cur=${_words[_cword]} + ;; + prev) + prev=${_words[_cword-1]} + ;; + words) + words=("${_words[@]}") + ;; + cword) + cword=$_cword + ;; + esac + shift + done +} + +test_completion () +{ + local -a COMPREPLY _words + local _cword + _words=( $1 ) + (( _cword = ${#_words[@]} - 1 )) + _git && print_comp && + test_cmp expected out +} + +test_expect_success 'git' ' + cat >expected <<-\EOF && + help + add + gc + reflog + get-tar-commit-id + relink + grep + relink.perl + am + remote + am.sh + help + annotate + apply + archimport.perl + imap-send + archive + bisect + init + repack + bisect.sh + instaweb + repack.sh + blame + instaweb.sh + replace + branch + log + bundle + request-pull + lost-found.sh + request-pull.sh + reset + checkout + cherry + revert + cherry-pick + merge + rm + clean + send-email + clone + send-email.perl + commit + config + shortlog + credential-cache + show + show-branch + credential-store + cvsexportcommit.perl + stage + stash + cvsimport.perl + stash.sh + mergetool + status + cvsserver.perl + mergetool.sh + submodule + describe + submodule.sh + diff + mv + svn + name-rev + svn.perl + notes + tag + difftool + difftool.perl + fetch + pull + pull.sh + filter-branch + push + filter-branch.sh + quiltimport.sh + format-patch + rebase + fsck + rebase.sh + whatchanged + cccmd + proxy + send-pull + EOF + test_completion "git" && + + cat >expected <<-\EOF && + help + help + EOF + test_completion "git he" + + cat >expected <<-\EOF && + fetch + filter-branch + filter-branch.sh + format-patch + fsck + EOF + test_completion "git f" +' + +test_expect_success 'git (double dash)' ' + cat >expected <<-\EOF && + --paginate + --no-pager + --git-dir= + --bare + --version + --exec-path + --html-path + --work-tree= + --namespace= + --help + EOF + test_completion "git --" + + cat >expected <<-\EOF && + --quiet + --ours + --theirs + --track + --no-track + --merge + --conflict= + --orphan + --patch + EOF + test_completion "git checkout --" +' + +test_done -- 1.7.9.6 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html