Tests non-existing plugin installation

This commit is contained in:
Bruno Sutic
2015-08-02 18:38:44 +02:00
parent 7ff8de38a4
commit d19c187dcc
3 changed files with 67 additions and 1 deletions

View File

@ -0,0 +1,41 @@
#!/usr/bin/env expect
# disables script output
log_user 0
spawn tmux
# Waiting for tmux to attach. If this is not done, next command, `send` will
# not work properly.
sleep 1
# this is tmux prefix + I
send "I"
# cloning might take a while
set timeout 20
expect_after {
timeout {
puts "Plugin installation timeout"
exit 1
}
}
expect {
"Installing \"non-existing-plugin\"" {
expect {
"\"non-existing-plugin\" download fail" {
expect {
"Done, press ENTER to continue" {
exit
}
}
}
}
}
}