t / t5541-http-push.shon commit Merge git://github.com/git-l10n/git-po (3a2c135)
   1#!/bin/sh
   2#
   3# Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
   4#
   5
   6test_description='test smart pushing over http via http-backend'
   7. ./test-lib.sh
   8
   9if test -n "$NO_CURL"; then
  10        skip_all='skipping test, git built without http support'
  11        test_done
  12fi
  13
  14ROOT_PATH="$PWD"
  15LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5541'}
  16. "$TEST_DIRECTORY"/lib-httpd.sh
  17. "$TEST_DIRECTORY"/lib-terminal.sh
  18start_httpd
  19
  20test_expect_success 'setup remote repository' '
  21        cd "$ROOT_PATH" &&
  22        mkdir test_repo &&
  23        cd test_repo &&
  24        git init &&
  25        : >path1 &&
  26        git add path1 &&
  27        test_tick &&
  28        git commit -m initial &&
  29        cd - &&
  30        git clone --bare test_repo test_repo.git &&
  31        cd test_repo.git &&
  32        git config http.receivepack true &&
  33        git config core.logallrefupdates true &&
  34        ORIG_HEAD=$(git rev-parse --verify HEAD) &&
  35        cd - &&
  36        mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
  37'
  38
  39cat >exp <<EOF
  40GET  /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
  41POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
  42EOF
  43test_expect_success 'no empty path components' '
  44        # In the URL, add a trailing slash, and see if git appends yet another
  45        # slash.
  46        cd "$ROOT_PATH" &&
  47        git clone $HTTPD_URL/smart/test_repo.git/ test_repo_clone &&
  48
  49        sed -e "
  50                s/^.* \"//
  51                s/\"//
  52                s/ [1-9][0-9]*\$//
  53                s/^GET /GET  /
  54        " >act <"$HTTPD_ROOT_PATH"/access.log &&
  55
  56        # Clear the log, so that it does not affect the "used receive-pack
  57        # service" test which reads the log too.
  58        #
  59        # We do this before the actual comparison to ensure the log is cleared.
  60        echo > "$HTTPD_ROOT_PATH"/access.log &&
  61
  62        test_cmp exp act
  63'
  64
  65test_expect_success 'clone remote repository' '
  66        rm -rf test_repo_clone &&
  67        git clone $HTTPD_URL/smart/test_repo.git test_repo_clone
  68'
  69
  70test_expect_success 'push to remote repository (standard)' '
  71        cd "$ROOT_PATH"/test_repo_clone &&
  72        : >path2 &&
  73        git add path2 &&
  74        test_tick &&
  75        git commit -m path2 &&
  76        HEAD=$(git rev-parse --verify HEAD) &&
  77        GIT_CURL_VERBOSE=1 git push -v -v 2>err &&
  78        ! grep "Expect: 100-continue" err &&
  79        grep "POST git-receive-pack ([0-9]* bytes)" err &&
  80        (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
  81         test $HEAD = $(git rev-parse --verify HEAD))
  82'
  83
  84test_expect_success 'push already up-to-date' '
  85        git push
  86'
  87
  88test_expect_success 'create and delete remote branch' '
  89        cd "$ROOT_PATH"/test_repo_clone &&
  90        git checkout -b dev &&
  91        : >path3 &&
  92        git add path3 &&
  93        test_tick &&
  94        git commit -m dev &&
  95        git push origin dev &&
  96        git push origin :dev &&
  97        test_must_fail git show-ref --verify refs/remotes/origin/dev
  98'
  99
 100cat >"$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update" <<EOF
 101#!/bin/sh
 102exit 1
 103EOF
 104chmod a+x "$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update"
 105
 106cat >exp <<EOF
 107remote: error: hook declined to update refs/heads/dev2
 108To http://127.0.0.1:$LIB_HTTPD_PORT/smart/test_repo.git
 109 ! [remote rejected] dev2 -> dev2 (hook declined)
 110error: failed to push some refs to 'http://127.0.0.1:$LIB_HTTPD_PORT/smart/test_repo.git'
 111EOF
 112
 113test_expect_success 'rejected update prints status' '
 114        cd "$ROOT_PATH"/test_repo_clone &&
 115        git checkout -b dev2 &&
 116        : >path4 &&
 117        git add path4 &&
 118        test_tick &&
 119        git commit -m dev2 &&
 120        test_must_fail git push origin dev2 2>act &&
 121        sed -e "/^remote: /s/ *$//" <act >cmp &&
 122        test_cmp exp cmp
 123'
 124rm -f "$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update"
 125
 126cat >exp <<EOF
 127
 128GET  /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
 129POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
 130GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
 131POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
 132GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
 133GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
 134POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
 135GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
 136POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
 137GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
 138POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
 139EOF
 140test_expect_success 'used receive-pack service' '
 141        sed -e "
 142                s/^.* \"//
 143                s/\"//
 144                s/ [1-9][0-9]*\$//
 145                s/^GET /GET  /
 146        " >act <"$HTTPD_ROOT_PATH"/access.log &&
 147        test_cmp exp act
 148'
 149
 150test_http_push_nonff "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
 151        "$ROOT_PATH"/test_repo_clone master
 152
 153test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper' '
 154        # create a dissimilarly-named remote ref so that git is unable to match the
 155        # two refs (viz. local, remote) unless an explicit refspec is provided.
 156        git push origin master:retsam
 157
 158        echo "change changed" > path2 &&
 159        git commit -a -m path2 --amend &&
 160
 161        # push master too; this ensures there is at least one '"'push'"' command to
 162        # the remote helper and triggers interaction with the helper.
 163        test_must_fail git push -v origin +master master:retsam >output 2>&1'
 164
 165test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper: remote output' '
 166        grep "^ + [a-f0-9]*\.\.\.[a-f0-9]* *master -> master (forced update)$" output &&
 167        grep "^ ! \[rejected\] *master -> retsam (non-fast-forward)$" output
 168'
 169
 170test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper: our output' '
 171        test_i18ngrep "Updates were rejected because" \
 172                output
 173'
 174
 175test_expect_success 'push (chunked)' '
 176        git checkout master &&
 177        test_commit commit path3 &&
 178        HEAD=$(git rev-parse --verify HEAD) &&
 179        git config http.postbuffer 4 &&
 180        test_when_finished "git config --unset http.postbuffer" &&
 181        git push -v -v origin $BRANCH 2>err &&
 182        grep "POST git-receive-pack (chunked)" err &&
 183        (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
 184         test $HEAD = $(git rev-parse --verify HEAD))
 185'
 186
 187test_expect_success 'push --all can push to empty repo' '
 188        d=$HTTPD_DOCUMENT_ROOT_PATH/empty-all.git &&
 189        git init --bare "$d" &&
 190        git --git-dir="$d" config http.receivepack true &&
 191        git push --all "$HTTPD_URL"/smart/empty-all.git
 192'
 193
 194test_expect_success 'push --mirror can push to empty repo' '
 195        d=$HTTPD_DOCUMENT_ROOT_PATH/empty-mirror.git &&
 196        git init --bare "$d" &&
 197        git --git-dir="$d" config http.receivepack true &&
 198        git push --mirror "$HTTPD_URL"/smart/empty-mirror.git
 199'
 200
 201test_expect_success 'push --all to repo with alternates' '
 202        s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
 203        d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-all.git &&
 204        git clone --bare --shared "$s" "$d" &&
 205        git --git-dir="$d" config http.receivepack true &&
 206        git --git-dir="$d" repack -adl &&
 207        git push --all "$HTTPD_URL"/smart/alternates-all.git
 208'
 209
 210test_expect_success 'push --mirror to repo with alternates' '
 211        s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
 212        d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-mirror.git &&
 213        git clone --bare --shared "$s" "$d" &&
 214        git --git-dir="$d" config http.receivepack true &&
 215        git --git-dir="$d" repack -adl &&
 216        git push --mirror "$HTTPD_URL"/smart/alternates-mirror.git
 217'
 218
 219test_expect_success TTY 'push shows progress when stderr is a tty' '
 220        cd "$ROOT_PATH"/test_repo_clone &&
 221        test_commit noisy &&
 222        test_terminal git push >output 2>&1 &&
 223        grep "^Writing objects" output
 224'
 225
 226test_expect_success TTY 'push --quiet silences status and progress' '
 227        cd "$ROOT_PATH"/test_repo_clone &&
 228        test_commit quiet &&
 229        test_terminal git push --quiet >output 2>&1 &&
 230        test_cmp /dev/null output
 231'
 232
 233test_expect_success TTY 'push --no-progress silences progress but not status' '
 234        cd "$ROOT_PATH"/test_repo_clone &&
 235        test_commit no-progress &&
 236        test_terminal git push --no-progress >output 2>&1 &&
 237        grep "^To http" output &&
 238        ! grep "^Writing objects"
 239'
 240
 241test_expect_success 'push --progress shows progress to non-tty' '
 242        cd "$ROOT_PATH"/test_repo_clone &&
 243        test_commit progress &&
 244        git push --progress >output 2>&1 &&
 245        grep "^To http" output &&
 246        grep "^Writing objects" output
 247'
 248
 249test_expect_success 'http push gives sane defaults to reflog' '
 250        cd "$ROOT_PATH"/test_repo_clone &&
 251        test_commit reflog-test &&
 252        git push "$HTTPD_URL"/smart/test_repo.git &&
 253        git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
 254                log -g -1 --format="%gn <%ge>" >actual &&
 255        echo "anonymous <anonymous@http.127.0.0.1>" >expect &&
 256        test_cmp expect actual
 257'
 258
 259test_expect_success 'http push respects GIT_COMMITTER_* in reflog' '
 260        cd "$ROOT_PATH"/test_repo_clone &&
 261        test_commit custom-reflog-test &&
 262        git push "$HTTPD_URL"/smart_custom_env/test_repo.git &&
 263        git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
 264                log -g -1 --format="%gn <%ge>" >actual &&
 265        echo "Custom User <custom@example.com>" >expect &&
 266        test_cmp expect actual
 267'
 268
 269stop_httpd
 270test_done