davautocheck.sh

来自「linux subdivision ying gai ke yi le ba」· Shell 代码 · 共 215 行

SH
215
字号
#!/bin/sh# -*- mode: shell-script; -*-# $Id$# This script simplifies preparation of environment for Subversion client# communicating with a server via DAV protocol. The prerequisites of such# testing are:#   - Subversion built using --enable-shared --enable-dso --enable-apsx options,#   - Working Apache 2 HTTPD Server reachable through PATH,#   - Modules dav_module and log_config_module compiled as DSO or built into#     Apache HTTPD Server executable.# The basic intension of this script is to be able to perform "make check"# operation over DAV without any configuration efforts whatsoever, provided# that conditions above are met.## The script will find Apache and all necessary modules including mod_dav_svn,# create a temporary directory in subversion/tests/clients/cmdline, create# Apache 2 configuration file in this directory, start Apache 2 on a random# port number higher than 1024, and execute Subversion command-line client# test suites against this instance of HTTPD. Every vital configuration# parameter is checked before the tests start. The script will ask questions# about browsing Apache error log (default is "no") and about deleting# temporary directory (default "yes") and pause for 32 seconds before proceeding# with the default. HTTPD access log is also created in the temporary directory.## Run this script without parameters to execute the full battery of tests:#   subversion/tests/clients/cmdline/davautocheck.sh# Run this script with the name of a test suite to run this suite:#   subversion/tests/clients/cmdline/davautocheck.sh basic# Run this script with the test suite name and test number to execute just this# test:#   subversion/tests/clients/cmdline/davautocheck.sh basic 4## If the temporary directory is not deleted, it can be reused for further manual# DAV protocol interoperation testing. HTTPD must be started by specifying# configuration file on the command line:#   httpd -f subversion/tests/clients/cmdline/<httpd-...>/cfgSCRIPTDIR=$(dirname $0)SCRIPT=$(basename $0)function say() {  echo "$SCRIPT: $*"}function fail() {  say $*  exit 1}function query() {  echo -n "$SCRIPT: $1 (y/n)? [$2] "  read -n 1 -t 32  echo  [ "${REPLY:-$2}" == 'y' ]}function get_loadmodule_config() {  local SO="$HTTPD_REAL_ROOT/libexec/$1.so"  # shared object module?  if [ -r "$SO" ]; then    local NM=$(echo "$1" | sed 's|mod_\(.*\)|\1_module|')    echo "LoadModule $NM \"$SO\"" &&    return  fi  # maybe it's built-in?  "$HTTPD" -l | grep -q "$1\\.c" && return  return 1}if [ -x svn-config ]; then  ABS_BUILDDIR=$(pwd)elif [ -x $SCRIPTDIR/../../../../svn-config ]; then  pushd $SCRIPTDIR/../../../../ >/dev/null  ABS_BUILDDIR=$(pwd)  popd >/dev/nullelse  fail "Run this script from the root of Subversion's build tree!"fiMOD_DAV_SVN="$ABS_BUILDDIR/subversion/mod_dav_svn/.libs/mod_dav_svn.so"[ -r "$MOD_DAV_SVN" ] \  || fail "dav_svn_module not found, please use '--enable-shared --enable-dso --with-apxs' with your 'configure' script"export LD_LIBRARY_PATH="$ABS_BUILDDIR/subversion/libsvn_ra_dav/.libs:$ABS_BUILDDIR/subversion/libsvn_ra_local/.libs:$ABS_BUILDDIR/subversion/libsvn_ra_svn/.libs"CLIENT_CMD="$ABS_BUILDDIR/subversion/clients/cmdline/svn"ldd "$CLIENT_CMD" | grep -q 'not found' \  && fail "Subversion client couldn't be fully linked at run-time""$CLIENT_CMD" --version | grep -q '^[*] ra_dav' \  || fail "Subversion client couldn't find and/or load ra_dav library"HTTPD=$(which httpd 2>/dev/null) \  || fail "HTTPD executable not found""$HTTPD" -v 1>/dev/null 2>&1 \  || fail "HTTPD doesn't start properly"say "Using '$HTTPD'..."# need to remove quotes from whatevere 'cut' extractsroot=$("$HTTPD" -V | grep HTTPD_ROOT | cut -d '=' -f 2)HTTPD_REAL_ROOT=${root//\"/}[ -d "$HTTPD_REAL_ROOT" ] \  || fail "HTTPD real root not found"LOAD_MOD_DAV=$(get_loadmodule_config mod_dav) \  || fail "DAV module not found"LOAD_MOD_LOG_CONFIG=$(get_loadmodule_config mod_log_config) \  || fail "log_config module not found"HTTPD_PORT=$(($RANDOM+1024))HTTPD_ROOT="$ABS_BUILDDIR/subversion/tests/clients/cmdline/httpd-$(date '+%Y%m%d-%H%M%S')"HTTPD_CFG="$HTTPD_ROOT/cfg"HTTPD_PID="$HTTPD_ROOT/pid"HTTPD_LOG="$HTTPD_ROOT/log"HTTPD_MIME_TYPES="$HTTPD_ROOT/mime.types"BASE_URL="http://localhost:$HTTPD_PORT"mkdir "$HTTPD_ROOT" \  || fail "couldn't create temporary directory '$HTTPD_ROOT'"say "Using directory '$HTTPD_ROOT'..."touch $HTTPD_MIME_TYPEScat > "$HTTPD_CFG" <<__EOF__User                $(whoami)Group               $(whoami)Listen              localhost:$HTTPD_PORTServerName          localhostPidFile             "$HTTPD_PID"ErrorLog            "$HTTPD_LOG"LogLevel            DebugServerRoot          "$HTTPD_ROOT"DocumentRoot        "$HTTPD_ROOT"ScoreBoardFile      "$HTTPD_ROOT/run"CoreDumpDirectory   "$HTTPD_ROOT"TypesConfig         "$HTTPD_MIME_TYPES"StartServers        4MaxRequestsPerChild 0<IfModule worker.c>  ThreadsPerChild   8</IfModule>MaxClients          16HostNameLookups     Off$LOAD_MOD_DAVLoadModule          dav_svn_module "$MOD_DAV_SVN"$LOAD_MOD_LOG_CONFIGLogFormat           "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" formatCustomLog           "$HTTPD_ROOT/req" format<Directory />  AllowOverride     none</Directory><Directory "$HTTPD_ROOT">  AllowOverride     none</Directory><Location /repositories>  DAV               svn  SVNParentPath     "$ABS_BUILDDIR/subversion/tests/clients/cmdline/repositories"</Location><Location /local_tmp/repos>  DAV               svn  SVNPath           "$ABS_BUILDDIR/subversion/tests/clients/cmdline/local_tmp/repos"</Location>__EOF__START="$HTTPD -f $HTTPD_CFG"$START -t \  || fail "Configuration file didn't pass the check, most likely modules couldn't be loaded"# need to pause for some time to let HTTPD start$START &sleep 2say "HTTPD started and listening on '$BASE_URL'..."# use wget to download configuration file through HTTPD and compare it to the originalwget -q -O "$HTTPD_CFG-copy" "$BASE_URL/cfg"diff -q "$HTTPD_CFG" "$HTTPD_CFG-copy" \  || fail "HTTPD doesn't operate according to the configuration"rm "$HTTPD_CFG-copy"say "HTTPD is good, starting the tests..."if [ $# == 0 ]; then  time make check "BASE_URL=$BASE_URL"else  pushd "$ABS_BUILDDIR/subversion/tests/clients/cmdline/" >/dev/null  TEST="$1"  shift  time "./${TEST}_tests.py" "--url=$BASE_URL" $*  popd >/dev/nullfisay "Finished testing..."kill $(cat "$HTTPD_PID")query 'Browse server error log' n \  && less "$HTTPD_LOG"query 'Delete HTTPD root directory' y \  && rm -fr "$HTTPD_ROOT/"say 'Done'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?