aboutsummaryrefslogtreecommitdiff
path: root/test/X-it-install-remove.bats
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-27 12:58:25 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-27 12:58:25 +0100
commit11c930f71db58201994265b71a8f76187f1dbda1 (patch)
treeb0f90a4d631b946e4cb3d3755e9da1e3198aee71 /test/X-it-install-remove.bats
parent6076c500405b7759845496dce6d3b9e1dc619cca (diff)
downloadapp.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.gz
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.bz2
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.xz
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.zip
o Adding a common header to all scripts.
o Disabling un-used tests and apps for now.
Diffstat (limited to 'test/X-it-install-remove.bats')
-rwxr-xr-xtest/X-it-install-remove.bats45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/X-it-install-remove.bats b/test/X-it-install-remove.bats
new file mode 100755
index 0000000..78f4532
--- /dev/null
+++ b/test/X-it-install-remove.bats
@@ -0,0 +1,45 @@
+#!/usr/bin/env bats
+# vim: set filetype=sh:
+
+load utils
+
+@test "install remove roundtrip" {
+ mkzip "app-a"
+ name="app-a"
+ instance="prod"
+ a="-n $name -i $instance"
+
+ describe "Installing $name/$instance"
+ app instance install \
+ -r file \
+ -u $BATS_TEST_DIRNAME/data/app-a.zip \
+ -n $name -i $instance; echo_lines
+ [ $status -eq 0 ]
+
+ can_not_read ".app/var/pid/$name-$instance.pid"
+
+ describe "Setting property"
+ app -n $name -i $instance conf set env.TEST_PROPERTY awesome
+ [ $status -eq 0 ]
+
+ describe "Starting $name/$instance"
+ app -n $name -i $instance operate start
+ echo_lines
+ [ $status -eq 0 ]
+ can_read .app/var/pid/$name-$instance.pid
+
+ describe "Stopping $name/$instance"
+ app -n $name -i $instance operate stop
+ [ $status -eq 0 ]
+ echo_lines
+ can_not_read .app/var/pid/$name-$instance.pid
+
+ can_read "$name/$instance/logs/$name.log"
+ can_read "$name/$instance/logs/$name.env"
+ can_read "$name/$instance/current/foo.conf"
+
+ [ "`cat $name/$instance/logs/$name.env`" = "TEST_PROPERTY=awesome" ]
+ [ "`cat $name/$instance/current/foo.conf`" = "hello" ]
+
+ # TODO: Remove the version
+}