Mutt fixes

- Added support for `-F configfile'.  This enables using a specially
  crafted muttrc for automated testing.
- Centralized call to _get_cword
- Used _get_pword
- Specified non-wordbreak characters to _get_cword() & _get_pword() for
  bash-4.
- Added automated tests for -f and -A
- Fixed test suite's assert_complete() (test/library.exp) to drop only
  the last element
This commit is contained in:
Freddy Vulto 2009-11-01 10:04:06 +01:00
parent 884c3f5af6
commit 6925ad5081
6 changed files with 83 additions and 33 deletions

View File

@ -4,17 +4,50 @@
# a "query" function to retrieve addresses, so that's what we use here. # a "query" function to retrieve addresses, so that's what we use here.
have mutt || have muttng && { have mutt || have muttng && {
# @param $1 (cur) Current word to complete
_muttaddr() _muttaddr()
{ {
_muttaliases _muttaliases "$1"
_muttquery _muttquery "$1"
cur=`_get_cword` COMPREPLY=( "${COMPREPLY[@]}" $( compgen -u -- "$1" ) )
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -u -- "$cur" ) )
return 0 return 0
} } # _muttaddr()
# Find muttrc to use
# @output muttrc filename
_muttrc()
{
# Search COMP_WORDS for '-F muttrc' or '-Fmuttrc' argument
set -- "${COMP_WORDS[@]}"
while [ $# -gt 0 ]; do
if [ "${1:0:2}" = -F ]; then
if [ ${#1} -gt 2 ]; then
muttrc="$(dequote "${1:2}")"
else
shift
[ "$1" ] && muttrc="$(dequote "$1")"
fi
break
fi
shift
done
if [ -z "$muttrc" ]; then
[ -f ~/.${muttcmd}/${muttcmd}rc ] && muttrc="~/.${muttcmd}/${muttcmd}rc"
[ -f ~/.${muttcmd}rc ] && muttrc="~/.${muttcmd}rc"
fi
printf "%s" "$muttrc"
} # _muttrc()
# Recursively build list of sourced config files
# @param $1 List of config files found so far
# @param $2 Config file to process
# @output List of config files
_muttconffiles() _muttconffiles()
{ {
local file sofar local file sofar
@ -33,16 +66,16 @@ _muttconffiles()
shift shift
done done
echo $sofar echo $sofar
} } # _muttconffiles()
# @param $1 (cur) Current word to complete
_muttaliases() _muttaliases()
{ {
local cur muttrc muttcmd=${COMP_WORDS[0]} local cur=$1 muttrc muttcmd=${COMP_WORDS[0]}
local -a conffiles aliases local -a conffiles aliases
cur=`_get_cword =`
[ -f ~/.${muttcmd}/${muttcmd}rc ] && muttrc="~/.${muttcmd}/${muttcmd}rc" muttrc=$(_muttrc)
[ -f ~/.${muttcmd}rc ] && muttrc="~/.${muttcmd}rc"
[ -z "$muttrc" ] && return 0 [ -z "$muttrc" ] && return 0
conffiles=( $(eval _muttconffiles $muttrc $muttrc) ) conffiles=( $(eval _muttconffiles $muttrc $muttrc) )
@ -53,11 +86,12 @@ _muttaliases()
return 0 return 0
} }
# @param $1 (cur) Current word to complete
_muttquery() _muttquery()
{ {
local cur querycmd muttcmd=${COMP_WORDS[0]} local cur=$1 querycmd muttcmd=${COMP_WORDS[0]}
local -a queryresults local -a queryresults
cur=`_get_cword`
querycmd="$( $muttcmd -Q query_command | sed -r 's|^query_command=\"(.*)\"$|\1|; s|%s|'$cur'|' )" querycmd="$( $muttcmd -Q query_command | sed -r 's|^query_command=\"(.*)\"$|\1|; s|%s|'$cur'|' )"
if [ -z "$cur" -o -z "$querycmd" ]; then if [ -z "$cur" -o -z "$querycmd" ]; then
@ -72,15 +106,15 @@ _muttquery()
return 0 return 0
} }
# @param $1 (cur) Current word to complete
_muttfiledir() _muttfiledir()
{ {
local cur folder spoolfile muttcmd=${COMP_WORDS[0]} local cur=$1 folder muttrc spoolfile muttcmd=${COMP_WORDS[0]}
cur=`_get_cword`
# This is currently not working so well. Perhaps this function should muttrc=$(_muttrc)
# just call _filedir() for the moment.
if [[ $cur == [=+]* ]]; then if [[ $cur == [=+]* ]]; then
folder="$( $muttcmd -Q folder | sed -r 's|^folder=\"(.*)\"$|\1|' )" folder="$( $muttcmd -F "$muttrc" -Q folder | sed -r 's|^folder=\"(.*)\"$|\1|' )"
: folder:=~/Mail : folder:=~/Mail
# Match any file in $folder beginning with $cur # Match any file in $folder beginning with $cur
@ -89,20 +123,21 @@ _muttfiledir()
COMPREPLY=( ${COMPREPLY[@]#$folder/} ) COMPREPLY=( ${COMPREPLY[@]#$folder/} )
return 0 return 0
elif [ "$cur" == !* ]; then elif [ "$cur" == !* ]; then
spoolfile="$( $muttcmd -Q spoolfile | \ spoolfile="$( $muttcmd -F "$muttrc" -Q spoolfile | \
sed -r 's|^spoolfile=\"(.*)\"$|\1|' )" sed -r 's|^spoolfile=\"(.*)\"$|\1|' )"
[ ! -z "$spoolfile" ] && eval cur="${cur/^!/$spoolfile}"; [ ! -z "$spoolfile" ] && eval cur="${cur/^!/$spoolfile}";
fi fi
_filedir _filedir
return 0 return 0
} } # _muttfiledir
_mutt() _mutt()
{ {
local cur prev local cur prev
cur=`_get_cword` cur=`_get_cword =+!`
prev=${COMP_WORDS[COMP_CWORD-1]} prev=`_get_pword =+!`
COMPREPLY=() COMPREPLY=()
@ -115,27 +150,26 @@ _mutt()
*) *)
case "$prev" in case "$prev" in
-@(a|f|F|H|i)) -@(a|f|F|H|i))
_muttfiledir _muttfiledir "$cur"
return 0 return 0
;; ;;
-A) -A)
_muttaliases _muttaliases "$cur"
return 0 return 0
;; ;;
-@(e|m|Q|s|h|p|R|v|y|z|Z)) -@(e|m|Q|s|h|p|R|v|y|z|Z))
return 0 return 0
;; ;;
*) *)
_muttaddr _muttaddr "$cur"
return 0 return 0
;; ;;
esac esac
;; ;;
esac esac
} # _mutt()
}
complete -F _mutt -o default -o filenames mutt muttng complete -F _mutt -o default -o filenames mutt muttng
} } # have mutt
# Local variables: # Local variables:
# mode: shell-script # mode: shell-script

0
test/fixtures/mutt/bar/.gitignore vendored Normal file
View File

0
test/fixtures/mutt/foo/.gitignore vendored Normal file
View File

3
test/fixtures/mutt/muttrc vendored Normal file
View File

@ -0,0 +1,3 @@
set folder=.
alias a1 a1@example.com
alias a2 a2@example.com

View File

@ -4,7 +4,7 @@ proc setup {} {
proc teardown {} { proc teardown {} {
assert_env_unmodified assert_env_unmodified {/OLDPWD=/d}
}; # teardown() }; # teardown()
@ -17,4 +17,17 @@ assert_complete_any "mutt -"
sync_after_int sync_after_int
set test "mutt should complete mailboxes"
set expected {foo/ bar/ muttrc}
assert_complete_dir $expected "mutt -F muttrc -f =" fixtures/mutt
set test "mutt should complete aliases"
set expected {a1 a2}
assert_complete_dir $expected "mutt -F muttrc -A " fixtures/mutt
sync_after_int
teardown teardown

View File

@ -128,7 +128,7 @@ proc assert_complete {expected cmd {test ""} {prompt /@} {size 20}} {
} else { } else {
# Remove optional (partial) argument from `cmd'. # Remove optional (partial) argument from `cmd'.
# E.g. "finger test@" becomes "finger" # E.g. "finger test@" becomes "finger"
set cmd2 [lindex [split $cmd] 0] set cmd2 [lrange [split $cmd] 0 end-1]
# Determine common prefix of completions # Determine common prefix of completions
set common [::textutil::string::longestCommonPrefixList $expected] set common [::textutil::string::longestCommonPrefixList $expected]
if {[string length $common] > 0} {set common " $common"} if {[string length $common] > 0} {set common " $common"}