rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob ab46e5a755ad495c3d4f146199c0f8b9f1d253c9 733 bytes (raw)
$ git show v0.97.0:t/t9100-thread-timeout.sh	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
#!/bin/sh
. ./test-lib.sh
case $model in
ThreadSpawn|ThreadPool|RevThreadSpawn|RevThreadPool) ;;
*) t_info "$0 is only compatible with Thread*"; exit 0 ;;
esac

t_plan 5 "ThreadTimeout Rack middleware test for $model"

t_begin "configure and start" && {
	rtmpfiles curl_err
	rainbows_setup
	rainbows -D t9100.ru -c $unicorn_config
	rainbows_wait_start
}

t_begin "normal request should not timeout" && {
	test x"HI" = x"$(curl -sSf http://$listen/ 2>> $curl_err)"
}

t_begin "sleepy request times out with 408" && {
	rm -f $ok
	curl -sSf http://$listen/2 2>> $curl_err || > $ok
	test -e $ok
	grep 408 $curl_err
}

t_begin "kill server" && {
	kill $rainbows_pid
}

t_begin "no errors in Rainbows! stderr" && {
	check_stderr
}

t_done

git clone https://yhbt.net/rainbows.git