From fbc6c0b93a88ac10730dd6f4492750cd32e2b44a Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Wed, 17 Oct 2012 21:03:43 +0200 Subject: o Adding environment variables to postinstall: - APPSH_BASEDIR - APPSH_HOME - APPSH_INSTANCE - APPSH_NAME - APPSH_VERSION --- test/app-install.bats | 7 ++++++- test/data/app-a/root/etc/prod/foo.conf | 1 + test/data/app-a/scripts/postinstall | 8 ++++++++ test/data/install-test-env/scripts/postinstall | 2 +- test/it-install-remove.bats | 4 +++- test/utils.bash | 2 ++ 6 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 test/data/app-a/root/etc/prod/foo.conf (limited to 'test') diff --git a/test/app-install.bats b/test/app-install.bats index 59880bd..7b80547 100755 --- a/test/app-install.bats +++ b/test/app-install.bats @@ -35,11 +35,16 @@ Changing current symlink" ] [ "$output" = "Creating instance 'prod' for 'install-test-env' Unpacking... Running postinstall... +APPSH_BASEDIR=$APPSH_BASEDIR +APPSH_HOME=$APPSH_HOME +APPSH_INSTANCE=prod +APPSH_NAME=install-test-env +APPSH_VERSION=1.0 PATH=/bin:/usr/bin PWD=$WORK/install-test-env/prod/versions/1.0 SHLVL=1 _=/usr/bin/env Postinstall completed successfully Changing current symlink" ] - [ ${#lines[*]} == 9 ] + [ ${#lines[*]} == 14 ] } diff --git a/test/data/app-a/root/etc/prod/foo.conf b/test/data/app-a/root/etc/prod/foo.conf new file mode 100644 index 0000000..ce01362 --- /dev/null +++ b/test/data/app-a/root/etc/prod/foo.conf @@ -0,0 +1 @@ +hello diff --git a/test/data/app-a/scripts/postinstall b/test/data/app-a/scripts/postinstall index cd16289..a77f86f 100644 --- a/test/data/app-a/scripts/postinstall +++ b/test/data/app-a/scripts/postinstall @@ -1,3 +1,11 @@ #!/bin/bash echo "Hello World!" + +if [ -d root/etc/$APPSH_INSTANCE ] +then + find root/etc/$APPSH_INSTANCE -type f -maxdepth 1 | while read file + do + cp $file root/ + done +fi diff --git a/test/data/install-test-env/scripts/postinstall b/test/data/install-test-env/scripts/postinstall index ad40c95..2a68f6a 100644 --- a/test/data/install-test-env/scripts/postinstall +++ b/test/data/install-test-env/scripts/postinstall @@ -1,3 +1,3 @@ #!/bin/bash -env +env | sort diff --git a/test/it-install-remove.bats b/test/it-install-remove.bats index 736bf56..bba16d2 100755 --- a/test/it-install-remove.bats +++ b/test/it-install-remove.bats @@ -13,7 +13,7 @@ load utils app instance install \ -r file \ -u $BATS_TEST_DIRNAME/data/app-a.zip \ - -n $name -i $instance + -n $name -i $instance; echo_lines [ $status -eq 0 ] can_not_read ".app/var/pid/$name-$instance.pid" @@ -35,8 +35,10 @@ load utils can_read "$name/$instance/$name.log" can_read "$name/$instance/$name.env" + can_read "$name/$instance/current/foo.conf" [ "`cat $name/$instance/$name.env`" = "TEST_PROPERTY=awesome" ] + [ "`cat $name/$instance/current/foo.conf`" = "hello" ] # app instance install \ # -r file \ diff --git a/test/utils.bash b/test/utils.bash index 653aae4..6a6967f 100644 --- a/test/utils.bash +++ b/test/utils.bash @@ -14,6 +14,8 @@ echo_lines() { APPSH=$(pwd)/app setup() { + APPSH_BASEDIR=$BATS_TMPDIR/app.sh + APPSH_HOME=$(cd $BATS_TEST_DIRNAME/../..; echo `pwd`/app.sh) rm -rf $BATS_TMPDIR/app.sh mkdir $BATS_TMPDIR/app.sh cd $BATS_TMPDIR/app.sh -- cgit v1.2.3