Merge branch 'ab/avoid-losing-exit-codes-in-tests'
[git/debian.git] / t / lib-httpd.sh
blob6805229dcb9528e75399aefc46735e8cd14f4b4c
1 # Shell library to run an HTTP server for use in tests.
2 # Ends the test early if httpd tests should not be run,
3 # for example because the user has not enabled them.
5 # Usage:
7 # . ./test-lib.sh
8 # . "$TEST_DIRECTORY"/lib-httpd.sh
9 # start_httpd
11 # test_expect_success '...' '
12 # ...
13 # '
15 # test_expect_success ...
17 # test_done
19 # Can be configured using the following variables.
21 # GIT_TEST_HTTPD enable HTTPD tests
22 # LIB_HTTPD_PATH web server path
23 # LIB_HTTPD_MODULE_PATH web server modules path
24 # LIB_HTTPD_PORT listening port
25 # LIB_HTTPD_DAV enable DAV
26 # LIB_HTTPD_SVN enable SVN at given location (e.g. "svn")
27 # LIB_HTTPD_SSL enable SSL
28 # LIB_HTTPD_PROXY enable proxy
30 # Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
33 if ! test_have_prereq LIBCURL
34 then
35 skip_all='skipping test, git built without http support'
36 test_done
39 if test -n "$NO_EXPAT" && test -n "$LIB_HTTPD_DAV"
40 then
41 skip_all='skipping test, git built without expat support'
42 test_done
45 if ! test_bool_env GIT_TEST_HTTPD true
46 then
47 skip_all="Network testing disabled (unset GIT_TEST_HTTPD to enable)"
48 test_done
51 if ! test_have_prereq NOT_ROOT; then
52 test_skip_or_die GIT_TEST_HTTPD \
53 "Cannot run httpd tests as root"
56 HTTPD_PARA=""
58 for DEFAULT_HTTPD_PATH in '/usr/sbin/httpd' '/usr/sbin/apache2'
60 if test -x "$DEFAULT_HTTPD_PATH"
61 then
62 break
64 done
66 for DEFAULT_HTTPD_MODULE_PATH in '/usr/libexec/apache2' \
67 '/usr/lib/apache2/modules' \
68 '/usr/lib64/httpd/modules' \
69 '/usr/lib/httpd/modules' \
70 '/usr/libexec/httpd'
72 if test -d "$DEFAULT_HTTPD_MODULE_PATH"
73 then
74 break
76 done
78 case $(uname) in
79 Darwin)
80 HTTPD_PARA="$HTTPD_PARA -DDarwin"
82 esac
84 LIB_HTTPD_PATH=${LIB_HTTPD_PATH-"$DEFAULT_HTTPD_PATH"}
85 test_set_port LIB_HTTPD_PORT
87 TEST_PATH="$TEST_DIRECTORY"/lib-httpd
88 HTTPD_ROOT_PATH="$PWD"/httpd
89 HTTPD_DOCUMENT_ROOT_PATH=$HTTPD_ROOT_PATH/www
91 # hack to suppress apache PassEnv warnings
92 GIT_VALGRIND=$GIT_VALGRIND; export GIT_VALGRIND
93 GIT_VALGRIND_OPTIONS=$GIT_VALGRIND_OPTIONS; export GIT_VALGRIND_OPTIONS
94 GIT_TEST_SIDEBAND_ALL=$GIT_TEST_SIDEBAND_ALL; export GIT_TEST_SIDEBAND_ALL
95 GIT_TRACE=$GIT_TRACE; export GIT_TRACE
97 if ! test -x "$LIB_HTTPD_PATH"
98 then
99 test_skip_or_die GIT_TEST_HTTPD "no web server found at '$LIB_HTTPD_PATH'"
102 HTTPD_VERSION=$($LIB_HTTPD_PATH -v | \
103 sed -n 's/^Server version: Apache\/\([0-9.]*\).*$/\1/p; q')
104 HTTPD_VERSION_MAJOR=$(echo $HTTPD_VERSION | cut -d. -f1)
105 HTTPD_VERSION_MINOR=$(echo $HTTPD_VERSION | cut -d. -f2)
107 if test -n "$HTTPD_VERSION_MAJOR"
108 then
109 if test -z "$LIB_HTTPD_MODULE_PATH"
110 then
111 if ! test "$HTTPD_VERSION_MAJOR" -eq 2 ||
112 ! test "$HTTPD_VERSION_MINOR" -ge 4
113 then
114 test_skip_or_die GIT_TEST_HTTPD \
115 "at least Apache version 2.4 is required"
117 if ! test -d "$DEFAULT_HTTPD_MODULE_PATH"
118 then
119 test_skip_or_die GIT_TEST_HTTPD \
120 "Apache module directory not found"
123 LIB_HTTPD_MODULE_PATH="$DEFAULT_HTTPD_MODULE_PATH"
125 else
126 test_skip_or_die GIT_TEST_HTTPD \
127 "Could not identify web server at '$LIB_HTTPD_PATH'"
130 install_script () {
131 write_script "$HTTPD_ROOT_PATH/$1" <"$TEST_PATH/$1"
134 prepare_httpd() {
135 mkdir -p "$HTTPD_DOCUMENT_ROOT_PATH"
136 cp "$TEST_PATH"/passwd "$HTTPD_ROOT_PATH"
137 cp "$TEST_PATH"/proxy-passwd "$HTTPD_ROOT_PATH"
138 install_script incomplete-length-upload-pack-v2-http.sh
139 install_script incomplete-body-upload-pack-v2-http.sh
140 install_script error-no-report.sh
141 install_script broken-smart-http.sh
142 install_script error-smart-http.sh
143 install_script error.sh
144 install_script apply-one-time-perl.sh
145 install_script nph-custom-auth.sh
147 ln -s "$LIB_HTTPD_MODULE_PATH" "$HTTPD_ROOT_PATH/modules"
149 if test -n "$LIB_HTTPD_SSL"
150 then
151 HTTPD_PROTO=https
153 RANDFILE_PATH="$HTTPD_ROOT_PATH"/.rnd openssl req \
154 -config "$TEST_PATH/ssl.cnf" \
155 -new -x509 -nodes \
156 -out "$HTTPD_ROOT_PATH/httpd.pem" \
157 -keyout "$HTTPD_ROOT_PATH/httpd.pem"
158 GIT_SSL_NO_VERIFY=t
159 export GIT_SSL_NO_VERIFY
160 HTTPD_PARA="$HTTPD_PARA -DSSL"
161 else
162 HTTPD_PROTO=http
164 HTTPD_DEST=127.0.0.1:$LIB_HTTPD_PORT
165 HTTPD_URL=$HTTPD_PROTO://$HTTPD_DEST
166 HTTPD_URL_USER=$HTTPD_PROTO://user%40host@$HTTPD_DEST
167 HTTPD_URL_USER_PASS=$HTTPD_PROTO://user%40host:pass%40host@$HTTPD_DEST
169 if test -n "$LIB_HTTPD_DAV" || test -n "$LIB_HTTPD_SVN"
170 then
171 HTTPD_PARA="$HTTPD_PARA -DDAV"
173 if test -n "$LIB_HTTPD_SVN"
174 then
175 HTTPD_PARA="$HTTPD_PARA -DSVN"
176 LIB_HTTPD_SVNPATH="$rawsvnrepo"
177 svnrepo="http://127.0.0.1:$LIB_HTTPD_PORT/"
178 svnrepo="$svnrepo$LIB_HTTPD_SVN"
179 export LIB_HTTPD_SVN LIB_HTTPD_SVNPATH
183 if test -n "$LIB_HTTPD_PROXY"
184 then
185 HTTPD_PARA="$HTTPD_PARA -DPROXY"
189 enable_http2 () {
190 HTTPD_PARA="$HTTPD_PARA -DHTTP2"
191 test_set_prereq HTTP2
194 start_httpd() {
195 prepare_httpd >&3 2>&4
197 test_atexit stop_httpd
199 "$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
200 -f "$TEST_PATH/apache.conf" $HTTPD_PARA \
201 -c "Listen 127.0.0.1:$LIB_HTTPD_PORT" -k start \
202 >&3 2>&4
203 if test $? -ne 0
204 then
205 cat "$HTTPD_ROOT_PATH"/error.log >&4 2>/dev/null
206 test_skip_or_die GIT_TEST_HTTPD "web server setup failed"
210 stop_httpd() {
211 "$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
212 -f "$TEST_PATH/apache.conf" $HTTPD_PARA -k stop
215 test_http_push_nonff () {
216 REMOTE_REPO=$1
217 LOCAL_REPO=$2
218 BRANCH=$3
219 EXPECT_CAS_RESULT=${4-failure}
221 test_expect_success 'non-fast-forward push fails' '
222 cd "$REMOTE_REPO" &&
223 HEAD=$(git rev-parse --verify HEAD) &&
225 cd "$LOCAL_REPO" &&
226 git checkout $BRANCH &&
227 echo "changed" > path2 &&
228 git commit -a -m path2 --amend &&
230 test_must_fail git push -v origin >output 2>&1 &&
232 cd "$REMOTE_REPO" &&
233 echo "$HEAD" >expect &&
234 git rev-parse --verify HEAD >actual &&
235 test_cmp expect actual
239 test_expect_success 'non-fast-forward push show ref status' '
240 grep "^ ! \[rejected\][ ]*$BRANCH -> $BRANCH (non-fast-forward)$" output
243 test_expect_success 'non-fast-forward push shows help message' '
244 test_i18ngrep "Updates were rejected because" output
247 test_expect_${EXPECT_CAS_RESULT} 'force with lease aka cas' '
248 HEAD=$( cd "$REMOTE_REPO" && git rev-parse --verify HEAD ) &&
249 test_when_finished '\''
250 (cd "$REMOTE_REPO" && git update-ref HEAD "$HEAD")
251 '\'' &&
253 cd "$LOCAL_REPO" &&
254 git push -v --force-with-lease=$BRANCH:$HEAD origin
255 ) &&
256 git rev-parse --verify "$BRANCH" >expect &&
258 cd "$REMOTE_REPO" && git rev-parse --verify HEAD
259 ) >actual &&
260 test_cmp expect actual
264 setup_askpass_helper() {
265 test_expect_success 'setup askpass helper' '
266 write_script "$TRASH_DIRECTORY/askpass" <<-\EOF &&
267 echo >>"$TRASH_DIRECTORY/askpass-query" "askpass: $*" &&
268 case "$*" in
269 *Username*)
270 what=user
272 *Password*)
273 what=pass
275 esac &&
276 cat "$TRASH_DIRECTORY/askpass-$what"
278 GIT_ASKPASS="$TRASH_DIRECTORY/askpass" &&
279 export GIT_ASKPASS &&
280 export TRASH_DIRECTORY
284 set_askpass() {
285 >"$TRASH_DIRECTORY/askpass-query" &&
286 echo "$1" >"$TRASH_DIRECTORY/askpass-user" &&
287 echo "$2" >"$TRASH_DIRECTORY/askpass-pass"
290 expect_askpass() {
291 dest=$HTTPD_DEST${3+/$3}
294 case "$1" in
295 none)
297 pass)
298 echo "askpass: Password for '$HTTPD_PROTO://$2@$dest': "
300 both)
301 echo "askpass: Username for '$HTTPD_PROTO://$dest': "
302 echo "askpass: Password for '$HTTPD_PROTO://$2@$dest': "
305 false
307 esac
308 } >"$TRASH_DIRECTORY/askpass-expect" &&
309 test_cmp "$TRASH_DIRECTORY/askpass-expect" \
310 "$TRASH_DIRECTORY/askpass-query"
313 strip_access_log() {
314 sed -e "
315 s/^.* \"//
316 s/\"//
317 s/ [1-9][0-9]*\$//
318 s/^GET /GET /
319 " "$HTTPD_ROOT_PATH"/access.log
322 # Requires one argument: the name of a file containing the expected stripped
323 # access log entries.
324 check_access_log() {
325 sort "$1" >"$1".sorted &&
326 strip_access_log >access.log.stripped &&
327 sort access.log.stripped >access.log.sorted &&
328 if ! test_cmp "$1".sorted access.log.sorted
329 then
330 test_cmp "$1" access.log.stripped