Sha256: a17f2b0cb2308b5661b37d2ed06d6e1bc71f995941d09cfc9aa269ebeac0c1b1

Contents?: true

Size: 974 Bytes

Versions: 143

Compression:

Stored size: 974 Bytes

Contents

#!/bin/sh
. ./test-lib.sh
t_plan 6 "config variables conflict with preload_app"

t_begin "setup and start" && {
	unicorn_setup
	rtmpfiles ru rutmp

	cat > $ru <<\EOF
use Rack::ContentLength
use Rack::ContentType, "text/plain"
config = ru = { "hello" => "world" }
run lambda { |env| [ 200, {}, [ ru.inspect << "\n" ] ] }
EOF
	echo 'preload_app true' >> $unicorn_config
	unicorn -D -c $unicorn_config $ru
	unicorn_wait_start
}

t_begin "hit with curl" && {
	out=$(curl -sSf http://$listen/)
	test x"$out" = x'{"hello"=>"world"}'
}

t_begin "modify rackup file" && {
	sed -e 's/world/WORLD/' < $ru > $rutmp
	mv $rutmp $ru
}

t_begin "reload signal succeeds" && {
	kill -HUP $unicorn_pid
	while ! egrep '(done|error) reloading' < $r_err >/dev/null
	do
		sleep 1
	done

	grep 'done reloading' $r_err >/dev/null
}

t_begin "hit with curl" && {
	out=$(curl -sSf http://$listen/)
	test x"$out" = x'{"hello"=>"WORLD"}'
}

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

t_done

Version data entries

143 entries across 143 versions & 12 rubygems

Version Path
unicorn-6.1.0 t/t0002-config-conflict.sh
unicorn-6.0.0 t/t0002-config-conflict.sh
unicorn-5.8.0 t/t0002-config-conflict.sh
unicorn-5.7.0 t/t0002-config-conflict.sh
unicorn-5.6.0 t/t0002-config-conflict.sh
unicorn-5.5.5 t/t0002-config-conflict.sh
unicorn-5.5.4 t/t0002-config-conflict.sh
unicorn-5.5.3 t/t0002-config-conflict.sh
unicorn-5.5.2 t/t0002-config-conflict.sh
unicorn-5.5.1 t/t0002-config-conflict.sh
unicorn-5.5.0.1.g6836 t/t0002-config-conflict.sh
unicorn-5.5.0 t/t0002-config-conflict.sh
unicorn-5.5.0.pre1 t/t0002-config-conflict.sh
unicorn-5.4.1 t/t0002-config-conflict.sh
unicorn-5.4.0 t/t0002-config-conflict.sh
unicorn-5.3.1 t/t0002-config-conflict.sh
unicorn-shopify-5.3.0 t/t0002-config-conflict.sh
unicorn-5.3.0 t/t0002-config-conflict.sh
unicorn-5.3.0.pre1 t/t0002-config-conflict.sh
unicorn-shopify-5.2.0.6 t/t0002-config-conflict.sh