tpm/tests/test_plugin_bundle_installa...

61 lines
2.2 KiB
Bash
Executable File

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $CURRENT_DIR/helpers.sh
test_plugin_installation() {
set_tmux_conf_helper <<- HERE
set -g @bundle "tmux-plugins/tmux-example-plugin"
set -g @Bundle "gh:tmux-plugins/tmux-online-status"
set -g @BUNDLE "github:tmux-plugins/tmux-battery"
set -g @BUNDLE "github:tmux-plugins/tmux-sidebar:master"
set -g @BUNDLE "https://github.com/tmux-plugins/tmux-sensible:3ea5b"
set -g @BUNDLE "http://ovh.net/files/sha1sum.txt"
set -g @BUNDLE "git://git.openembedded.org/meta-micro"
set -g @BUNDLE "ftp://ftp.microsoft.com/developr/readme.txt"
set -g @BUNDLE "file://$PWD/tests/run-tests-within-vm"
run-shell "$PWD/tpm"
HERE
# opens tmux and test it with `expect`
$CURRENT_DIR/expect_successful_plugin_bundle_download ||
fail_helper "Tmux plugin installation fails"
# check plugin dir exists after download
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "Plugin tmux-plugins/tmux-example-plugin download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-online-status/" ||
fail_helper "Plugin gh:tmux-plugins/tmux-online-status download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-battery/" ||
fail_helper "Plugin github:tmux-plugins/tmux-battery download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-sidebar/" ||
fail_helper "Plugin github:tmux-plugins/tmux-sidebar:master download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-sensible/" ||
fail_helper "Plugin https://github.com/tmux-plugins/tmux-sensible:3ea5b download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/sha1sum.txt/" ||
fail_helper "Plugin http://ovh.net/files/sha1sum.txt download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/meta-micro/" ||
fail_helper "Plugin git://git.openembedded.org/meta-micro download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/readme.txt/" ||
fail_helper "Plugin ftp://ftp.microsoft.com/developr/readme.txt download failed"
check_dir_exists_helper "$HOME/.tmux/plugins/run-tests-within-vm/" ||
fail_helper "Plugin file://$PWD/tests/run-tests-within-vm failed"
teardown_helper
}
main() {
test_plugin_installation
exit_value_helper
}
main