Sha256: c48beb7e0ed6aca9b824145f957dd1bf1a65719a0b63c03a99705c1fd284b3f2

Contents?: true

Size: 729 Bytes

Versions: 10

Compression:

Stored size: 729 Bytes

Contents

#!/bin/sh
. ./test-lib.sh
t_plan 5 "before murder is called"

t_begin "setup and start" && {
	unicorn_setup
	cat >> $unicorn_config <<EOF
timeout 5
after_fork { |s,w| File.open('$fifo','w') { |f| f.write '.' } }
before_murder do |s, w, p| 
  \$stderr.puts "before murder called:"
end
EOF
	unicorn -c $unicorn_config before_murder.ru &
	test '.' = $(cat $fifo)
	unicorn_wait_start
}

t_begin "start worker=0" && {
	pid=$(curl http://$listen/) || true
}

t_begin "ensure before murder log is present" && {
	dbgcat r_err
	grep 'before murder called:' $r_err 
	dbgcat r_err
	> $r_err
}

t_begin "killing succeeds" && {
  kill $unicorn_pid
  wait
  kill -0 $unicorn_pid && false
}

t_begin "check stderr" && {
	check_stderr
}

t_done

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
unicorn-shopify-5.3.0 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.6 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.5 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.4 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.3 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.2 t/t0023-before-murder.sh
unicorn-shopify-5.2.0.1 t/t0023-before-murder.sh
unicorn-shopify-4.8.2.5.25 t/t0023-before-murder.sh
unicorn-shopify-4.8.2.5.24 t/t0023-before-murder.sh
unicorn-shopify-4.8.2.5.23 t/t0023-before-murder.sh