From 40eaf2303f013321b923c5bb616f0579a01a9884 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Thu, 31 Oct 2013 19:05:10 +0100 Subject: o Adding some tests for app-operate. --- libexec/app-operator-pid | 2 +- test/app-operate.bats | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100755 test/app-operate.bats diff --git a/libexec/app-operator-pid b/libexec/app-operator-pid index a3781ee..c9b2096 100755 --- a/libexec/app-operator-pid +++ b/libexec/app-operator-pid @@ -94,7 +94,7 @@ command_start() { esac export APPSH_HOME - echo "Starting app..." + debug "Starting app..." $launcher <&- 1>&- 2>&- & PID=$! 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 +} -- cgit v1.2.3