From eb57310d6130e5d2ce146126a17346f9cba6c49e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 10 Jun 2010 19:11:01 -0700 Subject: test to ensure "unicorn fooapp.rb" respects working_directory --- t/t0005-working_directory_app.rb.sh | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 t/t0005-working_directory_app.rb.sh diff --git a/t/t0005-working_directory_app.rb.sh b/t/t0005-working_directory_app.rb.sh new file mode 100755 index 0000000..ba43387 --- /dev/null +++ b/t/t0005-working_directory_app.rb.sh @@ -0,0 +1,37 @@ +#!/bin/sh +. ./test-lib.sh + +t_plan 4 "fooapp.rb inside alt working_directory" + +t_begin "setup and start" && { + unicorn_setup + rm -rf $t_pfx.app + mkdir $t_pfx.app + + cat > $t_pfx.app/fooapp.rb <<\EOF +class Fooapp + def self.call(env) + [ 200, [%w(Content-Type text/plain), %w(Content-Length 2)], %w(HI) ] + end +end +EOF + # the whole point of this exercise + echo "working_directory '$t_pfx.app'" >> $unicorn_config + cd / + unicorn -D -c $unicorn_config fooapp.rb + unicorn_wait_start +} + +t_begin "hit with curl" && { + body=$(curl -sSf http://$listen/) +} + +t_begin "killing succeeds" && { + kill $unicorn_pid +} + +t_begin "response body expected" && { + test x"$body" = xHI +} + +t_done -- cgit v1.2.3-24-ge0c7