2014-05-24 13:38:41 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
2014-07-17 20:19:38 +00:00
|
|
|
source $CURRENT_DIR/helpers.sh
|
2014-05-24 13:38:41 +00:00
|
|
|
|
|
|
|
test_plugin_installation() {
|
|
|
|
set_tmux_conf_helper <<- HERE
|
2015-06-02 21:27:22 +00:00
|
|
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
2014-11-19 14:58:04 +00:00
|
|
|
run-shell "$PWD/tpm"
|
2014-05-24 13:38:41 +00:00
|
|
|
HERE
|
|
|
|
|
2014-05-24 21:18:37 +00:00
|
|
|
# opens tmux and test it with `expect`
|
2015-06-02 20:47:32 +00:00
|
|
|
"$CURRENT_DIR"/expect_successful_plugin_download ||
|
2014-07-17 20:16:46 +00:00
|
|
|
fail_helper "Tmux plugin installation fails"
|
2014-05-24 13:38:41 +00:00
|
|
|
|
2014-05-24 21:18:37 +00:00
|
|
|
# check plugin dir exists after download
|
2014-07-28 14:07:35 +00:00
|
|
|
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
|
2014-07-17 20:16:46 +00:00
|
|
|
fail_helper "Plugin download fails"
|
2014-05-24 13:38:41 +00:00
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
2015-06-02 20:47:32 +00:00
|
|
|
test_multiple_plugins_installation() {
|
|
|
|
set_tmux_conf_helper <<- HERE
|
2015-06-02 21:27:22 +00:00
|
|
|
set -g @plugin "tmux-plugins/tmux-example-plugin"
|
2015-06-02 23:29:09 +00:00
|
|
|
set -g @plugin 'tmux-plugins/tmux-copycat'
|
2015-06-02 20:47:32 +00:00
|
|
|
run-shell "$PWD/tpm"
|
|
|
|
HERE
|
|
|
|
|
|
|
|
# opens tmux and test it with `expect`
|
|
|
|
"$CURRENT_DIR"/expect_successful_multiple_plugins_download ||
|
|
|
|
fail_helper "Tmux multiple plugins installation fails"
|
|
|
|
|
|
|
|
# check plugin dir exists after download
|
|
|
|
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-example-plugin/" ||
|
|
|
|
fail_helper "Plugin download fails (tmux-example-plugin)"
|
|
|
|
|
|
|
|
check_dir_exists_helper "$HOME/.tmux/plugins/tmux-copycat/" ||
|
|
|
|
fail_helper "Plugin download fails (tmux-copycat)"
|
|
|
|
|
|
|
|
teardown_helper
|
|
|
|
}
|
|
|
|
|
2014-05-24 13:38:41 +00:00
|
|
|
main() {
|
2014-05-24 21:18:37 +00:00
|
|
|
test_plugin_installation
|
2015-06-02 20:47:32 +00:00
|
|
|
test_multiple_plugins_installation
|
2014-05-24 21:18:37 +00:00
|
|
|
exit_value_helper
|
2014-05-24 13:38:41 +00:00
|
|
|
}
|
|
|
|
main
|