tpm/tests/test_plugin_installation.sh

98 lines
2.9 KiB
Bash
Raw Normal View History

2014-05-24 09:38:41 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2014-07-17 16:19:38 -04:00
source $CURRENT_DIR/helpers.sh
2014-05-24 09:38:41 -04:00
# TMUX KEY-BINDING TESTS
test_plugin_installation_via_tmux_key_binding() {
2014-05-24 09:38:41 -04:00
set_tmux_conf_helper <<- HERE
set -g @plugin "tmux-plugins/tmux-example-plugin"
2014-11-19 09:58:04 -05:00
run-shell "$PWD/tpm"
2014-05-24 09:38:41 -04:00
HERE
2014-05-24 17:18:37 -04:00
# opens tmux and test it with `expect`
2015-06-02 16:47:32 -04:00
"$CURRENT_DIR"/expect_successful_plugin_download ||
fail_helper "[key-binding] plugin installation fails"
2014-05-24 09:38:41 -04:00
2014-05-24 17:18:37 -04:00
# check plugin dir exists after download
2014-07-28 10:07:35 -04:00
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "[key-binding] plugin download fails"
2014-05-24 09:38:41 -04:00
teardown_helper
}
test_multiple_plugins_installation_via_tmux_key_binding() {
2015-06-02 16:47:32 -04:00
set_tmux_conf_helper <<- HERE
set -g @plugin "tmux-plugins/tmux-example-plugin"
2015-07-31 19:07:04 -04:00
\ \ set -g @plugin 'tmux-plugins/tmux-copycat'
2015-06-02 16:47:32 -04:00
run-shell "$PWD/tpm"
HERE
# opens tmux and test it with `expect`
"$CURRENT_DIR"/expect_successful_multiple_plugins_download ||
fail_helper "[key-binding] multiple plugins installation fails"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "[key-binding] plugin download fails (tmux-example-plugin)"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-copycat/" ||
fail_helper "[key-binding] plugin download fails (tmux-copycat)"
teardown_helper
}
# SCRIPT TESTS
test_plugin_installation_via_script() {
set_tmux_conf_helper <<- HERE
set -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$PWD/tpm"
HERE
script_run_helper "$PWD/bin/install_plugins" '"tmux-example-plugin" download success' ||
fail_helper "[script] plugin installation fails"
2015-06-02 16:47:32 -04:00
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "[script] plugin download fails"
script_run_helper "$PWD/bin/install_plugins" 'Already installed "tmux-example-plugin"' ||
fail_helper "[script] plugin already installed message fail"
teardown_helper
}
test_multiple_plugins_installation_via_script() {
set_tmux_conf_helper <<- HERE
set -g @plugin "tmux-plugins/tmux-example-plugin"
\ \ set -g @plugin 'tmux-plugins/tmux-copycat'
run-shell "$PWD/tpm"
HERE
script_run_helper "$PWD/bin/install_plugins" '"tmux-example-plugin" download success' ||
fail_helper "[script] multiple plugins installation fails"
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
fail_helper "[script] plugin download fails (tmux-example-plugin)"
2015-06-02 16:47:32 -04:00
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-copycat/" ||
fail_helper "[script] plugin download fails (tmux-copycat)"
script_run_helper "$PWD/bin/install_plugins" 'Already installed "tmux-copycat"' ||
fail_helper "[script] multiple plugins already installed message fail"
2015-06-02 16:47:32 -04:00
teardown_helper
}
2014-05-24 09:38:41 -04:00
main() {
test_plugin_installation_via_tmux_key_binding
test_multiple_plugins_installation_via_tmux_key_binding
test_plugin_installation_via_script
test_multiple_plugins_installation_via_script
2014-05-24 17:18:37 -04:00
exit_value_helper
2014-05-24 09:38:41 -04:00
}
main