mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Pull duplicated test logic from strategies into single test file
This commit is contained in:
parent
c477db2696
commit
c5f57da2b8
4 changed files with 86 additions and 117 deletions
|
@ -53,62 +53,4 @@ testMostRecentMatch() {
|
||||||
'cd quux'
|
'cd quux'
|
||||||
}
|
}
|
||||||
|
|
||||||
testBackslash() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "hello\nworld"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "hello\' \
|
|
||||||
'echo "hello\nworld"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testDoubleBackslash() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "\\"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "\\' \
|
|
||||||
'echo "\\"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testTilde() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
cd ~/something
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd' \
|
|
||||||
'cd ~/something'
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd ~' \
|
|
||||||
'cd ~/something'
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd ~/s' \
|
|
||||||
'cd ~/something'
|
|
||||||
}
|
|
||||||
|
|
||||||
testParentheses() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "$(ls foo)"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "$(' \
|
|
||||||
'echo "$(ls foo)"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testSquareBrackets() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "$history[123]"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "$history[' \
|
|
||||||
'echo "$history[123]"'
|
|
||||||
}
|
|
||||||
|
|
||||||
run_tests "$0"
|
run_tests "$0"
|
||||||
|
|
|
@ -55,64 +55,6 @@ testMostRecentMatch() {
|
||||||
'cd quux'
|
'cd quux'
|
||||||
}
|
}
|
||||||
|
|
||||||
testBackslash() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "hello\nworld"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "hello\' \
|
|
||||||
'echo "hello\nworld"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testDoubleBackslash() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "\\"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "\\' \
|
|
||||||
'echo "\\"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testTilde() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
cd ~/something
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd' \
|
|
||||||
'cd ~/something'
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd ~' \
|
|
||||||
'cd ~/something'
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'cd ~/s' \
|
|
||||||
'cd ~/something'
|
|
||||||
}
|
|
||||||
|
|
||||||
testParentheses() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "$(ls foo)"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "$(' \
|
|
||||||
'echo "$(ls foo)"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testSquareBrackets() {
|
|
||||||
set_history <<-'EOF'
|
|
||||||
echo "$history[123]"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
assertSuggestion \
|
|
||||||
'echo "$history[' \
|
|
||||||
'echo "$history[123]"'
|
|
||||||
}
|
|
||||||
|
|
||||||
testMatchMostRecentAfterPreviousCmd() {
|
testMatchMostRecentAfterPreviousCmd() {
|
||||||
set_history <<-'EOF'
|
set_history <<-'EOF'
|
||||||
echo what
|
echo what
|
||||||
|
|
85
test/strategies_test.zsh
Normal file
85
test/strategies_test.zsh
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
source "${0:a:h}/test_helper.zsh"
|
||||||
|
|
||||||
|
oneTimeSetUp() {
|
||||||
|
source_autosuggestions
|
||||||
|
}
|
||||||
|
|
||||||
|
assertBackslashSuggestion() {
|
||||||
|
set_history <<-'EOF'
|
||||||
|
echo "hello\nworld"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'echo "hello\' \
|
||||||
|
'echo "hello\nworld"'
|
||||||
|
}
|
||||||
|
|
||||||
|
assertDoubleBackslashSuggestion() {
|
||||||
|
set_history <<-'EOF'
|
||||||
|
echo "\\"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'echo "\\' \
|
||||||
|
'echo "\\"'
|
||||||
|
}
|
||||||
|
|
||||||
|
assertTildeSuggestion() {
|
||||||
|
set_history <<-'EOF'
|
||||||
|
cd ~/something
|
||||||
|
EOF
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'cd' \
|
||||||
|
'cd ~/something'
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'cd ~' \
|
||||||
|
'cd ~/something'
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'cd ~/s' \
|
||||||
|
'cd ~/something'
|
||||||
|
}
|
||||||
|
|
||||||
|
assertParenthesesSuggestion() {
|
||||||
|
set_history <<-'EOF'
|
||||||
|
echo "$(ls foo)"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'echo "$(' \
|
||||||
|
'echo "$(ls foo)"'
|
||||||
|
}
|
||||||
|
|
||||||
|
assertSquareBracketsSuggestion() {
|
||||||
|
set_history <<-'EOF'
|
||||||
|
echo "$history[123]"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
assertSuggestion \
|
||||||
|
'echo "$history[' \
|
||||||
|
'echo "$history[123]"'
|
||||||
|
}
|
||||||
|
|
||||||
|
testSpecialCharsForAllStrategies() {
|
||||||
|
local strategies
|
||||||
|
strategies=(
|
||||||
|
"default"
|
||||||
|
"match_prev_cmd"
|
||||||
|
)
|
||||||
|
|
||||||
|
for s in $strategies; do
|
||||||
|
ZSH_AUTOSUGGEST_STRATEGY="$s"
|
||||||
|
|
||||||
|
assertBackslashSuggestion
|
||||||
|
assertDoubleBackslashSuggestion
|
||||||
|
assertTildeSuggestion
|
||||||
|
assertParenthesesSuggestion
|
||||||
|
assertSquareBracketsSuggestion
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
run_tests "$0"
|
|
@ -54,7 +54,7 @@ assertSuggestion() {
|
||||||
local expected_suggestion="$2"
|
local expected_suggestion="$2"
|
||||||
|
|
||||||
assertEquals \
|
assertEquals \
|
||||||
"Did not get correct suggestion for prefix:<$prefix>" \
|
"Did not get correct suggestion for prefix:<$prefix> using strategy <$ZSH_AUTOSUGGEST_STRATEGY>" \
|
||||||
"$expected_suggestion" \
|
"$expected_suggestion" \
|
||||||
"$(_zsh_autosuggest_suggestion "$prefix")"
|
"$(_zsh_autosuggest_suggestion "$prefix")"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue