rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob 3e543b38af5f595bfe46cab353576f0caf787fb5 1079 bytes (raw)
$ git show v0.4.0:t/t0100-rack-input-hammer.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
37
38
39
40
41
42
43
44
45
 
nr_client=${nr_client-4}
. ./test-lib.sh
test -r random_blob || die "random_blob required, run with 'make $0'"

t_plan 7 "concurrent rack.input hammer stress test"

t_begin "setup and startup" && {
	rtmpfiles curl_out curl_err
	rainbows_setup $model
	rainbows -D sha1.ru -c $unicorn_config
	rainbows_wait_start
}

t_begin "send $nr_client concurrent requests" && {
	start=$(date +%s)
	for i in $(awk "BEGIN{for(i=0;i<$nr_client;++i) print i}" </dev/null)
	do
		(
			curl -sSf -T- http://$listen/$i \
			  < random_blob >> $curl_out 2>> $curl_err
		) &
	done
	wait
	t_info elapsed=$(( $(date +%s) - $start ))
}

t_begin "kill server" && kill $rainbows_pid

t_begin "got $nr_client responses" && {
	test $nr_client -eq $(wc -l < $curl_out)
}

t_begin "all responses identical" && {
	test 1 -eq $(sort < $curl_out | uniq | wc -l)
}

t_begin "sha1 matches on-disk sha1" && {
	blob_sha1=$( expr "$(sha1sum < random_blob)" : '\([a-f0-9]\+\)')
	t_info blob_sha1=$blob_sha1
	test x"$blob_sha1" = x"$(sort < $curl_out | uniq)"
}

t_begin "no errors in stderr log" && check_stderr

t_done

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