Sha256: ce50d6a1e6d1888b591a153b32ba9b186b6fef32e592aa18dc3bdb2fa0a32702

Contents?: true

Size: 1.99 KB

Versions: 22

Compression:

Stored size: 1.99 KB

Contents

#!/bin/sh
. ./test-lib.sh
skip_models StreamResponseEpoll

t_plan 29 "keepalive does not clear Rack env prematurely for $model"

t_begin "setup and start" && {
	rainbows_setup
	rtmpfiles curl_out curl_err
	echo "preload_app true" >> $unicorn_config
	rainbows -D close-has-env.ru -c $unicorn_config
	rainbows_wait_start
}

req_pipelined () {
	pfx=$1
	t_begin "make pipelined requests to trigger $pfx response body" && {
		> $r_out
		rm -f $ok
		(
			cat $fifo > $tmp &
			printf 'GET /%s/1 HTTP/1.1\r\n' $pfx
			printf 'Host: example.com\r\n\r\n'
			printf 'GET /%s/2 HTTP/1.1\r\n' $pfx
			printf 'Host: example.com\r\n\r\n'
			printf 'GET /%s/3 HTTP/1.1\r\n' $pfx
			printf 'Host: example.com\r\n'
			printf 'Connection: close\r\n\r\n'
			wait
			echo ok > $ok
		) | socat - TCP4:$listen > $fifo
		test xok = x$(cat $ok)
	}
}

reload () {
	t_begin 'reloading Rainbows! to ensure writeout' && {
		# ensure worker is loaded before HUP
		rm -f $curl_err $curl_out
		curl -vs http://$listen/ >$curl_out 2> $curl_err
		# reload to ensure everything is flushed
		kill -HUP $rainbows_pid
		test xSTART = x"$(cat $fifo)"
	}
}

check_log () {
	pfx="$1"
	t_begin "check body close messages" && {
		< $r_out awk '
/^path_info=\/'$pfx'\/[1-3]$/ { next }
{ exit(2) }
END { exit(NR == 3 ? 0 : 1) }
'
	}
}

req_keepalive () {
	pfx="$1"
	t_begin "make keepalive requests to trigger $pfx response body" && {
		> $r_out
		rm -f $curl_err $curl_out
		curl -vsSf http://$listen/$pfx/[1-3] 2> $curl_err > $curl_out
	}
}

req_keepalive file
reload
check_log file

req_pipelined file
reload
check_log file

req_keepalive blob
reload
check_log blob

req_pipelined blob
reload
check_log blob

req_keepalive pipe
reload
check_log pipe

req_pipelined pipe
reload
check_log pipe

t_begin "enable sendfile gem" && {
	echo "require 'sendfile'" >> $unicorn_config
}

reload

req_keepalive file
reload
check_log file

req_pipelined file
reload
check_log file

t_begin "killing succeeds" && {
	kill $rainbows_pid
}

t_begin "check stderr" && {
	check_stderr
}

t_done

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
rainbows-5.2.1 t/t0050-response-body-close-has-env.sh
rainbows-5.2.0 t/t0050-response-body-close-has-env.sh
rainbows-5.1.1 t/t0050-response-body-close-has-env.sh
rainbows-5.1.0 t/t0050-response-body-close-has-env.sh
rainbows-5.0.0.5.ge717 t/t0050-response-body-close-has-env.sh
rainbows-5.0.0 t/t0050-response-body-close-has-env.sh
rainbows-4.7.0 t/t0050-response-body-close-has-env.sh
rainbows-4.6.2 t/t0050-response-body-close-has-env.sh
rainbows-4.6.1 t/t0050-response-body-close-has-env.sh
rainbows-4.6.0.4.g4108 t/t0050-response-body-close-has-env.sh
rainbows-4.6.0 t/t0050-response-body-close-has-env.sh
rainbows-4.5.0 t/t0050-response-body-close-has-env.sh
rainbows-4.4.3 t/t0050-response-body-close-has-env.sh
rainbows-4.4.2 t/t0050-response-body-close-has-env.sh
rainbows-4.4.1.1.gd5c8c t/t0050-response-body-close-has-env.sh
rainbows-4.4.1 t/t0050-response-body-close-has-env.sh
rainbows-4.4.0 t/t0050-response-body-close-has-env.sh
rainbows-4.3.1 t/t0050-response-body-close-has-env.sh
rainbows-4.3.0 t/t0050-response-body-close-has-env.sh
rainbows-4.2.0 t/t0050-response-body-close-has-env.sh