Code

t5541: avoid TAP test miscounting
[git.git] / t / t5541-http-push.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
4 #
6 test_description='test smart pushing over http via http-backend'
7 . ./test-lib.sh
9 if test -n "$NO_CURL"; then
10         skip_all='skipping test, git built without http support'
11         test_done
12 fi
14 ROOT_PATH="$PWD"
15 LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5541'}
16 . "$TEST_DIRECTORY"/lib-httpd.sh
17 . "$TEST_DIRECTORY"/lib-terminal.sh
18 start_httpd
20 test_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         ORIG_HEAD=$(git rev-parse --verify HEAD) &&
34         cd - &&
35         mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
36 '
38 cat >exp <<EOF
39 GET  /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
40 POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
41 EOF
42 test_expect_success 'no empty path components' '
43         # In the URL, add a trailing slash, and see if git appends yet another
44         # slash.
45         cd "$ROOT_PATH" &&
46         git clone $HTTPD_URL/smart/test_repo.git/ test_repo_clone &&
48         sed -e "
49                 s/^.* \"//
50                 s/\"//
51                 s/ [1-9][0-9]*\$//
52                 s/^GET /GET  /
53         " >act <"$HTTPD_ROOT_PATH"/access.log &&
55         # Clear the log, so that it does not affect the "used receive-pack
56         # service" test which reads the log too.
57         #
58         # We do this before the actual comparison to ensure the log is cleared.
59         echo > "$HTTPD_ROOT_PATH"/access.log &&
61         test_cmp exp act
62 '
64 test_expect_success 'clone remote repository' '
65         rm -rf test_repo_clone &&
66         git clone $HTTPD_URL/smart/test_repo.git test_repo_clone
67 '
69 test_expect_success 'push to remote repository (standard)' '
70         cd "$ROOT_PATH"/test_repo_clone &&
71         : >path2 &&
72         git add path2 &&
73         test_tick &&
74         git commit -m path2 &&
75         HEAD=$(git rev-parse --verify HEAD) &&
76         GIT_CURL_VERBOSE=1 git push -v -v 2>err &&
77         ! grep "Expect: 100-continue" err &&
78         grep "POST git-receive-pack ([0-9]* bytes)" err &&
79         (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
80          test $HEAD = $(git rev-parse --verify HEAD))
81 '
83 test_expect_success 'push already up-to-date' '
84         git push
85 '
87 test_expect_success 'create and delete remote branch' '
88         cd "$ROOT_PATH"/test_repo_clone &&
89         git checkout -b dev &&
90         : >path3 &&
91         git add path3 &&
92         test_tick &&
93         git commit -m dev &&
94         git push origin dev &&
95         git push origin :dev &&
96         test_must_fail git show-ref --verify refs/remotes/origin/dev
97 '
99 cat >exp <<EOF
101 GET  /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
102 POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
103 GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
104 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
105 GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
106 GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
107 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
108 GET  /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
109 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
110 EOF
111 test_expect_success 'used receive-pack service' '
112         sed -e "
113                 s/^.* \"//
114                 s/\"//
115                 s/ [1-9][0-9]*\$//
116                 s/^GET /GET  /
117         " >act <"$HTTPD_ROOT_PATH"/access.log &&
118         test_cmp exp act
121 test_http_push_nonff "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
122         "$ROOT_PATH"/test_repo_clone master
124 test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper' '
125         # create a dissimilarly-named remote ref so that git is unable to match the
126         # two refs (viz. local, remote) unless an explicit refspec is provided.
127         git push origin master:retsam
129         echo "change changed" > path2 &&
130         git commit -a -m path2 --amend &&
132         # push master too; this ensures there is at least one '"'push'"' command to
133         # the remote helper and triggers interaction with the helper.
134         test_must_fail git push -v origin +master master:retsam >output 2>&1'
136 test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper: remote output' '
137         grep "^ + [a-f0-9]*\.\.\.[a-f0-9]* *master -> master (forced update)$" output &&
138         grep "^ ! \[rejected\] *master -> retsam (non-fast-forward)$" output
141 test_expect_success 'push fails for non-fast-forward refs unmatched by remote helper: our output' '
142         test_i18ngrep "To prevent you from losing history, non-fast-forward updates were rejected" \
143                 output
146 test_expect_success 'push (chunked)' '
147         git checkout master &&
148         test_commit commit path3 &&
149         HEAD=$(git rev-parse --verify HEAD) &&
150         git config http.postbuffer 4 &&
151         test_when_finished "git config --unset http.postbuffer" &&
152         git push -v -v origin $BRANCH 2>err &&
153         grep "POST git-receive-pack (chunked)" err &&
154         (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
155          test $HEAD = $(git rev-parse --verify HEAD))
158 test_expect_success 'push --all can push to empty repo' '
159         d=$HTTPD_DOCUMENT_ROOT_PATH/empty-all.git &&
160         git init --bare "$d" &&
161         git --git-dir="$d" config http.receivepack true &&
162         git push --all "$HTTPD_URL"/smart/empty-all.git
165 test_expect_success 'push --mirror can push to empty repo' '
166         d=$HTTPD_DOCUMENT_ROOT_PATH/empty-mirror.git &&
167         git init --bare "$d" &&
168         git --git-dir="$d" config http.receivepack true &&
169         git push --mirror "$HTTPD_URL"/smart/empty-mirror.git
172 test_expect_success 'push --all to repo with alternates' '
173         s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
174         d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-all.git &&
175         git clone --bare --shared "$s" "$d" &&
176         git --git-dir="$d" config http.receivepack true &&
177         git --git-dir="$d" repack -adl &&
178         git push --all "$HTTPD_URL"/smart/alternates-all.git
181 test_expect_success 'push --mirror to repo with alternates' '
182         s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
183         d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-mirror.git &&
184         git clone --bare --shared "$s" "$d" &&
185         git --git-dir="$d" config http.receivepack true &&
186         git --git-dir="$d" repack -adl &&
187         git push --mirror "$HTTPD_URL"/smart/alternates-mirror.git
190 test_expect_success TTY 'quiet push' '
191         cd "$ROOT_PATH"/test_repo_clone &&
192         test_commit quiet &&
193         test_terminal git push --quiet --no-progress 2>&1 | tee output &&
194         test_cmp /dev/null output
197 stop_httpd
198 test_done