Blame


1 5c2e310e 2021-01-22 op #!/bin/sh
2 5c2e310e 2021-01-22 op
3 5c2e310e 2021-01-22 op set -e
4 5c2e310e 2021-01-22 op
5 5c2e310e 2021-01-22 op # usage: config <global config> <stuff for localhost>
6 5c2e310e 2021-01-22 op # generates a configuration file reg.conf
7 5c2e310e 2021-01-22 op config() {
8 5c2e310e 2021-01-22 op cat <<EOF > reg.conf
9 5c2e310e 2021-01-22 op ipv6 off
10 5c2e310e 2021-01-22 op port 10965
11 5c2e310e 2021-01-22 op $1
12 5c2e310e 2021-01-22 op server "localhost" {
13 6ff23c67 2021-02-01 op cert "$PWD/cert.pem"
14 6ff23c67 2021-02-01 op key "$PWD/key.pem"
15 6ff23c67 2021-02-01 op root "$PWD/testdata"
16 5c2e310e 2021-01-22 op $2
17 5c2e310e 2021-01-22 op }
18 5c2e310e 2021-01-22 op EOF
19 5c2e310e 2021-01-22 op }
20 5c2e310e 2021-01-22 op
21 5c2e310e 2021-01-22 op checkconf() {
22 5c2e310e 2021-01-22 op ./../gmid -n -c reg.conf
23 5c2e310e 2021-01-22 op }
24 5c2e310e 2021-01-22 op
25 5c2e310e 2021-01-22 op # usage: get <path>
26 5c2e310e 2021-01-22 op # return the body of the request on stdout
27 5c2e310e 2021-01-22 op get() {
28 31a4993a 2021-01-23 op ./../gg -b "gemini://localhost:10965/$1"
29 5c2e310e 2021-01-22 op }
30 5c2e310e 2021-01-22 op
31 5c2e310e 2021-01-22 op # usage: head <path>
32 5c2e310e 2021-01-22 op # return the meta response line on stdout
33 5c2e310e 2021-01-22 op head() {
34 31a4993a 2021-01-23 op ./../gg -h "gemini://localhost:10965/$1"
35 5c2e310e 2021-01-22 op }
36 5c2e310e 2021-01-22 op
37 31a4993a 2021-01-23 op # usage: raw <path>
38 31a4993a 2021-01-23 op # return both header and body
39 31a4993a 2021-01-23 op raw() {
40 31a4993a 2021-01-23 op ./../gg "gemini://localhost:10965/$1"
41 31a4993a 2021-01-23 op }
42 31a4993a 2021-01-23 op
43 5c2e310e 2021-01-22 op run() {
44 5c2e310e 2021-01-22 op # filter out logs for GET requests
45 46af8c6c 2021-01-27 op (./../gmid -f -c reg.conf 2>&1 | grep -v GET) >&2 &
46 5c2e310e 2021-01-22 op pid=$!
47 31a4993a 2021-01-23 op # give gmid time to bind the port, otherwise we end up
48 31a4993a 2021-01-23 op # executing gg when gmid isn't ready yet.
49 31a4993a 2021-01-23 op sleep 1
50 5c2e310e 2021-01-22 op }
51 5c2e310e 2021-01-22 op
52 5c2e310e 2021-01-22 op # usage: check [exit-message]
53 5c2e310e 2021-01-22 op # check if gmid is still running
54 5c2e310e 2021-01-22 op check() {
55 5c2e310e 2021-01-22 op if ! ps $pid >/dev/null; then
56 5c2e310e 2021-01-22 op echo ${1:-"gmid crashed?"}
57 5c2e310e 2021-01-22 op exit 1
58 5c2e310e 2021-01-22 op fi
59 5c2e310e 2021-01-22 op }
60 5c2e310e 2021-01-22 op
61 5c2e310e 2021-01-22 op # quit gmid
62 5c2e310e 2021-01-22 op quit() {
63 5c2e310e 2021-01-22 op pkill gmid || true
64 5c2e310e 2021-01-22 op wait || true
65 5c2e310e 2021-01-22 op }
66 5c2e310e 2021-01-22 op
67 5c2e310e 2021-01-22 op # usage: eq a b errmsg
68 5c2e310e 2021-01-22 op # if a and b aren't equal strings, exit with errmsg
69 5c2e310e 2021-01-22 op eq() {
70 5c2e310e 2021-01-22 op if ! [ "$1" = "$2" ]; then
71 5c2e310e 2021-01-22 op echo "$3: \"$1\" not equal \"$2\""
72 5c2e310e 2021-01-22 op exit 1
73 5c2e310e 2021-01-22 op fi
74 5c2e310e 2021-01-22 op }
75 5c2e310e 2021-01-22 op
76 5c2e310e 2021-01-22 op onexit() {
77 5c2e310e 2021-01-22 op rm -f bigfile bigfile.sha
78 5c2e310e 2021-01-22 op quit
79 5c2e310e 2021-01-22 op }
80 5c2e310e 2021-01-22 op
81 5c2e310e 2021-01-22 op # tests
82 5c2e310e 2021-01-22 op
83 5c2e310e 2021-01-22 op trap 'onexit' INT TERM EXIT
84 5c2e310e 2021-01-22 op
85 5c2e310e 2021-01-22 op endl=`printf "\r\n"`
86 5c2e310e 2021-01-22 op lf=`echo`
87 5c2e310e 2021-01-22 op
88 5c2e310e 2021-01-22 op config "" ""
89 5c2e310e 2021-01-22 op checkconf
90 5c2e310e 2021-01-22 op run
91 5c2e310e 2021-01-22 op
92 5c2e310e 2021-01-22 op eq "$(head /)" "20 text/gemini" "Unexpected head for /"
93 5c2e310e 2021-01-22 op eq "$(get /)" "# hello world$ln" "Unexpected body for /"
94 5c2e310e 2021-01-22 op echo OK GET /
95 5c2e310e 2021-01-22 op
96 5c2e310e 2021-01-22 op eq "$(head /foo)" "51 not found" "Unexpected head /foo"
97 5c2e310e 2021-01-22 op eq "$(get /foo)" "" "Unexpected body /foo"
98 5c2e310e 2021-01-22 op echo OK GET /foo
99 5c2e310e 2021-01-22 op
100 5c2e310e 2021-01-22 op # should redirect if asked for a directory but without the trailing /
101 5c2e310e 2021-01-22 op eq "$(head /dir)" "30 /dir/" "Unexpected redirect for /dir"
102 5c2e310e 2021-01-22 op eq "$(get /dir)" "" "Unexpected body for redirect"
103 5c2e310e 2021-01-22 op echo OK GET /dir
104 5c2e310e 2021-01-22 op
105 5c2e310e 2021-01-22 op # 51 for a directory without index.gmi
106 5c2e310e 2021-01-22 op eq "$(head /dir/)" "51 not found" "Unexpected head for /"
107 5c2e310e 2021-01-22 op eq "$(get /dir/)" "" "Unexpected body for error"
108 5c2e310e 2021-01-22 op echo OK GET /dir/
109 5c2e310e 2021-01-22 op
110 5c2e310e 2021-01-22 op eq "$(head /dir/foo.gmi)" "20 text/gemini" "Unexpected head for /dir/foo.gmi"
111 5c2e310e 2021-01-22 op eq "$(get /dir/foo.gmi)" "# hello world$ln" "Unexpected body for /dir/foo.gmi"
112 5c2e310e 2021-01-22 op echo OK GET /dir/foo.gmi
113 5c2e310e 2021-01-22 op
114 5c2e310e 2021-01-22 op # try a big file
115 5c2e310e 2021-01-22 op eq "$(head /bigfile)" "20 application/octet-stream" "Unexpected head for /bigfile"
116 5c2e310e 2021-01-22 op get /bigfile > bigfile
117 5c2e310e 2021-01-22 op ./sha bigfile bigfile.sha
118 5c2e310e 2021-01-22 op eq "$(cat bigfile.sha)" "$(cat testdata/bigfile.sha)" "Unexpected sha for /bigfile"
119 5c2e310e 2021-01-22 op echo OK GET /bigfile
120 5c2e310e 2021-01-22 op
121 5c2e310e 2021-01-22 op # shouldn't be executing cgi scripts
122 5c2e310e 2021-01-22 op eq "$(head /hello)" "20 application/octet-stream" "Unexpected head for /hello"
123 5c2e310e 2021-01-22 op echo OK GET /hello
124 5c2e310e 2021-01-22 op
125 5c2e310e 2021-01-22 op check "should be running"
126 5c2e310e 2021-01-22 op quit
127 5c2e310e 2021-01-22 op
128 5c2e310e 2021-01-22 op # try with custom mime
129 5c2e310e 2021-01-22 op config 'mime "text/x-funny-text" "gmi"' 'default type "application/x-trash"'
130 5c2e310e 2021-01-22 op checkconf
131 5c2e310e 2021-01-22 op run
132 5c2e310e 2021-01-22 op
133 5c2e310e 2021-01-22 op eq "$(head /)" "20 text/x-funny-text" "Unexpected head for /"
134 5c2e310e 2021-01-22 op echo OK GET / with custom mime
135 5c2e310e 2021-01-22 op
136 5c2e310e 2021-01-22 op eq "$(head /hello)" "20 application/x-trash" "Unexpected head for /hello"
137 5c2e310e 2021-01-22 op echo OK GET /hello with custom mime
138 5c2e310e 2021-01-22 op
139 5c2e310e 2021-01-22 op check "should be running"
140 5c2e310e 2021-01-22 op quit
141 5c2e310e 2021-01-22 op
142 5c2e310e 2021-01-22 op # try with custom lang
143 5c2e310e 2021-01-22 op config '' 'lang "it"'
144 5c2e310e 2021-01-22 op checkconf
145 5c2e310e 2021-01-22 op run
146 5c2e310e 2021-01-22 op
147 5c2e310e 2021-01-22 op eq "$(head /)" "20 text/gemini; lang=it" "Unexpected head for /"
148 5c2e310e 2021-01-22 op echo OK GET / with custom lang
149 5c2e310e 2021-01-22 op
150 5c2e310e 2021-01-22 op check "should be running"
151 5c2e310e 2021-01-22 op quit
152 5c2e310e 2021-01-22 op
153 5c2e310e 2021-01-22 op # finally try with CGI scripts
154 87f2b68b 2021-02-02 op config '' 'cgi "*"'
155 5c2e310e 2021-01-22 op checkconf
156 5c2e310e 2021-01-22 op run
157 5c2e310e 2021-01-22 op
158 5c2e310e 2021-01-22 op eq "$(head /hello)" "20 text/gemini" "Unexpected head for /hello"
159 5c2e310e 2021-01-22 op eq "$(get /hello)" "# hello world$ln" "Unexpected body for /hello"
160 5c2e310e 2021-01-22 op echo OK GET /hello with cgi
161 5c2e310e 2021-01-22 op
162 5c2e310e 2021-01-22 op eq "$(head /slow)" "20 text/gemini" "Unexpected head for /slow"
163 5c2e310e 2021-01-22 op eq "$(get /slow)" "# hello world$ln" "Unexpected body for /slow"
164 5c2e310e 2021-01-22 op echo OK GET /slow with cgi
165 5c2e310e 2021-01-22 op
166 35744950 2021-02-01 op eq "$(head /err)" "42 CGI error" "Unexpected head for /err"
167 5c2e310e 2021-01-22 op eq "$(get /err)" "" "Unexpected body for /err"
168 5c2e310e 2021-01-22 op echo OK GET /err with cgi
169 5c2e310e 2021-01-22 op
170 6cdecad8 2021-01-23 op eq "$(raw /invalid | wc -c | xargs)" 2048 "Unexpected body for /invalid"
171 3309ef97 2021-01-23 op echo OK GET /invalid with cgi
172 3309ef97 2021-01-23 op
173 7b31a638 2021-01-24 op # try a big file
174 7b31a638 2021-01-24 op eq "$(head /serve-bigfile)" "20 application/octet-stream" "Unexpected head for /serve-bigfile"
175 7b31a638 2021-01-24 op get /bigfile > bigfile
176 7b31a638 2021-01-24 op ./sha bigfile bigfile.sha
177 7b31a638 2021-01-24 op eq "$(cat bigfile.sha)" "$(cat testdata/bigfile.sha)" "Unexpected sha for /serve-bigfile"
178 7b31a638 2021-01-24 op echo OK GET /serve-bigfile with cgi
179 7b31a638 2021-01-24 op
180 5c2e310e 2021-01-22 op check "should be running"
181 5c2e310e 2021-01-22 op quit
182 e7a2a99b 2021-01-24 op
183 e7a2a99b 2021-01-24 op config '' 'index "foo.gmi"'
184 e7a2a99b 2021-01-24 op checkconf
185 e7a2a99b 2021-01-24 op run
186 e7a2a99b 2021-01-24 op
187 e7a2a99b 2021-01-24 op eq "$(head /dir/)" "20 text/gemini" "Unexpected head for /"
188 e7a2a99b 2021-01-24 op eq "$(get /dir/)" "# hello world$ln" "Unexpected body for error"
189 e7a2a99b 2021-01-24 op echo OK GET /dir/ with custom index
190 e7a2a99b 2021-01-24 op
191 e7a2a99b 2021-01-24 op check "should be running"
192 e7a2a99b 2021-01-24 op quit
193 c8b74339 2021-01-24 op
194 c8b74339 2021-01-24 op config '' 'location "/dir/" { default type "text/plain" index "hello" }'
195 c8b74339 2021-01-24 op checkconf
196 c8b74339 2021-01-24 op run
197 c8b74339 2021-01-24 op
198 c8b74339 2021-01-24 op eq "$(head /dir/hello)" "20 text/plain" "Unexpected head for /"
199 c8b74339 2021-01-24 op echo OK GET /dir/hello with location and default type
200 c8b74339 2021-01-24 op
201 252908e6 2021-01-24 op eq "$(head /dir/)" "20 text/plain" "Unexpected head for /dir/"
202 c8b74339 2021-01-24 op eq "$(get /dir/|tail -1)" 'echo "# hello world"' "Unexpected body for /dir/"
203 c8b74339 2021-01-24 op echo OK GET /dir/ with location and custom index
204 c8b74339 2021-01-24 op
205 c8b74339 2021-01-24 op check "should be running"
206 c8b74339 2021-01-24 op quit
207 252908e6 2021-01-24 op
208 252908e6 2021-01-24 op config '' 'location "/dir/" { auto index on }'
209 252908e6 2021-01-24 op checkconf
210 252908e6 2021-01-24 op run
211 252908e6 2021-01-24 op
212 252908e6 2021-01-24 op eq "$(head /)" "20 text/gemini" "Unexpected head for /"
213 252908e6 2021-01-24 op eq "$(get /)" "# hello world$ln" "Unexpected body for /"
214 252908e6 2021-01-24 op echo OK GET / with auto index
215 252908e6 2021-01-24 op
216 252908e6 2021-01-24 op eq "$(head /dir)" "30 /dir/" "Unexpected head for /dir"
217 252908e6 2021-01-24 op eq "$(head /dir/)" "20 text/gemini" "Unexpected head for /dir/"
218 5f715ce4 2021-02-02 op eq "$(get /dir/|wc -l|xargs)" "5" "Unexpected body for /dir/"
219 252908e6 2021-01-24 op echo OK GET /dir/ with auto index on
220 252908e6 2021-01-24 op
221 252908e6 2021-01-24 op check "should be running"
222 252908e6 2021-01-24 op quit