tpm/test/tests/test_plugin_installation.sh

29 lines
675 B
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 15:12:28 -04:00
source $CURRENT_DIR/test_helpers.sh
2014-05-24 09:38:41 -04:00
test_plugin_installation() {
set_tmux_conf_helper <<- HERE
set -g @tpm_plugins "bruno-/tmux_example_plugin"
2014-07-17 15:12:28 -04:00
run-shell '/root/tmux_plugin_manager/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`
$CURRENT_DIR/expect_successful_plugin_download ||
2014-07-17 15:12:28 -04:00
(echo "Tmux plugin installation fails" >&2; fail_test)
2014-05-24 09:38:41 -04:00
2014-05-24 17:18:37 -04:00
# check plugin dir exists after download
check_dir_exists_helper "/root/.tmux/plugins/tmux_example_plugin/" ||
2014-07-17 15:12:28 -04:00
(echo "Plugin download fails" >&2; fail_test)
2014-05-24 09:38:41 -04:00
teardown_helper
}
main() {
2014-05-24 17:18:37 -04:00
test_plugin_installation
exit_value_helper
2014-05-24 09:38:41 -04:00
}
main