tpm/tests/test_plugin_sourcing.sh

76 lines
1.6 KiB
Bash
Raw Normal View History

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