Skip to content

Commit

Permalink
Merge branch 'rj/svn-test'
Browse files Browse the repository at this point in the history
* rj/svn-test:
  lib-git-svn.sh: Move web-server handling code into separate function
  • Loading branch information
Junio C Hamano committed Jan 13, 2011
2 parents 7810c6b + 3aa3047 commit 857ba70
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions t/lib-git-svn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ svn_cmd () {
svn "$orig_svncmd" --config-dir "$svnconf" "$@"
}

if test -n "$SVN_HTTPD_PORT"
then
prepare_httpd () {
for d in \
"$SVN_HTTPD_PATH" \
/usr/sbin/apache2 \
Expand All @@ -83,8 +82,8 @@ then
done
if test -z "$SVN_HTTPD_PATH"
then
skip_all='skipping git svn tests, Apache not found'
test_done
echo >&2 '*** error: Apache not found'
return 1
fi
for d in \
"$SVN_HTTPD_MODULE_PATH" \
Expand All @@ -99,23 +98,16 @@ then
done
if test -z "$SVN_HTTPD_MODULE_PATH"
then
skip_all='skipping git svn tests, Apache module dir not found'
test_done
fi
fi

start_httpd () {
repo_base_path="$1"
if test -z "$SVN_HTTPD_PORT"
then
echo >&2 'SVN_HTTPD_PORT is not defined!'
return
echo >&2 '*** error: Apache module dir not found'
return 1
fi
if test -z "$repo_base_path"
if test ! -f "$SVN_HTTPD_MODULE_PATH/mod_dav_svn.so"
then
repo_base_path=svn
echo >&2 '*** error: Apache module "mod_dav_svn" not found'
return 1
fi

repo_base_path="${1-svn}"
mkdir "$GIT_DIR"/logs

cat > "$GIT_DIR/httpd.conf" <<EOF
Expand All @@ -132,12 +124,24 @@ LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
SVNPath "$rawsvnrepo"
</Location>
EOF
}

start_httpd () {
if test -z "$SVN_HTTPD_PORT"
then
echo >&2 'SVN_HTTPD_PORT is not defined!'
return
fi

prepare_httpd "$1" || return 1

"$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
}

stop_httpd () {
test -z "$SVN_HTTPD_PORT" && return
test ! -f "$GIT_DIR/httpd.conf" && return
"$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
}

Expand Down

0 comments on commit 857ba70

Please sign in to comment.