diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-10-31 19:05:10 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-11-01 19:58:08 +0100 |
commit | 40eaf2303f013321b923c5bb616f0579a01a9884 (patch) | |
tree | 8f3166de44a8e9ef8afcc45d9d033eb14192c978 /test | |
parent | f743a82f560a2b1da4bc1b5f3236c4226fa6a9ab (diff) | |
download | app.sh-40eaf2303f013321b923c5bb616f0579a01a9884.tar.gz app.sh-40eaf2303f013321b923c5bb616f0579a01a9884.tar.bz2 app.sh-40eaf2303f013321b923c5bb616f0579a01a9884.tar.xz app.sh-40eaf2303f013321b923c5bb616f0579a01a9884.zip |
o Adding some tests for app-operate.
Diffstat (limited to 'test')
-rwxr-xr-x | test/app-operate.bats | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/app-operate.bats b/test/app-operate.bats new file mode 100755 index 0000000..e931f3c --- /dev/null +++ b/test/app-operate.bats @@ -0,0 +1,31 @@ +#!/usr/bin/env bats +# vim: set filetype=sh: + +load utils + +@test "app-upgrade" { + mkzip app-a + + app init -d my-app file $APPSH_HOME/test/data/app-a.zip + + cd my-app + app status + eq '${lines[0]}' "Not running" + eq '${#lines[*]}' 1 + + app start + pid=`cat .app/pid` + match '${lines[0]}' "Application launched as $pid" + eq '${#lines[*]}' 1 + + app stop + match '${lines[0]}' "Sending TERM to $pid, waiting for shutdown.*" + eq '${#lines[*]}' 1 + + echo wat > .app/pid + check_status=no + app stop + eq '$status' 1 + match '${lines[0]}' "The application crashed. Was running as wat" + eq '${#lines[*]}' 1 +} |