about summary refs log tree commit homepage
path: root/t/lib-reopen-logs.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/lib-reopen-logs.sh')
-rw-r--r--t/lib-reopen-logs.sh60
1 files changed, 60 insertions, 0 deletions
diff --git a/t/lib-reopen-logs.sh b/t/lib-reopen-logs.sh
new file mode 100644
index 0000000..ace223a
--- /dev/null
+++ b/t/lib-reopen-logs.sh
@@ -0,0 +1,60 @@
+#!/bin/sh
+# don't set nr_client for Rev, only _one_ app running at once :x
+nr_client=${nr_client-2}
+. ./test-lib.sh
+
+eval $(unused_listen)
+rtmpfiles unicorn_config curl_out curl_err pid r_err r_out r_rot
+
+
+cat > $unicorn_config <<EOF
+listen "$listen"
+pid "$pid"
+stderr_path "$r_err"
+stdout_path "$r_out"
+Rainbows! { use :$model }
+EOF
+
+rainbows -D sleep.ru -c $unicorn_config
+wait_for_pid $pid
+
+start=$(date +%s)
+for i in $(awk "BEGIN{for(i=0;i<$nr_client;++i) print i}" </dev/null)
+do
+        ( curl -sSf http://$listen/2 >> $curl_out 2>> $curl_err ) &
+done
+! grep Error $r_err
+
+rm $r_rot
+mv $r_err $r_rot
+
+kill -USR1 $(cat $pid)
+wait_for_pid $r_err
+
+dbgcat r_rot
+dbgcat r_err
+
+wait
+echo elapsed=$(( $(date +%s) - $start ))
+! test -s $curl_err
+test x"$(wc -l < $curl_out)" = x$nr_client
+nr=$(sort < $curl_out | uniq | wc -l)
+
+test "$nr" -eq 1
+test x$(sort < $curl_out | uniq) = xHello
+! grep Error $r_err
+! grep Error $r_rot
+
+before_rot=$(wc -c < $r_rot)
+before_err=$(wc -c < $r_err)
+curl -sSfv http://$listen/
+after_rot=$(wc -c < $r_rot)
+after_err=$(wc -c < $r_err)
+
+test $after_rot -eq $before_rot && echo "before_rot -eq after_rot"
+test $after_err -gt $before_err && echo "before_err -gt after_err"
+
+kill $(cat $pid)
+dbgcat r_err
+! grep Error $r_err
+! grep Error $r_rot