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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
| | #!/bin/sh
# Copyright (c) 2009 Rainbows! hackers
# Copyright (c) 2010 Unicorn hackers
. ./my-tap-lib.sh
set +u
# sometimes we rely on http_proxy to avoid wasting bandwidth with Isolate
# and multiple Ruby versions
NO_PROXY=${UNICORN_TEST_ADDR-127.0.0.1}
export NO_PROXY
set -e
RUBY="${RUBY-ruby}"
RUBY_VERSION=${RUBY_VERSION-$($RUBY -e 'puts RUBY_VERSION')}
RUBY_ENGINE=${RUBY_ENGINE-$($RUBY -e 'puts((RUBY_ENGINE rescue "ruby"))')}
t_pfx=$PWD/trash/$T-$RUBY_ENGINE-$RUBY_VERSION
set -u
PATH=$PWD/bin:$PATH
export PATH
test -x $PWD/bin/unused_listen || die "must be run in 't' directory"
wait_for_pid () {
path="$1"
nr=30
while ! test -s "$path" && test $nr -gt 0
do
nr=$(($nr - 1))
sleep 1
done
}
# "unix_time" is not in POSIX, but in GNU, and FreeBSD 9.0 (possibly earlier)
unix_time () {
$RUBY -e 'puts Time.now.to_i'
}
# "wc -l" outputs leading whitespace on *BSDs, filter it out for portability
count_lines () {
wc -l | tr -d '[:space:]'
}
# "wc -c" outputs leading whitespace on *BSDs, filter it out for portability
count_bytes () {
wc -c | tr -d '[:space:]'
}
# given a list of variable names, create temporary files and assign
# the pathnames to those variables
rtmpfiles () {
for id in "$@"
do
name=$id
case $name in
*fifo)
_tmp=$t_pfx.$id
eval "$id=$_tmp"
rm -f $_tmp
mkfifo $_tmp
T_RM_LIST="$T_RM_LIST $_tmp"
;;
*socket)
_tmp="$(mktemp -t $id.$$.XXXXXXXX)"
if test $(printf "$_tmp" |count_bytes) -gt 108
then
echo >&2 "$_tmp too long, tests may fail"
echo >&2 "Try to set TMPDIR to a shorter path"
fi
eval "$id=$_tmp"
rm -f $_tmp
T_RM_LIST="$T_RM_LIST $_tmp"
;;
*)
_tmp=$t_pfx.$id
eval "$id=$_tmp"
> $_tmp
T_OK_RM_LIST="$T_OK_RM_LIST $_tmp"
;;
esac
done
}
dbgcat () {
id=$1
eval '_file=$'$id
echo "==> $id <=="
sed -e "s/^/$id:/" < $_file
}
check_stderr () {
set +u
_r_err=${1-${r_err}}
set -u
if grep -v $T $_r_err | grep -i Error | \
grep -v NameError.*Unicorn::Waiter
then
die "Errors found in $_r_err"
elif grep SIGKILL $_r_err
then
die "SIGKILL found in $_r_err"
fi
}
# unicorn_setup
unicorn_setup () {
eval $(unused_listen)
port=$(expr $listen : '[^:]*:\([0-9]*\)')
host=$(expr $listen : '\([^:][^:]*\):[0-9][0-9]*')
rtmpfiles unicorn_config pid r_err r_out fifo tmp ok
cat > $unicorn_config <<EOF
listen "$listen"
pid "$pid"
stderr_path "$r_err"
stdout_path "$r_out"
EOF
}
unicorn_wait_start () {
# no need to play tricks with FIFOs since we got "ready_pipe" now
unicorn_pid=$(cat $pid)
}
rsha1 () {
sha1sum.rb
}
|