tpm/tests/test_plugin_sourcing.sh

79 lines
1.7 KiB
Bash
Raw Permalink Normal View History

2014-05-24 09:38:41 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-07-31 19:54:34 -04:00
TPM_DIR="$PWD"
2015-08-02 18:59:13 -04:00
PLUGINS_DIR="$HOME/.tmux/plugins"
CUSTOM_PLUGINS_DIR="$HOME/foo/plugins"
2014-05-24 09:38:41 -04:00
2015-08-01 16:12:07 -04:00
source "$CURRENT_DIR/helpers/helpers.sh"
source "$CURRENT_DIR/helpers/tpm.sh"
2014-05-24 09:38:41 -04:00
check_binding_defined() {
2014-07-17 16:19:38 -04:00
local binding="$1"
2014-05-24 17:18:37 -04:00
tmux list-keys | grep -q "$binding"
2014-05-24 09:38:41 -04:00
}
2015-08-01 16:12:07 -04:00
create_test_plugin_helper() {
2015-08-02 18:59:13 -04:00
local plugin_path="$PLUGINS_DIR/tmux_test_plugin/"
rm -rf "$plugin_path"
mkdir -p "$plugin_path"
2015-08-01 16:12:07 -04:00
2015-08-02 18:59:13 -04:00
while read line; do
echo "$line" >> "$plugin_path/test_plugin.tmux"
2015-08-01 16:12:07 -04:00
done
chmod +x "$plugin_path/test_plugin.tmux"
}
2015-08-02 18:59:13 -04:00
check_tpm_path() {
local correct_tpm_path="$1"
local tpm_path="$(tmux start-server\; show-environment -g TMUX_PLUGIN_MANAGER_PATH | cut -f2 -d=)"
[ "$correct_tpm_path" == "$tpm_path" ]
}
2014-05-24 09:38:41 -04:00
test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE
set -g mode-keys vi
2015-07-06 19:49:33 -04:00
set -g @plugin "doesnt_matter/tmux_test_plugin"
2015-07-31 19:54:34 -04:00
run-shell "$TPM_DIR/tpm"
2014-05-24 09:38:41 -04:00
HERE
2014-07-17 15:12:28 -04:00
# manually creates a local tmux plugin
2014-05-24 09:38:41 -04:00
create_test_plugin_helper <<- HERE
tmux bind-key R run-shell foo_command
HERE
2014-05-24 17:18:37 -04:00
tmux new-session -d # tmux starts detached
2014-07-17 15:12:28 -04:00
check_binding_defined "R run-shell foo_command" ||
2014-07-17 16:16:46 -04:00
fail_helper "Plugin sourcing fails"
2014-05-24 09:38:41 -04:00
teardown_helper
}
2015-08-02 18:59:13 -04:00
test_default_tpm_path() {
set_tmux_conf_helper <<- HERE
set -g mode-keys vi
2015-08-02 18:59:13 -04:00
run-shell "$TPM_DIR/tpm"
HERE
2015-08-02 19:11:39 -04:00
check_tpm_path "${PLUGINS_DIR}/" ||
2015-08-02 18:59:13 -04:00
fail_helper "Default TPM path not correct"
teardown_helper
}
test_custom_tpm_path() {
set_tmux_conf_helper <<- HERE
set -g mode-keys vi
2015-08-02 18:59:13 -04:00
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
run-shell "$TPM_DIR/tpm"
HERE
check_tpm_path "$CUSTOM_PLUGINS_DIR" ||
fail_helper "Custom TPM path not correct"
teardown_helper
}
2015-08-01 12:06:19 -04:00
run_tests