Sha256: 97582e57ac744863d10a74929e33582bc2d9f465c586daed2700ef103cf6ca7a

Contents?: true

Size: 849 Bytes

Versions: 36

Compression:

Stored size: 849 Bytes

Contents

#!/bin/sh
. ./test-lib.sh
t_plan 7 "simple HTTPS connection tests"

t_begin "setup and start" && {
	rtmpfiles curl_err
	unicorn_setup
cat > $unicorn_config <<EOF
ssl do
  listen "$listen"
  ssl_certificate "server.crt"
  ssl_certificate_key "server.key"
end
pid "$pid"
stderr_path "$r_err"
stdout_path "$r_out"
EOF
	unicorn -D -c $unicorn_config env.ru
	unicorn_wait_start
}

t_begin "single request" && {
	curl -sSfv --cacert ca.crt https://$listen/
}

t_begin "check stderr has no errors" && {
	check_stderr
}

t_begin "multiple requests" && {
	curl -sSfv --no-keepalive --cacert ca.crt \
		https://$listen/ https://$listen/ 2>> $curl_err >> $tmp
		dbgcat curl_err
}

t_begin "check stderr has no errors" && {
	check_stderr
}

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

t_begin "check stderr has no errors" && {
	check_stderr
}

t_done

Version data entries

36 entries across 36 versions & 7 rubygems

Version Path
boourns-unicorn-4.4.5 t/t0600-https-server-basic.sh
boourns-unicorn-4.4.4 t/t0600-https-server-basic.sh
boourns-unicorn-4.4.3 t/t0600-https-server-basic.sh
boourns-unicorn-4.4.2 t/t0600-https-server-basic.sh
boourns-unicorn-4.4.1 t/t0600-https-server-basic.sh
preplay_unicorn-4.3.1.5.ga7df t/t0600-https-server-basic.sh
unicorn-4.4.0 t/t0600-https-server-basic.sh
preplay_unicorn-4.3.1.2.gc450 t/t0600-https-server-basic.sh
unicorn-lb-patch-4.3.1.13.gb7d9 t/t0600-https-server-basic.sh
unicorn-lb-patch-4.3.1.11.g21b8.dirty t/t0600-https-server-basic.sh
unicorn-heroku-4.3.1.1.gc608.dirty t/t0600-https-server-basic.sh
unicorn-4.3.1 t/t0600-https-server-basic.sh
unicorn-4.3.0.2.g4551 t/t0600-https-server-basic.sh
unicorn-4.3.0 t/t0600-https-server-basic.sh
unicorn-4.2.1 t/t0600-https-server-basic.sh
unicorn-4.2.0 t/t0600-https-server-basic.sh