unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob d07a26c2db8b6ded695374d0f0ebba601bf696e1 671 bytes (raw)
$ git show HEAD:t/t0022-listener_names-preload_app.sh	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
#!/bin/sh
. ./test-lib.sh

# Raindrops::Middleware depends on Unicorn.listener_names,
# ensure we don't break Raindrops::Middleware when preload_app is true

t_plan 4 "Unicorn.listener_names available with preload_app=true"

t_begin "setup and startup" && {
	unicorn_setup
	echo preload_app true >> $unicorn_config
	unicorn -E none -D listener_names.ru -c $unicorn_config
	unicorn_wait_start
}

t_begin "read listener names includes listener" && {
	resp=$(curl -sSf http://$listen/)
	ok=false
	t_info "resp=$resp"
	case $resp in
	*\"$listen\"*) ok=true ;;
	esac
	$ok
}

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

t_begin "check stderr" && check_stderr

t_done

git clone https://yhbt.net/unicorn.git