From 15fe80b3bff7b0d249ee32bcbbe1dfa116d3c629 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 24 Oct 2009 20:41:15 -0700 Subject: tests: remove symlinks and small files, use Make This will make it easier to enable and manage tests for new concurrency models. --- t/t0002-graceful.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 t/t0002-graceful.sh (limited to 't/t0002-graceful.sh') diff --git a/t/t0002-graceful.sh b/t/t0002-graceful.sh new file mode 100755 index 0000000..c3ff27e --- /dev/null +++ b/t/t0002-graceful.sh @@ -0,0 +1,32 @@ +#!/bin/sh +. ./test-lib.sh + +t_plan 4 "graceful exit test for $model" + +t_begin "setup and startup" && { + rtmpfiles curl_out + rainbows_setup $model + rainbows -D sleep.ru -c $unicorn_config + rainbows_wait_start +} + +t_begin "send a request and SIGQUIT while request is processing" && { + curl -sSfv -T- $curl_out 2> $fifo & + awk -v rainbows_pid=$rainbows_pid ' +{ print $0 } +/100 Continue/ { + print "awk: sending SIGQUIT to", rainbows_pid + system("kill -QUIT "rainbows_pid) +}' $fifo + wait +} + +dbgcat r_err + +t_begin 'response returned "Hello"' && { + test x$(cat $curl_out) = xHello +} + +t_begin 'stderr has no errors' && check_stderr + +t_done -- cgit v1.2.3-24-ge0c7