tests: do not clobber existing RUBYLIB
[rainbows.git] / t / t0013-reload-bad-config.sh
blobabe1d5efd0e82b437bd482cf4d81ecb760100e1e
1 #!/bin/sh
2 . ./test-lib.sh
3 t_plan 7 "reload config.ru error with preload_app true"
5 t_begin "setup and start" && {
6 rainbows_setup
7 rtmpfiles ru
9 cat > $ru <<\EOF
10 use Rack::ContentLength
11 use Rack::ContentType, "text/plain"
12 x = { "hello" => "world" }
13 run lambda { |env| [ 200, {}, [ x.inspect << "\n" ] ] }
14 EOF
15 echo 'preload_app true' >> $unicorn_config
16 rainbows -D -c $unicorn_config $ru
17 rainbows_wait_start
20 t_begin "hit with curl" && {
21 out=$(curl -sSf http://$listen/)
22 test x"$out" = x'{"hello"=>"world"}'
25 t_begin "introduce syntax error in rackup file" && {
26 echo '...' >> $ru
29 t_begin "reload signal succeeds" && {
30 kill -HUP $rainbows_pid
31 rainbows_wait_start
32 while ! egrep '(done|error) reloading' $r_err >/dev/null
34 sleep 1
35 done
37 grep 'error reloading' $r_err >/dev/null
38 > $r_err
41 t_begin "hit with curl" && {
42 out=$(curl -sSf http://$listen/)
43 test x"$out" = x'{"hello"=>"world"}'
46 t_begin "killing succeeds" && {
47 kill $rainbows_pid
50 t_begin "check stderr" && {
51 check_stderr
54 t_done