3 # Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
6 test_description
='test smart pushing over http via http-backend'
10 .
"$TEST_DIRECTORY"/lib-gpg.sh
11 .
"$TEST_DIRECTORY"/lib-httpd.sh
12 .
"$TEST_DIRECTORY"/lib-terminal.sh
15 test_expect_success
'setup remote repository' '
23 git commit -m initial &&
25 git clone --bare test_repo test_repo.git &&
27 git config http.receivepack true &&
28 git config core.logallrefupdates true &&
29 ORIG_HEAD=$(git rev-parse --verify HEAD) &&
31 mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
37 GET /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
38 POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
40 test_expect_success
'no empty path components' '
41 # Clear the log, so that it does not affect the "used receive-pack
42 # service" test which reads the log too.
43 test_when_finished ">\"\$HTTPD_ROOT_PATH\"/access.log" &&
45 # In the URL, add a trailing slash, and see if git appends yet another
48 git clone $HTTPD_URL/smart/test_repo.git/ test_repo_clone &&
50 # NEEDSWORK: If the overspecification of the expected result is reduced, we
51 # might be able to run this test in all protocol versions.
52 if test -z "$GIT_TEST_PROTOCOL_VERSION"
58 test_expect_success
'clone remote repository' '
59 rm -rf test_repo_clone &&
60 git clone $HTTPD_URL/smart/test_repo.git test_repo_clone &&
62 cd test_repo_clone && git config push.default matching
66 test_expect_success
'push to remote repository (standard)' '
67 cd "$ROOT_PATH"/test_repo_clone &&
71 git commit -m path2 &&
72 HEAD=$(git rev-parse --verify HEAD) &&
73 GIT_TRACE_CURL=true git push -v -v 2>err &&
74 ! grep "Expect: 100-continue" err &&
75 grep "POST git-receive-pack ([0-9]* bytes)" err &&
76 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
77 test $HEAD = $(git rev-parse --verify HEAD))
80 test_expect_success
'push already up-to-date' '
84 test_expect_success
'create and delete remote branch' '
85 cd "$ROOT_PATH"/test_repo_clone &&
86 git checkout -b dev &&
91 git push origin dev &&
92 git push origin :dev &&
93 test_must_fail git show-ref --verify refs/remotes/origin/dev
96 cat >"$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update" <<EOF
100 chmod a
+x
"$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update"
103 remote: error: hook declined to update refs/heads/dev2
104 To http://127.0.0.1:$LIB_HTTPD_PORT/smart/test_repo.git
105 ! [remote rejected] dev2 -> dev2 (hook declined)
106 error: failed to push some refs to 'http://127.0.0.1:$LIB_HTTPD_PORT/smart/test_repo.git'
109 test_expect_success
'rejected update prints status' '
110 cd "$ROOT_PATH"/test_repo_clone &&
111 git checkout -b dev2 &&
115 git commit -m dev2 &&
116 test_must_fail git push origin dev2 2>act &&
117 sed -e "/^remote: /s/ *$//" <act >cmp &&
120 rm -f "$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git/hooks/update"
123 GET /smart/test_repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
124 POST /smart/test_repo.git/git-upload-pack HTTP/1.1 200
125 GET /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
126 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
127 GET /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
128 GET /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
129 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
130 GET /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
131 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
132 GET /smart/test_repo.git/info/refs?service=git-receive-pack HTTP/1.1 200
133 POST /smart/test_repo.git/git-receive-pack HTTP/1.1 200
135 test_expect_success
'used receive-pack service' '
136 # NEEDSWORK: If the overspecification of the expected result is reduced, we
137 # might be able to run this test in all protocol versions.
138 if test -z "$GIT_TEST_PROTOCOL_VERSION"
144 test_http_push_nonff
"$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
145 "$ROOT_PATH"/test_repo_clone master success
147 test_expect_success
'push fails for non-fast-forward refs unmatched by remote helper' '
148 # create a dissimilarly-named remote ref so that git is unable to match the
149 # two refs (viz. local, remote) unless an explicit refspec is provided.
150 git push origin master:retsam &&
152 echo "change changed" > path2 &&
153 git commit -a -m path2 --amend &&
155 # push master too; this ensures there is at least one '"'push'"' command to
156 # the remote helper and triggers interaction with the helper.
157 test_must_fail git push -v origin +master master:retsam >output 2>&1'
159 test_expect_success
'push fails for non-fast-forward refs unmatched by remote helper: remote output' '
160 grep "^ + [a-f0-9]*\.\.\.[a-f0-9]* *master -> master (forced update)$" output &&
161 grep "^ ! \[rejected\] *master -> retsam (non-fast-forward)$" output
164 test_expect_success
'push fails for non-fast-forward refs unmatched by remote helper: our output' '
165 test_i18ngrep "Updates were rejected because" \
169 test_expect_success
'push (chunked)' '
170 git checkout master &&
171 test_commit commit path3 &&
172 HEAD=$(git rev-parse --verify HEAD) &&
173 test_config http.postbuffer 4 &&
174 git push -v -v origin $BRANCH 2>err &&
175 grep "POST git-receive-pack (chunked)" err &&
176 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
177 test $HEAD = $(git rev-parse --verify HEAD))
180 test_expect_success
'push --all can push to empty repo' '
181 d=$HTTPD_DOCUMENT_ROOT_PATH/empty-all.git &&
182 git init --bare "$d" &&
183 git --git-dir="$d" config http.receivepack true &&
184 git push --all "$HTTPD_URL"/smart/empty-all.git
187 test_expect_success
'push --mirror can push to empty repo' '
188 d=$HTTPD_DOCUMENT_ROOT_PATH/empty-mirror.git &&
189 git init --bare "$d" &&
190 git --git-dir="$d" config http.receivepack true &&
191 git push --mirror "$HTTPD_URL"/smart/empty-mirror.git
194 test_expect_success
'push --all to repo with alternates' '
195 s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
196 d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-all.git &&
197 git clone --bare --shared "$s" "$d" &&
198 git --git-dir="$d" config http.receivepack true &&
199 git --git-dir="$d" repack -adl &&
200 git push --all "$HTTPD_URL"/smart/alternates-all.git
203 test_expect_success
'push --mirror to repo with alternates' '
204 s=$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git &&
205 d=$HTTPD_DOCUMENT_ROOT_PATH/alternates-mirror.git &&
206 git clone --bare --shared "$s" "$d" &&
207 git --git-dir="$d" config http.receivepack true &&
208 git --git-dir="$d" repack -adl &&
209 git push --mirror "$HTTPD_URL"/smart/alternates-mirror.git
212 test_expect_success TTY
'push shows progress when stderr is a tty' '
213 cd "$ROOT_PATH"/test_repo_clone &&
215 test_terminal git push >output 2>&1 &&
216 test_i18ngrep "^Writing objects" output
219 test_expect_success TTY
'push --quiet silences status and progress' '
220 cd "$ROOT_PATH"/test_repo_clone &&
222 test_terminal git push --quiet >output 2>&1 &&
223 test_must_be_empty output
226 test_expect_success TTY
'push --no-progress silences progress but not status' '
227 cd "$ROOT_PATH"/test_repo_clone &&
228 test_commit no-progress &&
229 test_terminal git push --no-progress >output 2>&1 &&
230 test_i18ngrep "^To http" output &&
231 test_i18ngrep ! "^Writing objects" output
234 test_expect_success
'push --progress shows progress to non-tty' '
235 cd "$ROOT_PATH"/test_repo_clone &&
236 test_commit progress &&
237 git push --progress >output 2>&1 &&
238 test_i18ngrep "^To http" output &&
239 test_i18ngrep "^Writing objects" output
242 test_expect_success
'http push gives sane defaults to reflog' '
243 cd "$ROOT_PATH"/test_repo_clone &&
244 test_commit reflog-test &&
245 git push "$HTTPD_URL"/smart/test_repo.git &&
246 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
247 log -g -1 --format="%gn <%ge>" >actual &&
248 echo "anonymous <anonymous@http.127.0.0.1>" >expect &&
249 test_cmp expect actual
252 test_expect_success
'http push respects GIT_COMMITTER_* in reflog' '
253 cd "$ROOT_PATH"/test_repo_clone &&
254 test_commit custom-reflog-test &&
255 git push "$HTTPD_URL"/smart_custom_env/test_repo.git &&
256 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
257 log -g -1 --format="%gn <%ge>" >actual &&
258 echo "Custom User <custom@example.com>" >expect &&
259 test_cmp expect actual
262 test_expect_success
'push over smart http with auth' '
263 cd "$ROOT_PATH/test_repo_clone" &&
264 echo push-auth-test >expect &&
265 test_commit push-auth-test &&
266 set_askpass user@host pass@host &&
267 git push "$HTTPD_URL"/auth/smart/test_repo.git &&
268 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
269 log -1 --format=%s >actual &&
270 expect_askpass both user@host &&
271 test_cmp expect actual
274 test_expect_success
'push to auth-only-for-push repo' '
275 cd "$ROOT_PATH/test_repo_clone" &&
276 echo push-half-auth >expect &&
277 test_commit push-half-auth &&
278 set_askpass user@host pass@host &&
279 git push "$HTTPD_URL"/auth-push/smart/test_repo.git &&
280 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/test_repo.git" \
281 log -1 --format=%s >actual &&
282 expect_askpass both user@host &&
283 test_cmp expect actual
286 test_expect_success
'create repo without http.receivepack set' '
288 git init half-auth &&
293 git clone --bare half-auth "$HTTPD_DOCUMENT_ROOT_PATH/half-auth.git"
296 test_expect_success
'clone via half-auth-complete does not need password' '
299 git clone "$HTTPD_URL"/half-auth-complete/smart/half-auth.git \
304 test_expect_success
'push into half-auth-complete requires password' '
305 cd "$ROOT_PATH/half-auth-clone" &&
308 set_askpass user@host pass@host &&
309 git push "$HTTPD_URL/half-auth-complete/smart/half-auth.git" &&
310 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/half-auth.git" \
311 log -1 --format=%s >actual &&
312 expect_askpass both user@host &&
313 test_cmp expect actual
316 test_expect_success CMDLINE_LIMIT
'push 2000 tags over http' '
317 sha1=$(git rev-parse HEAD) &&
320 sed "s|.*|$sha1 refs/tags/really-long-tag-name-&|" \
322 run_with_limited_cmdline git push --mirror
325 test_expect_success GPG
'push with post-receive to inspect certificate' '
327 cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
329 write_script hooks/post-receive <<-\EOF &&
330 # discard the update list
332 # record the push certificate
333 if test -n "${GIT_PUSH_CERT-}"
335 git cat-file blob $GIT_PUSH_CERT >../push-cert
337 cat >../push-cert-status <<E_O_F
338 SIGNER=${GIT_PUSH_CERT_SIGNER-nobody}
339 KEY=${GIT_PUSH_CERT_KEY-nokey}
340 STATUS=${GIT_PUSH_CERT_STATUS-nostatus}
341 NONCE_STATUS=${GIT_PUSH_CERT_NONCE_STATUS-nononcestatus}
342 NONCE=${GIT_PUSH_CERT_NONCE-nononce}
346 git config receive.certnonceseed sekrit &&
347 git config receive.certnonceslop 30
349 cd "$ROOT_PATH/test_repo_clone" &&
350 test_commit cert-test &&
351 git push --signed "$HTTPD_URL/smart/test_repo.git" &&
353 cd "$HTTPD_DOCUMENT_ROOT_PATH" &&
355 SIGNER=C O Mitter <committer@example.com>
360 sed -n -e "s/^nonce /NONCE=/p" -e "/^$/q" push-cert
362 test_cmp expect "$HTTPD_DOCUMENT_ROOT_PATH/push-cert-status"
365 test_expect_success
'push status output scrubs password' '
366 cd "$ROOT_PATH/test_repo_clone" &&
367 git push --porcelain \
368 "$HTTPD_URL_USER_PASS/smart/test_repo.git" \
369 +HEAD:scrub >status &&
370 # should have been scrubbed down to vanilla URL
371 grep "^To $HTTPD_URL/smart/test_repo.git" status
374 test_expect_success
'colorize errors/hints' '
375 cd "$ROOT_PATH"/test_repo_clone &&
376 test_must_fail git -c color.transport=always -c color.advice=always \
377 -c color.push=always \
378 push origin origin/master^:master 2>act &&
379 test_decode_color <act >decoded &&
380 test_i18ngrep "<RED>.*rejected.*<RESET>" decoded &&
381 test_i18ngrep "<RED>error: failed to push some refs" decoded &&
382 test_i18ngrep "<YELLOW>hint: " decoded &&
383 test_i18ngrep ! "^hint: " decoded