blob: 46268ea5c1a0c95316664891bc1fee9eabac09fc (
plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
ran_no=0
failed_no=0
failed=
gemexp="./../gemexp"
gg="./../gg"
gmid="./../gmid"
current_test=
server_name=
gghost=
fcgi_content() {
cat <<EOF
Here's the parameters I've got:
* AUTH_TYPE=
* GATEWAY_INTERFACE=CGI/1.1
* GEMINI_URL_PATH=${fcgi_path_info##/}
* PATH_INFO=$fcgi_path_info
* PATH_TRANSLATED=$fcgi_path
* QUERY_STRING=
* REMOTE_ADDR=<redacted>
* REMOTE_HOST=<redacted>
* REQUEST_METHOD=GET
* SCRIPT_NAME=
* SERVER_NAME=<redacted>
* SERVER_PORT=$port
* SERVER_PROTOCOL=GEMINI
* SERVER_SOFTWARE=$($gmid -V | awk '{print $2 "/" $3}')
EOF
}
run_test() {
ggflags=
host="$REGRESS_HOST"
port=10965
proxy_port=10966
proxy=
config_common="log syslog off"
fcgi_path_info=/
fcgi_path="$PWD/testdata/"
hdr=
body=
dont_check_server_alive=no
ran_no=$((ran_no + 1))
current_test=$1
server_name=localhost
gghost=localhost
rm -f reg.conf
if [ "$2" = "need_ipv6" -a "$HAVE_IPV6" != "yes" ]; then
echo "$1 skipped (needs HAVE_IPV6='yes')"
return
elif ! $1; then
echo "$1 failed"
failed="$failed $1"
failed_no=$((failed_no + 1))
return
else
echo "$1 passed"
fi
if [ "$dont_check_server_alive" != 'no' ]; then
return
fi
if ! check; then
echo "gmid crashed?"
failed="$failed $1"
failed_no=$((failed_no + 1))
fi
}
tests_done() {
ok=$((ran_no - failed_no))
echo
echo "tests: $ran_no / passed: $ok / failed: $failed_no"
if [ "$failed" != "" ]; then
echo
echo "failed tests:$failed"
exit 1
fi
exit 0
}
# usage: gen_config <global config> <server config>
# generates a configuration file reg.conf
gen_config() {
cat <<EOF > reg.conf
$config_common
$1
server "$server_name" {
cert "$PWD/localhost.pem"
key "$PWD/localhost.key"
root "$PWD/testdata"
listen on $host port $port $proxy
$2
}
EOF
if ! checkconf; then
echo "failed to parse the config" >&2
return 1
fi
}
set_proxy() {
cat <<EOF >>reg.conf
server "localhost.local" {
cert "$PWD/localhost.pem"
key "$PWD/localhost.key"
listen on $host port $proxy_port
proxy {
relay-to localhost port $port
$1
}
}
EOF
if ! checkconf; then
echo "failed to parse the config" >&2
return 1
fi
}
checkconf() {
if ! $gmid -n -c reg.conf >/dev/null 2>&1; then
$gmid -n -c reg.conf
fi
}
# usage: setup_simple_test <global config> <server config>
# generates a configuration file with `gen_config', validates it and
# launches the daemon
setup_simple_test() {
gen_config "$1" "$2"
run
}
# usage: get <path>
# return the body of the request on stdout
get() {
$gg -q -T10 $ggflags "gemini://$gghost:$port/$1" || true
}
# usage: head <path>
# return the meta response line on stdout
head() {
$gg -q -T10 -d header $ggflags "gemini://$gghost:$port/$1" || true
}
# usage: fetch <path>
# fetches the header and the body. They're returned in $hdr and
# $body.
fetch() {
if ! hdr="$(head $1)" || ! body="$(get $1)"; then
return 1
fi
}
# usage: fetch_hdr <path>
# fetches the header into $hdr
fetch_hdr() {
hdr="$(head $1)"
body=""
}
# usage: check_reply header body
# checks that $hdr and $body are equal to the given strings
check_reply() {
if [ "$hdr" != "$1" ]; then
echo "Header mismatch" >&2
echo "wants : $1" >&2
echo "got : $hdr" >&2
return 1
fi
if [ "$body" != "$2" ]; then
echo "Body mismatch" >&2
echo "wants : $2" >&2
echo "got : $body" >&2
return 1
fi
}
run() {
if check; then
kill -HUP "$(cat gmid.pid)"
sleep 1
return
fi
$gmid -P $PWD/gmid.pid -c reg.conf
# give gmid time to bind the port, otherwise we end up
# executing gg when gmid isn't ready yet.
sleep 1
}
check() {
if [ ! -f gmid.pid ]; then
return 1
fi
pid="$(cat gmid.pid || true)"
if [ "$pid" = "" ]; then
return 1
fi
ps $pid >/dev/null
}
count() {
wc -l | xargs
}
quit() {
pid="$(cat gmid.pid || true)" 2>/dev/null
if [ "$pid" != "" ]; then
kill $pid || true
wait || true
fi
rm gmid.pid
}
onexit() {
rm -f bigfile bigfile.sha
quit
}
|