Sha256: 05b9998d27706e279dec95b716acf46f51a7ed06c992b67f16d3415144bcada9

Contents?: true

Size: 947 Bytes

Versions: 12

Compression:

Stored size: 947 Bytes

Contents

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

t_plan 7 "Sendfile middleware test for $model"

t_begin "configure and start" && {
	rtmpfiles curl_err
	rainbows_setup

	# do not allow default middleware to be loaded since it may
	# kill body#to_path
	rainbows -E none -D t9001.ru -c $unicorn_config
	rainbows_wait_start
	random_blob_sha1=$(rsha1 < random_blob)
}

t_begin "hit with curl" && {
	sha1=$(curl -sSfv http://$listen/ 2> $curl_err | rsha1)
}

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

t_begin "SHA1 matches source" && {
	test x$random_blob_sha1 = x$sha1
}

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

t_begin "X-Sendfile does not show up in headers" && {
	dbgcat curl_err
	if grep -i x-sendfile $curl_err
	then
		die "X-Sendfile did show up!"
	fi
}

t_begin "Content-Length is set correctly in headers" && {
	expect=$(count_bytes < random_blob)
	grep "^< Content-Length: $expect" $curl_err
}

t_done

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rainbows-5.2.1 t/t9001-sendfile-to-path.sh
rainbows-5.2.0 t/t9001-sendfile-to-path.sh
rainbows-5.1.1 t/t9001-sendfile-to-path.sh
rainbows-5.1.0 t/t9001-sendfile-to-path.sh
rainbows-5.0.0.5.ge717 t/t9001-sendfile-to-path.sh
rainbows-5.0.0 t/t9001-sendfile-to-path.sh
rainbows-4.7.0 t/t9001-sendfile-to-path.sh
rainbows-4.6.2 t/t9001-sendfile-to-path.sh
rainbows-4.6.1 t/t9001-sendfile-to-path.sh
rainbows-4.6.0.4.g4108 t/t9001-sendfile-to-path.sh
rainbows-4.6.0 t/t9001-sendfile-to-path.sh
rainbows-4.5.0 t/t9001-sendfile-to-path.sh