tpm/tests/test_plugin_sourcing.sh

79 lines
1.7 KiB
Bash
Raw Permalink Normal View History

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