Add search command
This commit is contained in:
parent
ab5425d59d
commit
542095a49b
|
@ -5,11 +5,28 @@ setup() {
|
||||||
}
|
}
|
||||||
|
|
||||||
test_get_command_returns_list_for_substring() {
|
test_get_command_returns_list_for_substring() {
|
||||||
commands="list new"
|
|
||||||
expected="list"
|
expected="list"
|
||||||
|
|
||||||
for arg in l li lis list; do
|
for arg in l li lis list; do
|
||||||
result="$(get_command "$commands" "$arg")"
|
result="$(get_command "$ZKCOMMANDS" "$arg")"
|
||||||
|
assert_equals "$expected" "$result"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
test_get_command_returns_search_for_substring() {
|
||||||
|
expected="search"
|
||||||
|
|
||||||
|
for arg in s se sea sear searc search; do
|
||||||
|
result="$(get_command "$ZKCOMMANDS" "$arg")"
|
||||||
|
assert_equals "$expected" "$result"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
test_get_command_returns_new_for_substring() {
|
||||||
|
expected="new"
|
||||||
|
|
||||||
|
for arg in n ne new; do
|
||||||
|
result="$(get_command "$ZKCOMMANDS" "$arg")"
|
||||||
assert_equals "$expected" "$result"
|
assert_equals "$expected" "$result"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,29 @@ setup() {
|
||||||
source ../zk
|
source ../zk
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_main_calls_list_when_list_command_passed() {
|
||||||
|
expected="_zk_list"
|
||||||
|
fake get_command 'echo list'
|
||||||
|
fake _zk_list "echo $expected"
|
||||||
|
|
||||||
|
result="$(main)"
|
||||||
|
|
||||||
|
assert_equals "$expected" "$result"
|
||||||
|
}
|
||||||
|
|
||||||
|
test_main_calls_search_when_search_command_passed() {
|
||||||
|
expected="_zk_search"
|
||||||
|
fake get_command 'echo search'
|
||||||
|
fake _zk_search "echo $expected"
|
||||||
|
|
||||||
|
result="$(main)"
|
||||||
|
|
||||||
|
assert_equals "$expected" "$result"
|
||||||
|
}
|
||||||
|
|
||||||
test_main_calls_new_when_new_command_passed() {
|
test_main_calls_new_when_new_command_passed() {
|
||||||
expected="_zk_new"
|
expected="_zk_new"
|
||||||
fake get_commands 'echo new'
|
fake get_command 'echo new'
|
||||||
fake _zk_new "echo $expected"
|
fake _zk_new "echo $expected"
|
||||||
|
|
||||||
result="$(main)"
|
result="$(main)"
|
||||||
|
@ -14,12 +34,3 @@ test_main_calls_new_when_new_command_passed() {
|
||||||
assert_equals "$expected" "$result"
|
assert_equals "$expected" "$result"
|
||||||
}
|
}
|
||||||
|
|
||||||
test_main_calls_list_when_list_command_passed() {
|
|
||||||
expected="_zk_list"
|
|
||||||
fake get_commands 'echo list'
|
|
||||||
fake _zk_list "echo $expected"
|
|
||||||
|
|
||||||
result="$(main)"
|
|
||||||
|
|
||||||
assert_equals "$expected" "$result"
|
|
||||||
}
|
|
||||||
|
|
4
zk
4
zk
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
ZKDIR="$HOME/.local/share/zk/"
|
ZKDIR="$HOME/.local/share/zk/"
|
||||||
COMMANDS='list new'
|
ZKCOMMANDS='list search new'
|
||||||
|
|
||||||
get_command() {
|
get_command() {
|
||||||
commands="$1"
|
commands="$1"
|
||||||
|
@ -36,7 +36,7 @@ _zk_new() {
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
subcommand="$(get_commands "$COMMANDS" "$1")"
|
subcommand="$(get_command "$ZKCOMMANDS" "$1")"
|
||||||
_zk_"$subcommand"
|
_zk_"$subcommand"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue