tpm/tests/test_plugin_sourcing.sh

44 lines
949 B
Bash
Raw 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"
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() {
local plugin_path="$HOME/.tmux/plugins/tmux_test_plugin/"
rm -rf $plugin_path
mkdir -p $plugin_path
while read -r line; do
echo $line >> "$plugin_path/test_plugin.tmux"
done
chmod +x "$plugin_path/test_plugin.tmux"
}
2014-05-24 13:38:41 +00:00
test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE
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-01 16:06:19 +00:00
run_tests