lib-httpd.sh 6.2 KB
Newer Older
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
# Shell library to run an HTTP server for use in tests.
# Ends the test early if httpd tests should not be run,
# for example because the user has not enabled them.
#
# Usage:
#
#	. ./test-lib.sh
#	. "$TEST_DIRECTORY"/lib-httpd.sh
#	start_httpd
#
#	test_expect_success '...' '
#		...
#	'
#
#	test_expect_success ...
#
#	stop_httpd
#	test_done
#
# Can be configured using the following variables.
#
#    GIT_TEST_HTTPD              enable HTTPD tests
#    LIB_HTTPD_PATH              web server path
#    LIB_HTTPD_MODULE_PATH       web server modules path
#    LIB_HTTPD_PORT              listening port
#    LIB_HTTPD_DAV               enable DAV
#    LIB_HTTPD_SVN               enable SVN
#    LIB_HTTPD_SSL               enable SSL
29 30 31 32
#
# Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
#

33 34
test_tristate GIT_TEST_HTTPD
if test "$GIT_TEST_HTTPD" = false
35
then
36
	skip_all="Network testing disabled (unset GIT_TEST_HTTPD to enable)"
37 38 39
	test_done
fi

40
if ! test_have_prereq NOT_ROOT; then
J
Jeff King 已提交
41 42 43 44
	test_skip_or_die $GIT_TEST_HTTPD \
		"Cannot run httpd tests as root"
fi

J
Jay Soffian 已提交
45 46
HTTPD_PARA=""

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
for DEFAULT_HTTPD_PATH in '/usr/sbin/httpd' '/usr/sbin/apache2'
do
	if test -x "$DEFAULT_HTTPD_PATH"
	then
		break
	fi
done

for DEFAULT_HTTPD_MODULE_PATH in '/usr/libexec/apache2' \
				 '/usr/lib/apache2/modules' \
				 '/usr/lib64/httpd/modules' \
				 '/usr/lib/httpd/modules'
do
	if test -d "$DEFAULT_HTTPD_MODULE_PATH"
	then
		break
	fi
done

J
Jay Soffian 已提交
66 67 68 69 70 71 72
case $(uname) in
	Darwin)
		HTTPD_PARA="$HTTPD_PARA -DDarwin"
	;;
esac

