Sha256: 2422aa7db4d497ae583c7ef1f4a4044520f8eae305b4e57c1c2a5c54c9b9ab45

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rainbows-0.4.0 t/t0100-rack-input-hammer.sh