Compare commits
8 Commits
v2.9
...
archive/co
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4145348d0 | ||
|
|
c9a158338b | ||
|
|
6132bdeb47 | ||
|
|
213f6afa38 | ||
|
|
7db3a2de13 | ||
|
|
4f504b26c9 | ||
|
|
6c950429f6 | ||
|
|
9fb52d04e6 |
24
tests/README
24
tests/README
@@ -191,11 +191,18 @@ library for your script to use.
|
||||
This takes three strings as parameter. Based on <cmdline>,
|
||||
the todo_completion script is triggered in the current test
|
||||
environment and completions are compared with <completions>,
|
||||
which should be a space-separated list. Include a trailing
|
||||
space in <cmdline> when you want to check new argument
|
||||
completion; otherwise, completion is triggered with the
|
||||
context of the last argument. <message> should state what it
|
||||
is testing.
|
||||
which should be a space-separated list. If any completion
|
||||
contains whitespace, quote it; the entire <completions>
|
||||
argument is eval()'ed.
|
||||
Include a trailing space in <cmdline> when you want to check
|
||||
new argument completion; otherwise, completion is triggered
|
||||
with the context of the last argument. <message> should state
|
||||
what it is testing.
|
||||
|
||||
- test_todo_custom_completion <completefunc> <message> <cmdline> <completions>
|
||||
|
||||
Same as above, but in addition allows to specify a custom
|
||||
completion function.
|
||||
|
||||
- test_tick [interval]
|
||||
|
||||
@@ -216,6 +223,13 @@ library for your script to use.
|
||||
'git-write-tree should be able to write an empty tree.' \
|
||||
'tree=$(git-write-tree)'
|
||||
|
||||
- test_expect_code <code> <message> <script>
|
||||
|
||||
This takes an exit status and two strings as parameter, and
|
||||
evaluates the <script>. If it yields <code>, test is
|
||||
considered successful. <message> should state what it is
|
||||
testing.
|
||||
|
||||
- test_expect_failure <message> <script>
|
||||
|
||||
This is NOT the opposite of test_expect_success, but is used
|
||||
|
||||
@@ -14,5 +14,9 @@ test_todo_completion 'all arguments' 'todo.sh ' "$ACTIONS $OPTIONS"
|
||||
test_todo_completion 'arguments beginning with a' 'todo.sh a' 'add a addto addm append app archive'
|
||||
test_todo_completion 'all options' 'todo.sh -' "$OPTIONS"
|
||||
test_todo_completion 'all actions after command action' 'todo.sh command ' "$ACTIONS"
|
||||
test_todo_completion 'all arguments after option' 'todo.sh -a ' "$ACTIONS $OPTIONS"
|
||||
test_todo_completion 'all arguments after options' 'todo.sh -a -p ' "$ACTIONS $OPTIONS"
|
||||
test_todo_completion 'all options after options' 'todo.sh -a -p -' "$OPTIONS"
|
||||
test_todo_completion 'nothing after action' 'todo.sh archive ' ''
|
||||
|
||||
test_done
|
||||
|
||||
25
tests/t6030-completion-tasks.sh
Executable file
25
tests/t6030-completion-tasks.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash task number completion functionality
|
||||
|
||||
This test checks todo_completion of a task number into the abbreviated task text.
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
cat > todo.txt <<EOF
|
||||
simple task
|
||||
notice the sunflowers +sunflowers @outside @garden +shared +landscape
|
||||
(B) smell the +roses flower @outside @outdoor +shared
|
||||
(C) 2012-02-28 @outside mow the lawn
|
||||
x 2012-02-21 +herbs @oriental buy spices
|
||||
x 2012-02-28 2012-02-21 +slack @home watch tv
|
||||
EOF
|
||||
test_todo_completion 'simple task' 'todo.sh list 1' '"1 # simple task"'
|
||||
test_todo_completion 'remove projects and contents from task' 'todo.sh list 2' '"2 # notice the sunflowers"'
|
||||
test_todo_completion 'keep priority' 'todo.sh list 3' '"3 # (B) smell the flower"'
|
||||
test_todo_completion 'keep priority and remove timestamp' 'todo.sh list 4' '"4 # (C) mow the lawn"'
|
||||
test_todo_completion 'keep done marker and remove done date' 'todo.sh list 5' '"5 # x buy spices"'
|
||||
test_todo_completion 'keep done marker and remove timestamp and done date' 'todo.sh list 6' '"6 # x watch tv"'
|
||||
|
||||
test_done
|
||||
21
tests/t6040-completion-files.sh
Executable file
21
tests/t6040-completion-files.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash todo file completion functionality
|
||||
|
||||
This test checks todo_completion of files in TODO_DIR.
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
> dummy.txt
|
||||
readonly FILES='done.txt dummy.txt report.txt todo.txt'
|
||||
test_todo_completion 'all files after addto' 'todo.sh addto ' "$FILES"
|
||||
test_todo_completion 'files beginning with d after addto' 'todo.sh addto d' 'done.txt dummy.txt'
|
||||
test_todo_completion 'all files after listfile' 'todo.sh listfile ' "$FILES"
|
||||
test_todo_completion 'all files after lf' 'todo.sh -v lf ' "$FILES"
|
||||
test_todo_completion 'nothing after move' 'todo.sh move ' ''
|
||||
test_todo_completion 'all files after move ITEM#' 'todo.sh move 1 ' "$FILES"
|
||||
test_todo_completion 'all files after mv ITEM#' 'todo.sh mv 1 ' "$FILES"
|
||||
test_todo_completion 'all files after move ITEM# DEST' 'todo.sh move 1 todo.sh ' "$FILES"
|
||||
|
||||
test_done
|
||||
26
tests/t6050-completion-addons.sh
Executable file
26
tests/t6050-completion-addons.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash add-on action completion functionality
|
||||
|
||||
This test checks todo_completion of custom actions in .todo.actions.d
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
readonly ACTIONS='add a addto addm append app archive command del rm depri dp do help list ls listall lsa listcon lsc listfile lf listpri lsp listproj lsprj move mv prepend prep pri p replace report shorthelp'
|
||||
readonly OPTIONS='-@ -@@ -+ -++ -d -f -h -p -P -PP -a -n -t -v -vv -V -x'
|
||||
|
||||
readonly ADDONS='bar baz foobar'
|
||||
mkdir "$HOME/.todo.actions.d"
|
||||
for addon in $ADDONS
|
||||
do
|
||||
> "$HOME/.todo.actions.d/$addon"
|
||||
chmod +x "$HOME/.todo.actions.d/$addon"
|
||||
done
|
||||
test_todo_completion 'all arguments' 'todo.sh ' "$ACTIONS $ADDONS $OPTIONS"
|
||||
test_todo_completion 'all arguments after option' 'todo.sh -a ' "$ACTIONS $ADDONS $OPTIONS"
|
||||
test_todo_completion 'all arguments beginning with b' 'todo.sh b' 'bar baz'
|
||||
test_todo_completion 'all arguments beginning with f after options' 'todo.sh -a -v f' 'foobar'
|
||||
test_todo_completion 'nothing after addon action' 'todo.sh foobar ' ''
|
||||
|
||||
test_done
|
||||
45
tests/t6080-completion-path.sh
Executable file
45
tests/t6080-completion-path.sh
Executable file
@@ -0,0 +1,45 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash completion with different path functionality
|
||||
|
||||
This test checks that todo_completion can use a different path to todo.sh when
|
||||
it is not accessible through PATH.
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
cat > todo.txt <<EOF
|
||||
(B) smell the +roses @outside @outdoor +shared
|
||||
notice the sunflowers +sunflowers @outside @garden +shared +landscape
|
||||
stop
|
||||
EOF
|
||||
|
||||
mv bin/todo.sh bin/todo2.sh
|
||||
test_expect_success 'todo2.sh executable' 'todo2.sh list'
|
||||
|
||||
# Define a second completion function that injects the different executable. In
|
||||
# real use, this would be installed via
|
||||
# complete -F _todo2 todo2.sh
|
||||
_todo2()
|
||||
{
|
||||
local _todo_sh='todo2.sh'
|
||||
_todo "$@"
|
||||
}
|
||||
|
||||
test_todo_custom_completion _todo2 'all todo2 contexts' 'todo2 list @' '@garden @outdoor @outside'
|
||||
|
||||
|
||||
|
||||
# Remove the test environment's bin directory from the PATH, so that our test
|
||||
# executable must be launched with an explicit path.
|
||||
PATH=${PATH##"${PWD}/bin:"}
|
||||
test_expect_code 127 'todo2.sh executable not in PATH' 'todo2.sh'
|
||||
|
||||
_todo2path()
|
||||
{
|
||||
local _todo_sh='./bin/todo2.sh'
|
||||
_todo "$@"
|
||||
}
|
||||
test_todo_custom_completion _todo2path 'all todo2 contexts' 'todo2 list @' '@garden @outdoor @outside'
|
||||
|
||||
test_done
|
||||
62
tests/t6090-completion-aliases.sh
Executable file
62
tests/t6090-completion-aliases.sh
Executable file
@@ -0,0 +1,62 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash completion with different aliases functionality
|
||||
|
||||
This test checks that todo_completion can use a different configuration
|
||||
when another todo.sh alias is defined that uses that configuration.
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
cat > todo.txt <<EOF
|
||||
(B) smell the +roses @outside @outdoor +shared
|
||||
notice the sunflowers +sunflowers @outside @garden +shared +landscape
|
||||
stop
|
||||
EOF
|
||||
cat > todo2.txt <<EOF
|
||||
+herbs @oriental buy spices
|
||||
+slack @home watch tv
|
||||
EOF
|
||||
|
||||
cp todo.cfg todo2.cfg
|
||||
cat >> todo2.cfg <<'EOF'
|
||||
export TODO_FILE="$TODO_DIR/todo2.txt"
|
||||
EOF
|
||||
|
||||
# Note: We cannot use aliases within the test framework, but functions are
|
||||
# equivalent and work fine.
|
||||
todo1()
|
||||
{
|
||||
todo.sh "$@"
|
||||
}
|
||||
todo2()
|
||||
{
|
||||
todo.sh -d "$HOME/todo2.cfg" "$@"
|
||||
}
|
||||
|
||||
# Ensure that the test fixture works as planned.
|
||||
test_todo_session 'todo 1 and 2 contexts' <<EOF
|
||||
>>> todo1 listcon
|
||||
@garden
|
||||
@outdoor
|
||||
@outside
|
||||
|
||||
>>> todo2 listcon
|
||||
@home
|
||||
@oriental
|
||||
EOF
|
||||
|
||||
|
||||
# Define a second completion function that injects the different configuration
|
||||
# file. In real use, this would be installed via
|
||||
# complete -F _todo2 todo2
|
||||
_todo2()
|
||||
{
|
||||
local _todo_sh='todo.sh -d "$HOME/todo2.cfg"'
|
||||
_todo "$@"
|
||||
}
|
||||
|
||||
test_todo_completion 'all todo1 contexts' 'todo1 list @' '@garden @outdoor @outside'
|
||||
test_todo_custom_completion _todo2 'all todo2 contexts' 'todo2 list @' '@home @oriental'
|
||||
|
||||
test_done
|
||||
@@ -632,9 +632,11 @@ EOF
|
||||
exit 0
|
||||
}
|
||||
|
||||
test_todo_completion () {
|
||||
test "$#" = 3 ||
|
||||
error "bug in the test script: not 3 parameters to test_todo_completion"
|
||||
test_todo_custom_completion () {
|
||||
test "$#" = 4 ||
|
||||
error "bug in the test script: not 4 parameters to test_todo_custom_completion"
|
||||
completeFunc=$1
|
||||
shift
|
||||
if ! test_skip "$@"
|
||||
then
|
||||
description=$1
|
||||
@@ -653,11 +655,11 @@ test_todo_completion () {
|
||||
IFS=' ' set -- $2
|
||||
COMP_WORDS=("$@")
|
||||
COMP_CWORD=$(($# - $offset))
|
||||
IFS=' ' set -- $expected
|
||||
IFS=' ' eval "set -- $expected"
|
||||
EXPECT=("$@")
|
||||
|
||||
source "$TEST_DIRECTORY/../todo_completion"
|
||||
_todo
|
||||
$completeFunc
|
||||
ret=$?
|
||||
if [ "$ret" = 0 ]
|
||||
then
|
||||
@@ -684,6 +686,11 @@ $(test_cmp expect compreply)"
|
||||
fi
|
||||
echo >&3 ""
|
||||
}
|
||||
test_todo_completion () {
|
||||
test "$#" = 3 ||
|
||||
error "bug in the test script: not 3 parameters to test_todo_completion"
|
||||
test_todo_custom_completion _todo "$@"
|
||||
}
|
||||
|
||||
test_init_todo "$test"
|
||||
# Use -P to resolve symlinks in our working directory so that the pwd
|
||||
|
||||
@@ -19,6 +19,7 @@ _todo()
|
||||
# TODO: Filter for executable flag of files found in $TODO_ACTIONS_DIR.
|
||||
local allCommands="$COMMANDS $('ls' "${TODO_ACTIONS_DIR:-$HOME/.todo.actions.d}/" 2>/dev/null)"
|
||||
|
||||
local _todo_sh=${_todo_sh:-todo.sh}
|
||||
local completions
|
||||
if [ $COMP_CWORD -eq 1 ]; then
|
||||
completions="$allCommands $OPTS"
|
||||
@@ -26,26 +27,26 @@ _todo()
|
||||
"${COMP_WORDS[COMP_CWORD-2]}" =~ ^(move|mv)$ || \
|
||||
"${COMP_WORDS[COMP_CWORD-3]}" =~ ^(move|mv)$ ) ]]; then
|
||||
# "move ITEM# DEST [SRC]" has file arguments on positions 2 and 3.
|
||||
completions=$(TODOTXT_VERBOSE=0 todo.sh command listfile)
|
||||
completions=$(eval TODOTXT_VERBOSE=0 $_todo_sh command listfile)
|
||||
else
|
||||
case "$prev" in
|
||||
command)
|
||||
completions=$COMMANDS;;
|
||||
addto|listfile|lf)
|
||||
completions=$(TODOTXT_VERBOSE=0 todo.sh command listfile);;
|
||||
completions=$(eval TODOTXT_VERBOSE=0 $_todo_sh command listfile);;
|
||||
-*) completions="$allCommands $OPTS";;
|
||||
*) case "$cur" in
|
||||
+*) completions=$(TODOTXT_VERBOSE=0 todo.sh command listproj)
|
||||
+*) completions=$(eval TODOTXT_VERBOSE=0 $_todo_sh command listproj)
|
||||
COMPREPLY=( $( compgen -W "$completions" -- $cur ))
|
||||
[ ${#COMPREPLY[@]} -gt 0 ] && return 0
|
||||
# Fall back to projects extracted from done tasks.
|
||||
completions=$(TODOTXT_VERBOSE=0 TODOTXT_SOURCEVAR=\$DONE_FILE todo.sh command listproj)
|
||||
completions=$(eval 'TODOTXT_VERBOSE=0 TODOTXT_SOURCEVAR=\$DONE_FILE' $_todo_sh command listproj)
|
||||
;;
|
||||
@*) completions=$(TODOTXT_VERBOSE=0 todo.sh command listcon)
|
||||
@*) completions=$(eval TODOTXT_VERBOSE=0 $_todo_sh command listcon)
|
||||
COMPREPLY=( $( compgen -W "$completions" -- $cur ))
|
||||
[ ${#COMPREPLY[@]} -gt 0 ] && return 0
|
||||
# Fall back to contexts extracted from done tasks.
|
||||
completions=$(TODOTXT_VERBOSE=0 TODOTXT_SOURCEVAR=\$DONE_FILE todo.sh command listcon)
|
||||
completions=$(eval 'TODOTXT_VERBOSE=0 TODOTXT_SOURCEVAR=\$DONE_FILE' $_todo_sh command listcon)
|
||||
;;
|
||||
*) if [[ "$cur" =~ ^[0-9]+$ ]]; then
|
||||
# Remove the (padded) task number; we prepend the
|
||||
@@ -60,7 +61,7 @@ _todo()
|
||||
# Finally, limit the output to a single line just as
|
||||
# a safety check of the ls action output.
|
||||
local todo=$( \
|
||||
TODOTXT_VERBOSE=0 todo.sh -@ -+ -p -x command ls "^ *${cur} " | \
|
||||
eval TODOTXT_VERBOSE=0 $_todo_sh '-@ -+ -p -x command ls "^ *${cur} "' | \
|
||||
sed -e 's/^ *[0-9]\+ //' -e 's/\((.) \)[0-9]\{2,4\}-[0-9]\{2\}-[0-9]\{2\} /\1/' \
|
||||
-e 's/\([xX] \)\([0-9]\{2,4\}-[0-9]\{2\}-[0-9]\{2\} \)\{1,2\}/\1/' \
|
||||
-e 's/[[:space:]]*$//' \
|
||||
@@ -84,6 +85,27 @@ _todo()
|
||||
return 0
|
||||
}
|
||||
complete -F _todo todo.sh
|
||||
|
||||
# If you define an alias (e.g. "t") to todo.sh, you need to explicitly enable
|
||||
# completion for it, too:
|
||||
#complete -F _todo t
|
||||
|
||||
# If you have renamed the todo.sh executable, or if it is not accessible through
|
||||
# PATH, you need to add and use a wrapper completion function, like this:
|
||||
#_todoElsewhere()
|
||||
#{
|
||||
# local _todo_sh='/path/to/todo2.sh'
|
||||
# _todo "$@"
|
||||
#}
|
||||
#complete -F _todoElsewhere /path/to/todo2.sh
|
||||
|
||||
# If you use aliases to use different configuration(s), you need to add and use
|
||||
# a wrapper completion function for each configuration if you want to complete
|
||||
# fron the actual configured task locations:
|
||||
#alias todo2='todo.sh -d "$HOME/todo2.cfg"'
|
||||
#_todo2()
|
||||
#{
|
||||
# local _todo_sh='todo.sh -d "$HOME/todo2.cfg"'
|
||||
# _todo "$@"
|
||||
#}
|
||||
#complete -F _todo2 todo2
|
||||
|
||||
Reference in New Issue
Block a user