t / lib-httpd.shon commit Merge branch 'nd/fileno-may-be-macro' (1db999c)
   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.
   4#
   5# Usage:
   6#
   7#       . ./test-lib.sh
   8#       . "$TEST_DIRECTORY"/lib-httpd.sh
   9#       start_httpd
  10#
  11#       test_expect_success '...' '
  12#               ...
  13#       '
  14#
  15#       test_expect_success ...
  16#
  17#       stop_httpd
  18#       test_done
  19#
  20# Can be configured using the following variables.
  21#
  22#    GIT_TEST_HTTPD              enable HTTPD tests
  23#    LIB_HTTPD_PATH              web server path
  24#    LIB_HTTPD_MODULE_PATH       web server modules path
  25#    LIB_HTTPD_PORT              listening port
  26#    LIB_HTTPD_DAV               enable DAV
  27#    LIB_HTTPD_SVN               enable SVN at given location (e.g. "svn")
  28#    LIB_HTTPD_SSL               enable SSL
  29#
  30# Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
  31#
  32
  33if test -n "$NO_CURL"
  34then
  35        skip_all='skipping test, git built without http support'
  36        test_done
  37fi
  38
  39if test -n "$NO_EXPAT" && test -n "$LIB_HTTPD_DAV"
  40then
  41        skip_all='skipping test, git built without expat support'
  42        test_done
  43fi
  44
  45test_tristate GIT_TEST_HTTPD
  46if test "$GIT_TEST_HTTPD" = false
  47then
  48        skip_all="Network testing disabled (unset GIT_TEST_HTTPD to enable)"
  49        test_done
  50fi
  51
  52if ! test_have_prereq NOT_ROOT; then
  53        test_skip_or_die $GIT_TEST_HTTPD \
  54                "Cannot run httpd tests as root"
  55fi
  56
  57HTTPD_PARA=""
  58
  59for DEFAULT_HTTPD_PATH in '/usr/sbin/httpd' '/usr/sbin/apache2'
  60do
  61        if test -x "$DEFAULT_HTTPD_PATH"
  62        then
  63                break
  64        fi
  65done
  66
  67for DEFAULT_HTTPD_MODULE_PATH in '/usr/libexec/apache2' \
  68                                 '/usr/lib/apache2/modules' \
  69                                 '/usr/lib64/httpd/modules' \
  70                                 '/usr/lib/httpd/modules'
  71do
  72        if test -d "$DEFAULT_HTTPD_MODULE_PATH"
  73        then
  74                break
  75        fi
  76done
  77
  78case $(uname) in
  79        Darwin)
  80                HTTPD_PARA="$HTTPD_PARA -DDarwin"
  81        ;;
  82esac
  83
  84LIB_HTTPD_PATH=${LIB_HTTPD_PATH-"$DEFAULT_HTTPD_PATH"}
  85test_set_port LIB_HTTPD_PORT
  86
  87TEST_PATH="$TEST_DIRECTORY"/lib-httpd
  88HTTPD_ROOT_PATH="$PWD"/httpd
  89HTTPD_DOCUMENT_ROOT_PATH=$HTTPD_ROOT_PATH/www
  90
  91# hack to suppress apache PassEnv warnings
  92GIT_VALGRIND=$GIT_VALGRIND; export GIT_VALGRIND
  93GIT_VALGRIND_OPTIONS=$GIT_VALGRIND_OPTIONS; export GIT_VALGRIND_OPTIONS
  94GIT_TRACE=$GIT_TRACE; export GIT_TRACE
  95
  96if ! test -x "$LIB_HTTPD_PATH"
  97then
  98        test_skip_or_die $GIT_TEST_HTTPD "no web server found at '$LIB_HTTPD_PATH'"
  99fi
 100
 101HTTPD_VERSION=$($LIB_HTTPD_PATH -v | \
 102        sed -n 's/^Server version: Apache\/\([0-9]*\)\..*$/\1/p; q')
 103
 104if test -n "$HTTPD_VERSION"
 105then
 106        if test -z "$LIB_HTTPD_MODULE_PATH"
 107        then
 108                if ! test $HTTPD_VERSION -ge 2
 109                then
 110                        test_skip_or_die $GIT_TEST_HTTPD \
 111                                "at least Apache version 2 is required"
 112                fi
 113                if ! test -d "$DEFAULT_HTTPD_MODULE_PATH"
 114                then
 115                        test_skip_or_die $GIT_TEST_HTTPD \
 116                                "Apache module directory not found"
 117                fi
 118
 119                LIB_HTTPD_MODULE_PATH="$DEFAULT_HTTPD_MODULE_PATH"
 120        fi
 121else
 122        test_skip_or_die $GIT_TEST_HTTPD \
 123                "Could not identify web server at '$LIB_HTTPD_PATH'"
 124fi
 125
 126install_script () {
 127        write_script "$HTTPD_ROOT_PATH/$1" <"$TEST_PATH/$1"
 128}
 129
 130prepare_httpd() {
 131        mkdir -p "$HTTPD_DOCUMENT_ROOT_PATH"
 132        cp "$TEST_PATH"/passwd "$HTTPD_ROOT_PATH"
 133        install_script broken-smart-http.sh
 134        install_script error-smart-http.sh
 135        install_script error.sh
 136        install_script apply-one-time-sed.sh
 137
 138        ln -s "$LIB_HTTPD_MODULE_PATH" "$HTTPD_ROOT_PATH/modules"
 139
 140        if test -n "$LIB_HTTPD_SSL"
 141        then
 142                HTTPD_PROTO=https
 143
 144                RANDFILE_PATH="$HTTPD_ROOT_PATH"/.rnd openssl req \
 145                        -config "$TEST_PATH/ssl.cnf" \
 146                        -new -x509 -nodes \
 147                        -out "$HTTPD_ROOT_PATH/httpd.pem" \
 148                        -keyout "$HTTPD_ROOT_PATH/httpd.pem"
 149                GIT_SSL_NO_VERIFY=t
 150                export GIT_SSL_NO_VERIFY
 151                HTTPD_PARA="$HTTPD_PARA -DSSL"
 152        else
 153                HTTPD_PROTO=http
 154        fi
 155        HTTPD_DEST=127.0.0.1:$LIB_HTTPD_PORT
 156        HTTPD_URL=$HTTPD_PROTO://$HTTPD_DEST
 157        HTTPD_URL_USER=$HTTPD_PROTO://user%40host@$HTTPD_DEST
 158        HTTPD_URL_USER_PASS=$HTTPD_PROTO://user%40host:pass%40host@$HTTPD_DEST
 159
 160        if test -n "$LIB_HTTPD_DAV" || test -n "$LIB_HTTPD_SVN"
 161        then
 162                HTTPD_PARA="$HTTPD_PARA -DDAV"
 163
 164                if test -n "$LIB_HTTPD_SVN"
 165                then
 166                        HTTPD_PARA="$HTTPD_PARA -DSVN"
 167                        LIB_HTTPD_SVNPATH="$rawsvnrepo"
 168                        svnrepo="http://127.0.0.1:$LIB_HTTPD_PORT/"
 169                        svnrepo="$svnrepo$LIB_HTTPD_SVN"
 170                        export LIB_HTTPD_SVN LIB_HTTPD_SVNPATH
 171                fi
 172        fi
 173}
 174
 175start_httpd() {
 176        prepare_httpd >&3 2>&4
 177
 178        trap 'code=$?; stop_httpd; (exit $code); die' EXIT
 179
 180        "$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
 181                -f "$TEST_PATH/apache.conf" $HTTPD_PARA \
 182                -c "Listen 127.0.0.1:$LIB_HTTPD_PORT" -k start \
 183                >&3 2>&4
 184        if test $? -ne 0
 185        then
 186                trap 'die' EXIT
 187                cat "$HTTPD_ROOT_PATH"/error.log >&4 2>/dev/null
 188                test_skip_or_die $GIT_TEST_HTTPD "web server setup failed"
 189        fi
 190}
 191
 192stop_httpd() {
 193        trap 'die' EXIT
 194
 195        "$LIB_HTTPD_PATH" -d "$HTTPD_ROOT_PATH" \
 196                -f "$TEST_PATH/apache.conf" $HTTPD_PARA -k stop
 197}
 198
 199test_http_push_nonff () {
 200        REMOTE_REPO=$1
 201        LOCAL_REPO=$2
 202        BRANCH=$3
 203        EXPECT_CAS_RESULT=${4-failure}
 204
 205        test_expect_success 'non-fast-forward push fails' '
 206                cd "$REMOTE_REPO" &&
 207                HEAD=$(git rev-parse --verify HEAD) &&
 208
 209                cd "$LOCAL_REPO" &&
 210                git checkout $BRANCH &&
 211                echo "changed" > path2 &&
 212                git commit -a -m path2 --amend &&
 213
 214                test_must_fail git push -v origin >output 2>&1 &&
 215                (cd "$REMOTE_REPO" &&
 216                 test $HEAD = $(git rev-parse --verify HEAD))
 217        '
 218
 219        test_expect_success 'non-fast-forward push show ref status' '
 220                grep "^ ! \[rejected\][ ]*$BRANCH -> $BRANCH (non-fast-forward)$" output
 221        '
 222
 223        test_expect_success 'non-fast-forward push shows help message' '
 224                test_i18ngrep "Updates were rejected because" output
 225        '
 226
 227        test_expect_${EXPECT_CAS_RESULT} 'force with lease aka cas' '
 228                HEAD=$( cd "$REMOTE_REPO" && git rev-parse --verify HEAD ) &&
 229                test_when_finished '\''
 230                        (cd "$REMOTE_REPO" && git update-ref HEAD "$HEAD")
 231                '\'' &&
 232                (
 233                        cd "$LOCAL_REPO" &&
 234                        git push -v --force-with-lease=$BRANCH:$HEAD origin
 235                ) &&
 236                git rev-parse --verify "$BRANCH" >expect &&
 237                (
 238                        cd "$REMOTE_REPO" && git rev-parse --verify HEAD
 239                ) >actual &&
 240                test_cmp expect actual
 241        '
 242}
 243
 244setup_askpass_helper() {
 245        test_expect_success 'setup askpass helper' '
 246                write_script "$TRASH_DIRECTORY/askpass" <<-\EOF &&
 247                echo >>"$TRASH_DIRECTORY/askpass-query" "askpass: $*" &&
 248                case "$*" in
 249                *Username*)
 250                        what=user
 251                        ;;
 252                *Password*)
 253                        what=pass
 254                        ;;
 255                esac &&
 256                cat "$TRASH_DIRECTORY/askpass-$what"
 257                EOF
 258                GIT_ASKPASS="$TRASH_DIRECTORY/askpass" &&
 259                export GIT_ASKPASS &&
 260                export TRASH_DIRECTORY
 261        '
 262}
 263
 264set_askpass() {
 265        >"$TRASH_DIRECTORY/askpass-query" &&
 266        echo "$1" >"$TRASH_DIRECTORY/askpass-user" &&
 267        echo "$2" >"$TRASH_DIRECTORY/askpass-pass"
 268}
 269
 270expect_askpass() {
 271        dest=$HTTPD_DEST${3+/$3}
 272
 273        {
 274                case "$1" in
 275                none)
 276                        ;;
 277                pass)
 278                        echo "askpass: Password for 'http://$2@$dest': "
 279                        ;;
 280                both)
 281                        echo "askpass: Username for 'http://$dest': "
 282                        echo "askpass: Password for 'http://$2@$dest': "
 283                        ;;
 284                *)
 285                        false
 286                        ;;
 287                esac
 288        } >"$TRASH_DIRECTORY/askpass-expect" &&
 289        test_cmp "$TRASH_DIRECTORY/askpass-expect" \
 290                 "$TRASH_DIRECTORY/askpass-query"
 291}
 292
 293strip_access_log() {
 294        sed -e "
 295                s/^.* \"//
 296                s/\"//
 297                s/ [1-9][0-9]*\$//
 298                s/^GET /GET  /
 299        " "$HTTPD_ROOT_PATH"/access.log
 300}
 301
 302# Requires one argument: the name of a file containing the expected stripped
 303# access log entries.
 304check_access_log() {
 305        sort "$1" >"$1".sorted &&
 306        strip_access_log >access.log.stripped &&
 307        sort access.log.stripped >access.log.sorted &&
 308        if ! test_cmp "$1".sorted access.log.sorted
 309        then
 310                test_cmp "$1" access.log.stripped
 311        fi
 312}