test scripts: refactor start_httpd helper
[git/spearce.git] / t / t5540-http-push.sh
blob57a4411e983aa5634abaf263ee9c0f21db41b0c3
1 #!/bin/sh
3 # Copyright (c) 2008 Clemens Buchacher <drizzd@aon.at>
6 test_description='test http-push
8 This test runs various sanity checks on http-push.'
10 . ./test-lib.sh
12 ROOT_PATH="$PWD"
13 LIB_HTTPD_DAV=t
15 if git http-push > /dev/null 2>&1 || [ $? -eq 128 ]
16 then
17 say "skipping test, USE_CURL_MULTI is not defined"
18 test_done
19 exit
22 . "$TEST_DIRECTORY"/lib-httpd.sh
23 start_httpd
25 test_expect_success 'setup remote repository' '
26 cd "$ROOT_PATH" &&
27 mkdir test_repo &&
28 cd test_repo &&
29 git init &&
30 : >path1 &&
31 git add path1 &&
32 test_tick &&
33 git commit -m initial &&
34 cd - &&
35 git clone --bare test_repo test_repo.git &&
36 cd test_repo.git &&
37 git --bare update-server-info &&
38 mv hooks/post-update.sample hooks/post-update &&
39 cd - &&
40 mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
43 test_expect_success 'clone remote repository' '
44 cd "$ROOT_PATH" &&
45 git clone $HTTPD_URL/test_repo.git test_repo_clone
48 test_expect_failure 'push to remote repository with packed refs' '
49 cd "$ROOT_PATH"/test_repo_clone &&
50 : >path2 &&
51 git add path2 &&
52 test_tick &&
53 git commit -m path2 &&
54 HEAD=$(git rev-parse --verify HEAD) &&
55 git push &&
56 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
57 test $HEAD = $(git rev-parse --verify HEAD))
60 test_expect_success ' push to remote repository with unpacked refs' '
61 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
62 rm packed-refs &&
63 git update-ref refs/heads/master \
64 0c973ae9bd51902a28466f3850b543fa66a6aaf4) &&
65 git push &&
66 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
67 test $HEAD = $(git rev-parse --verify HEAD))
70 test_expect_success 'create and delete remote branch' '
71 cd "$ROOT_PATH"/test_repo_clone &&
72 git checkout -b dev &&
73 : >path3 &&
74 git add path3 &&
75 test_tick &&
76 git commit -m dev &&
77 git push origin dev &&
78 git fetch &&
79 git push origin :dev &&
80 git branch -d -r origin/dev &&
81 git fetch &&
82 test_must_fail git show-ref --verify refs/remotes/origin/dev
85 test_expect_success 'MKCOL sends directory names with trailing slashes' '
87 ! grep "\"MKCOL.*[^/] HTTP/[^ ]*\"" < "$HTTPD_ROOT_PATH"/access.log
91 test_expect_success 'PUT and MOVE sends object to URLs with SHA-1 hash suffix' '
93 grep -P "\"(?:PUT|MOVE) .+objects/[\da-z]{2}/[\da-z]{38}_[\da-z\-]{40} HTTP/[0-9.]+\" 20\d" \
94 < "$HTTPD_ROOT_PATH"/access.log
98 stop_httpd
100 test_done