2015-05-27 03:46:15 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2015-07-31 23:54:34 +00:00
|
|
|
TPM_DIR="$PWD"
|
|
|
|
PLUGINS_DIR="$HOME/.tmux/plugins"
|
2015-05-27 03:46:15 +00:00
|
|
|
|
2015-08-01 20:12:07 +00:00
|
|
|
source "$CURRENT_DIR/helpers/helpers.sh"
|
|
|
|
source "$CURRENT_DIR/helpers/tpm.sh"
|
2015-05-27 03:46:15 +00:00
|
|
|
|
|
|
|
manually_install_the_plugin() {
|
2015-07-31 23:54:34 +00:00
|
|
|
rm -rf "$PLUGINS_DIR"
|
|
|
|
mkdir -p "$PLUGINS_DIR"
|
|
|
|
cd "$PLUGINS_DIR"
|
2015-05-27 03:46:15 +00:00
|
|
|
git clone --quiet https://github.com/tmux-plugins/tmux-example-plugin
|
|
|
|
}
|
|
|
|
|
2015-08-02 22:29:01 +00:00
|
|
|
# TMUX KEY-BINDING TESTS
|
|
|
|
|
|
|
|
test_plugin_uninstallation_via_tmux_key_binding() {
|
2015-05-27 03:46:15 +00:00
|
|
|
set_tmux_conf_helper <<- HERE
|
2015-08-04 15:20:03 +00:00
|
|
|
set -g mode-keys vi
|
2015-07-31 23:54:34 +00:00
|
|
|
run-shell "$TPM_DIR/tpm"
|
2015-05-27 03:46:15 +00:00
|
|
|
HERE
|
|
|
|
|
|
|
|
manually_install_the_plugin
|
|
|
|
|
2015-07-31 23:54:34 +00:00
|
|
|
"$CURRENT_DIR/expect_successful_clean_plugins" ||
|
2015-08-02 22:29:01 +00:00
|
|
|
fail_helper "[key-binding] clean fails"
|
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
|
|
|
# SCRIPT TESTS
|
|
|
|
|
|
|
|
test_plugin_uninstallation_via_script() {
|
|
|
|
set_tmux_conf_helper <<- HERE
|
2015-08-04 15:20:03 +00:00
|
|
|
set -g mode-keys vi
|
2015-08-02 22:29:01 +00:00
|
|
|
run-shell "$TPM_DIR/tpm"
|
|
|
|
HERE
|
|
|
|
|
|
|
|
manually_install_the_plugin
|
|
|
|
|
|
|
|
script_run_helper "$TPM_DIR/bin/clean_plugins" '"tmux-example-plugin" clean success' ||
|
|
|
|
fail_helper "[script] plugin cleaning fails"
|
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
|
|
|
test_unsuccessful_plugin_uninstallation_via_script() {
|
|
|
|
set_tmux_conf_helper <<- HERE
|
2015-08-04 15:20:03 +00:00
|
|
|
set -g mode-keys vi
|
2015-08-02 22:29:01 +00:00
|
|
|
run-shell "$TPM_DIR/tpm"
|
|
|
|
HERE
|
|
|
|
|
|
|
|
manually_install_the_plugin
|
|
|
|
chmod 000 "$PLUGINS_DIR/tmux-example-plugin" # disable directory deletion
|
|
|
|
|
|
|
|
local expected_exit_code=1
|
|
|
|
script_run_helper "$TPM_DIR/bin/clean_plugins" '"tmux-example-plugin" clean fail' "$expected_exit_code" ||
|
|
|
|
fail_helper "[script] unsuccessful plugin cleaning doesn't fail"
|
|
|
|
|
|
|
|
chmod 755 "$PLUGINS_DIR/tmux-example-plugin" # enable directory deletion
|
2015-05-27 03:46:15 +00:00
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
2015-08-01 16:06:19 +00:00
|
|
|
run_tests
|