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.'
14 LIB_HTTPD_PORT
=${LIB_HTTPD_PORT-'5540'}
16 if git http-push
> /dev
/null
2>&1 ||
[ $?
-eq 128 ]
18 say
"skipping test, USE_CURL_MULTI is not defined"
22 .
"$TEST_DIRECTORY"/lib-httpd.sh
25 test_expect_success
'setup remote repository' '
33 git commit -m initial &&
35 git clone --bare test_repo test_repo.git &&
37 git --bare update-server-info &&
38 mv hooks/post-update.sample hooks/post-update &&
40 mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
43 test_expect_success
'clone remote repository' '
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 &&
53 git commit -m path2 &&
54 HEAD=$(git rev-parse --verify HEAD) &&
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 &&
63 git update-ref refs/heads/master \
64 0c973ae9bd51902a28466f3850b543fa66a6aaf4) &&
66 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
67 test $HEAD = $(git rev-parse --verify HEAD))
70 test_expect_failure
'http-push fetches unpacked objects' '
71 cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
72 "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_unpacked.git &&
74 git clone $HTTPD_URL/test_repo_unpacked.git \
75 "$ROOT_PATH"/fetch_unpacked &&
77 # By reset, we force git to retrieve the object
78 (cd "$ROOT_PATH"/fetch_unpacked &&
79 git reset --hard HEAD^ &&
80 git remote rm origin &&
81 git reflog expire --expire=0 --all &&
83 git push -f -v $HTTPD_URL/test_repo_unpacked.git master)
86 test_expect_success
'create and delete remote branch' '
87 cd "$ROOT_PATH"/test_repo_clone &&
88 git checkout -b dev &&
93 git push origin dev &&
95 git push origin :dev &&
96 git branch -d -r origin/dev &&
98 test_must_fail git show-ref --verify refs/remotes/origin/dev
101 test_expect_success
'MKCOL sends directory names with trailing slashes' '
103 ! grep "\"MKCOL.*[^/] HTTP/[^ ]*\"" < "$HTTPD_ROOT_PATH"/access.log
110 x38
="$x5$x5$x5$x5$x5$x5$x5$x1$x1$x1"
113 test_expect_success
'PUT and MOVE sends object to URLs with SHA-1 hash suffix' '
114 sed -e "s/PUT /OP /" -e "s/MOVE /OP /" "$HTTPD_ROOT_PATH"/access.log |
115 grep -e "\"OP .*/objects/$x2/${x38}_$x40 HTTP/[.0-9]*\" 20[0-9] "