Function for running all tests
This commit is contained in:
parent
eb24578b08
commit
9a34ff66bc
7 changed files with 57 additions and 39 deletions
|
@ -4,6 +4,7 @@
|
||||||
- refactor `shared_set_tpm_path_constant` function
|
- refactor `shared_set_tpm_path_constant` function
|
||||||
- move all instructions to `docs/` dir
|
- move all instructions to `docs/` dir
|
||||||
- add `bin/install_plugins` cli executable script
|
- add `bin/install_plugins` cli executable script
|
||||||
|
- improved test runner function
|
||||||
|
|
||||||
### v2.0.0, 2015-07-07
|
### v2.0.0, 2015-07-07
|
||||||
- enable overriding default key bindings
|
- enable overriding default key bindings
|
||||||
|
|
|
@ -63,3 +63,11 @@ exit_value_helper() {
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
run_tests() {
|
||||||
|
# get all the functions starting with 'test_' and invoke them
|
||||||
|
for test in $(compgen -A function | grep "^test_"); do
|
||||||
|
"$test"
|
||||||
|
done
|
||||||
|
exit_value_helper
|
||||||
|
}
|
||||||
|
|
|
@ -27,8 +27,4 @@ test_plugin_installation() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
run_tests
|
||||||
test_plugin_installation
|
|
||||||
exit_value_helper
|
|
||||||
}
|
|
||||||
main
|
|
||||||
|
|
|
@ -4,6 +4,8 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
PLUGINS_DIR="$HOME/.tmux/plugins"
|
PLUGINS_DIR="$HOME/.tmux/plugins"
|
||||||
TPM_DIR="$PWD"
|
TPM_DIR="$PWD"
|
||||||
|
|
||||||
|
CUSTOM_PLUGINS_DIR="$HOME/foo/plugins"
|
||||||
|
|
||||||
source "$CURRENT_DIR/helpers.sh"
|
source "$CURRENT_DIR/helpers.sh"
|
||||||
|
|
||||||
# TMUX KEY-BINDING TESTS
|
# TMUX KEY-BINDING TESTS
|
||||||
|
@ -14,17 +16,33 @@ test_plugin_installation_via_tmux_key_binding() {
|
||||||
run-shell "$TPM_DIR/tpm"
|
run-shell "$TPM_DIR/tpm"
|
||||||
HERE
|
HERE
|
||||||
|
|
||||||
# opens tmux and test it with `expect`
|
"$CURRENT_DIR/expect_successful_plugin_download" ||
|
||||||
"$CURRENT_DIR"/expect_successful_plugin_download ||
|
|
||||||
fail_helper "[key-binding] plugin installation fails"
|
fail_helper "[key-binding] plugin installation fails"
|
||||||
|
|
||||||
# check plugin dir exists after download
|
|
||||||
check_dir_exists_helper "$PLUGINS_DIR/tmux-example-plugin/" ||
|
check_dir_exists_helper "$PLUGINS_DIR/tmux-example-plugin/" ||
|
||||||
fail_helper "[key-binding] plugin download fails"
|
fail_helper "[key-binding] plugin download fails"
|
||||||
|
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_plugin_installation_custom_dir_via_tmux_key_binding() {
|
||||||
|
set_tmux_conf_helper <<- HERE
|
||||||
|
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
|
||||||
|
|
||||||
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
||||||
|
run-shell "$TPM_DIR/tpm"
|
||||||
|
HERE
|
||||||
|
|
||||||
|
"$CURRENT_DIR/expect_successful_plugin_download" ||
|
||||||
|
fail_helper "[key-binding][custom dir] plugin installation fails"
|
||||||
|
|
||||||
|
check_dir_exists_helper "$CUSTOM_PLUGINS_DIR/tmux-example-plugin/" ||
|
||||||
|
fail_helper "[key-binding][custom dir] plugin download fails"
|
||||||
|
|
||||||
|
teardown_helper
|
||||||
|
rm -rf "$CUSTOM_PLUGINS_DIR"
|
||||||
|
}
|
||||||
|
|
||||||
test_multiple_plugins_installation_via_tmux_key_binding() {
|
test_multiple_plugins_installation_via_tmux_key_binding() {
|
||||||
set_tmux_conf_helper <<- HERE
|
set_tmux_conf_helper <<- HERE
|
||||||
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
||||||
|
@ -33,7 +51,7 @@ test_multiple_plugins_installation_via_tmux_key_binding() {
|
||||||
HERE
|
HERE
|
||||||
|
|
||||||
# opens tmux and test it with `expect`
|
# opens tmux and test it with `expect`
|
||||||
"$CURRENT_DIR"/expect_successful_multiple_plugins_download ||
|
"$CURRENT_DIR/expect_successful_multiple_plugins_download" ||
|
||||||
fail_helper "[key-binding] multiple plugins installation fails"
|
fail_helper "[key-binding] multiple plugins installation fails"
|
||||||
|
|
||||||
check_dir_exists_helper "$PLUGINS_DIR/tmux-example-plugin/" ||
|
check_dir_exists_helper "$PLUGINS_DIR/tmux-example-plugin/" ||
|
||||||
|
@ -65,6 +83,27 @@ test_plugin_installation_via_script() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_plugin_installation_custom_dir_via_script() {
|
||||||
|
set_tmux_conf_helper <<- HERE
|
||||||
|
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
|
||||||
|
|
||||||
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
||||||
|
run-shell "$TPM_DIR/tpm"
|
||||||
|
HERE
|
||||||
|
|
||||||
|
script_run_helper "$TPM_DIR/bin/install_plugins" '"tmux-example-plugin" download success' ||
|
||||||
|
fail_helper "[script][custom dir] plugin installation fails"
|
||||||
|
|
||||||
|
check_dir_exists_helper "$CUSTOM_PLUGINS_DIR/tmux-example-plugin/" ||
|
||||||
|
fail_helper "[script][custom dir] plugin download fails"
|
||||||
|
|
||||||
|
script_run_helper "$TPM_DIR/bin/install_plugins" 'Already installed "tmux-example-plugin"' ||
|
||||||
|
fail_helper "[script][custom dir] plugin already installed message fail"
|
||||||
|
|
||||||
|
teardown_helper
|
||||||
|
rm -rf "$CUSTOM_PLUGINS_DIR"
|
||||||
|
}
|
||||||
|
|
||||||
test_multiple_plugins_installation_via_script() {
|
test_multiple_plugins_installation_via_script() {
|
||||||
set_tmux_conf_helper <<- HERE
|
set_tmux_conf_helper <<- HERE
|
||||||
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
||||||
|
@ -87,13 +126,4 @@ test_multiple_plugins_installation_via_script() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
run_tests
|
||||||
test_plugin_installation_via_tmux_key_binding
|
|
||||||
test_multiple_plugins_installation_via_tmux_key_binding
|
|
||||||
|
|
||||||
test_plugin_installation_via_script
|
|
||||||
test_multiple_plugins_installation_via_script
|
|
||||||
|
|
||||||
exit_value_helper
|
|
||||||
}
|
|
||||||
main
|
|
||||||
|
|
|
@ -92,13 +92,4 @@ test_legacy_and_new_syntax_for_plugin_installation_work_via_script() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
run_tests
|
||||||
test_plugin_installation_via_tmux_key_binding
|
|
||||||
test_legacy_and_new_syntax_for_plugin_installation_work_via_tmux_key_binding
|
|
||||||
|
|
||||||
test_plugin_installation_via_script
|
|
||||||
test_legacy_and_new_syntax_for_plugin_installation_work_via_script
|
|
||||||
|
|
||||||
exit_value_helper
|
|
||||||
}
|
|
||||||
main
|
|
||||||
|
|
|
@ -28,8 +28,4 @@ test_plugin_sourcing() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
run_tests
|
||||||
test_plugin_sourcing
|
|
||||||
exit_value_helper
|
|
||||||
}
|
|
||||||
main
|
|
||||||
|
|
|
@ -30,8 +30,4 @@ test_plugin_installation() {
|
||||||
teardown_helper
|
teardown_helper
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
run_tests
|
||||||
test_plugin_installation
|
|
||||||
exit_value_helper
|
|
||||||
}
|
|
||||||
main
|
|
||||||
|
|
Loading…
Reference in a new issue