LIB_HTTPD_PATH=${LIB_HTTPD_PATH-"$DEFAULT_HTTPD_PATH"}
73
LIB_HTTPD_PORT=${LIB_HTTPD_PORT-${this_test#t}}
74

75
TEST_PATH="$TEST_DIRECTORY"/lib-httpd
76 77 78
HTTPD_ROOT_PATH="$PWD"/httpd
HTTPD_DOCUMENT_ROOT_PATH=$HTTPD_ROOT_PATH/www

79 80 81 82
# hack to suppress apache PassEnv warnings
GIT_VALGRIND=$GIT_VALGRIND; export GIT_VALGRIND
GIT_VALGRIND_OPTIONS=$GIT_VALGRIND_OPTIONS; export GIT_VALGRIND_OPTIONS

83 84
if ! test -x "$LIB_HTTPD_PATH"
then
85
	test_skip_or_die $GIT_TEST_HTTPD "no web server found at '$LIB_HTTPD_PATH'"
86 87 88 89 90 91 92 93 94 95 96
fi

HTTPD_VERSION=`$LIB_HTTPD_PATH -v | \
	sed -n 's/^Server version: Apache\/\([0-9]*\)\..*$/\1/p; q'`

if test -n "$HTTPD_VERSION"
then
	if test -z "$LIB_HTTPD_MODULE_PATH"
	then
		if ! test $HTTPD_VERSION -ge 2
		then
97 98
			test_skip_or_die $GIT_TEST_HTTPD \
				"at least Apache version 2 is required"
99
		fi
100 101
		if ! test -d "$DEFAULT_HTTPD_MODULE_PATH"
		then
102 103
			test_skip_or_die $GIT_TEST_HTTPD \
				"Apache module directory not found"
104
		fi
105

J
Jay Soffian 已提交
106
		LIB_HTTPD_MODULE_PATH="$DEFAULT_HTTPD_MODULE_PATH"
107 108
	fi
else
109 110
	test_skip_or_die $GIT_TEST_HTTPD \
		"Could not identify web server at '$LIB_HTTPD_PATH'"
111 112
fi

113 114 115 116
install_script () {
	write_script "$HTTPD_ROOT_PATH/$1" <"$TEST_PATH/$1"
}

117
prepare_httpd() {
M
Mike Hommey 已提交
118
	mkdir -p "$HTTPD_DOCUMENT_ROOT_PATH"
119
	cp "$TEST_PATH"/passwd "$HTTPD_ROOT_PATH"
120
	install_script broken-smart-http.sh
121
	install_script error.sh
122

M
Mike Hommey 已提交
123
	ln -s "$LIB_HTTPD_MODULE_PATH" "$HTTPD_ROOT_PATH/modules"
124 125 126

	if test -n "$LIB_HTTPD_SSL"
	then
J
Jeff King 已提交
127
		HTTPD_PROTO=https
128 129

		RANDFILE_PATH="$HTTPD_ROOT_PATH"/.rnd openssl req \
M
Mike Hommey 已提交
130
			-config "$TEST_PATH/ssl.cnf" \
131
			-new -x509 -nodes \
M
Mike Hommey 已提交
132 133
			-out "$HTTPD_ROOT_PATH/httpd.pem" \
			-keyout "$HTTPD_ROOT_PATH/httpd.pem"
134 135
		GIT_SSL_NO_VERIFY=t
		export GIT_SSL_NO_VERIFY
136 137
		HTTPD_PARA="$HTTPD_PARA -DSSL"
	else
J
Jeff King 已提交
138
		HTTPD_PROTO=http
139
	fi
J
Jeff King 已提交
140 141 142
	HTTPD_DEST=127.0.0.1:$LIB_HTTPD_PORT
	HTTPD_URL=$HTTPD_PROTO://$HTTPD_DEST
	HTTPD_URL_USER=$HTTPD_PROTO://user%40host@$HTTPD_DEST
143
	HTTPD_URL_USER_PASS=$HTTPD_PROTO://user%40host:pass%40host@$HTTPD_DEST
144

145
	if test -n "$LIB_HTTPD_DAV" || test -n "$LIB_HTTPD_SVN"
146 147 148 149 150 151 152 153 154 155 156 157 158
	then
		HTTPD_PARA="$HTTPD_PARA -DDAV"

		if test -n "$LIB_HTTPD_SVN"
		then
			HTTPD_PARA="$HTTPD_PARA -DSVN"
			rawsvnrepo="$HTTPD_ROOT_PATH/svnrepo"
			svnrepo="http://127.0.0.1:$LIB_HTTPD_PORT/svn"
		fi
	fi
}

start_httpd() {
159
	prepare_httpd >&3 2>&4
160

161
	trap 'code=$?; stop_httpd; (exit $code); die' EXIT
162

M
Mike Hommey 已提交
163 164
	"$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
		-f "$TEST_PATH/apache.conf" $HTTPD_PARA \
165 166
		-c "Listen 127.0.0.1:$LIB_HTTPD_PORT" -k start \
		>&3 2>&4
167 168 169
	if test $? -ne 0
	then
		trap 'die' EXIT
170
		test_skip_or_die $GIT_TEST_HTTPD "web server setup failed"
171
	fi
172 173 174
}

stop_httpd() {
175
	trap 'die' EXIT
176

M
Mike Hommey 已提交
177
	"$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
J
Jay Soffian 已提交
178
		-f "$TEST_PATH/apache.conf" $HTTPD_PARA -k stop
179
}
180

181
test_http_push_nonff () {
182 183 184
	REMOTE_REPO=$1
	LOCAL_REPO=$2
	BRANCH=$3
185
	EXPECT_CAS_RESULT=${4-failure}
186 187 188 189 190 191 192 193 194 195

	test_expect_success 'non-fast-forward push fails' '
		cd "$REMOTE_REPO" &&
		HEAD=$(git rev-parse --verify HEAD) &&

		cd "$LOCAL_REPO" &&
		git checkout $BRANCH &&
		echo "changed" > path2 &&
		git commit -a -m path2 --amend &&

196
		test_must_fail git push -v origin >output 2>&1 &&
197 198 199 200 201 202 203 204
		(cd "$REMOTE_REPO" &&
		 test $HEAD = $(git rev-parse --verify HEAD))
	'

	test_expect_success 'non-fast-forward push show ref status' '
		grep "^ ! \[rejected\][ ]*$BRANCH -> $BRANCH (non-fast-forward)$" output
	'

205
	test_expect_success 'non-fast-forward push shows help message' '
206
		test_i18ngrep "Updates were rejected because" output
207
	'
208

209
	test_expect_${EXPECT_CAS_RESULT} 'force with lease aka cas' '
210 211 212 213 214 215 216 217 218 219 220 221 222 223
		HEAD=$(	cd "$REMOTE_REPO" && git rev-parse --verify HEAD ) &&
		test_when_finished '\''
			(cd "$REMOTE_REPO" && git update-ref HEAD "$HEAD")
		'\'' &&
		(
			cd "$LOCAL_REPO" &&
			git push -v --force-with-lease=$BRANCH:$HEAD origin
		) &&
		git rev-parse --verify "$BRANCH" >expect &&
		(
			cd "$REMOTE_REPO" && git rev-parse --verify HEAD
		) >actual &&
		test_cmp expect actual
	'
224
}
J
Jeff King 已提交
225 226 227 228 229

setup_askpass_helper() {
	test_expect_success 'setup askpass helper' '
		write_script "$TRASH_DIRECTORY/askpass" <<-\EOF &&
		echo >>"$TRASH_DIRECTORY/askpass-query" "askpass: $*" &&
230 231 232 233 234 235 236 237 238
		case "$*" in
		*Username*)
			what=user
			;;
		*Password*)
			what=pass
			;;
		esac &&
		cat "$TRASH_DIRECTORY/askpass-$what"
J
Jeff King 已提交
239 240 241 242 243 244 245 246 247
		EOF
		GIT_ASKPASS="$TRASH_DIRECTORY/askpass" &&
		export GIT_ASKPASS &&
		export TRASH_DIRECTORY
	'
}

set_askpass() {
	>"$TRASH_DIRECTORY/askpass-query" &&
248 249
	echo "$1" >"$TRASH_DIRECTORY/askpass-user" &&
	echo "$2" >"$TRASH_DIRECTORY/askpass-pass"
J
Jeff King 已提交
250 251 252
}

expect_askpass() {
253 254
	dest=$HTTPD_DEST${3+/$3}

J
Jeff King 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
	{
		case "$1" in
		none)
			;;
		pass)
			echo "askpass: Password for 'http://$2@$dest': "
			;;
		both)
			echo "askpass: Username for 'http://$dest': "
			echo "askpass: Password for 'http://$2@$dest': "
			;;
		*)
			false
			;;
		esac
	} >"$TRASH_DIRECTORY/askpass-expect" &&
	test_cmp "$TRASH_DIRECTORY/askpass-expect" \
		 "$TRASH_DIRECTORY/askpass-query"
}