From 11c930f71db58201994265b71a8f76187f1dbda1 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 27 Jan 2013 12:58:25 +0100 Subject: o Adding a common header to all scripts. o Disabling un-used tests and apps for now. --- test/X-it-install-remove.bats | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 test/X-it-install-remove.bats (limited to 'test/X-it-install-remove.bats') 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 +} -- cgit v1.2.3