aboutsummaryrefslogtreecommitdiff
path: root/tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
committerElizabeth <me@liz.coffee>2025-06-02 13:11:10 -0700
commitd098e94ad102da9d018acca72ca5a5c554d25a01 (patch)
treed6d23ee63ad5a1aa4017a605d9e09e75de2c5f49 /tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh
parentede675866355d34ac9fdc1b8e047576f574bdfa2 (diff)
downloaddots-d098e94ad102da9d018acca72ca5a5c554d25a01.tar.gz
dots-d098e94ad102da9d018acca72ca5a5c554d25a01.zip
Update paths n stuff
Diffstat (limited to 'tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh')
-rwxr-xr-xtmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh78
1 files changed, 0 insertions, 78 deletions
diff --git a/tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh b/tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh
deleted file mode 100755
index c06f1fe..0000000
--- a/tmux/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/usr/bin/env bash
-
-CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-TPM_DIR="$PWD"
-PLUGINS_DIR="$HOME/.tmux/plugins"
-
-CUSTOM_PLUGINS_DIR="$HOME/foo/plugins"
-
-source "$CURRENT_DIR/helpers/helpers.sh"
-source "$CURRENT_DIR/helpers/tpm.sh"
-
-check_binding_defined() {
- local binding="$1"
- tmux list-keys | grep -q "$binding"
-}
-
-create_test_plugin_helper() {
- local plugin_path="$PLUGINS_DIR/tmux_test_plugin/"
- rm -rf "$plugin_path"
- mkdir -p "$plugin_path"
-
- while read line; do
- echo "$line" >> "$plugin_path/test_plugin.tmux"
- done
- chmod +x "$plugin_path/test_plugin.tmux"
-}
-
-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" ]
-}
-
-test_plugin_sourcing() {
- set_tmux_conf_helper <<- HERE
- set -g mode-keys vi
- set -g @plugin "doesnt_matter/tmux_test_plugin"
- run-shell "$TPM_DIR/tpm"
- HERE
-
- # manually creates a local tmux plugin
- create_test_plugin_helper <<- HERE
- tmux bind-key R run-shell foo_command
- HERE
-
- tmux new-session -d # tmux starts detached
- check_binding_defined "R run-shell foo_command" ||
- fail_helper "Plugin sourcing fails"
-
- teardown_helper
-}
-
-test_default_tpm_path() {
- set_tmux_conf_helper <<- HERE
- set -g mode-keys vi
- 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 -g mode-keys vi
- 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
-}
-
-run_tests