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.'
15 if git http-push
> /dev
/null
2>&1 ||
[ $?
-eq 128 ]
17 say
"skipping test, USE_CURL_MULTI is not defined"
22 .
"$TEST_DIRECTORY"/lib-httpd.sh
24 if ! start_httpd
>&3 2>&4
26 say
"skipping test, web server setup failed"
31 test_expect_success
'setup remote repository' '
39 git commit -m initial &&
41 git clone --bare test_repo test_repo.git &&
43 git --bare update-server-info &&
44 mv hooks/post-update.sample hooks/post-update &&
46 mv test_repo.git "$HTTPD_DOCUMENT_ROOT_PATH"
49 test_expect_success
'clone remote repository' '
51 git clone $HTTPD_URL/test_repo.git test_repo_clone
54 test_expect_failure
'push to remote repository with packed refs' '
55 cd "$ROOT_PATH"/test_repo_clone &&
59 git commit -m path2 &&
60 HEAD=$(git rev-parse --verify HEAD) &&
62 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
63 test $HEAD = $(git rev-parse --verify HEAD))
66 test_expect_success
' push to remote repository with unpacked refs' '
67 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
69 git update-ref refs/heads/master \
70 0c973ae9bd51902a28466f3850b543fa66a6aaf4) &&
72 (cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&
73 test $HEAD = $(git rev-parse --verify HEAD))
76 test_expect_success
'create and delete remote branch' '
77 cd "$ROOT_PATH"/test_repo_clone &&
78 git checkout -b dev &&
83 git push origin dev &&
85 git push origin :dev &&
86 git branch -d -r origin/dev &&
88 test_must_fail git show-ref --verify refs/remotes/origin/dev
91 test_expect_success
'MKCOL sends directory names with trailing slashes' '
93 ! grep "\"MKCOL.*[^/] HTTP/[^ ]*\"" < "$HTTPD_ROOT_PATH"/access.log
100 x38
="$x5$x5$x5$x5$x5$x5$x5$x1$x1$x1"
103 test_expect_success
'PUT and MOVE sends object to URLs with SHA-1 hash suffix' '
104 sed -e "s/PUT /OP /" -e "s/MOVE /OP /" "$HTTPD_ROOT_PATH"/access.log |
105 grep -e "\"OP .*/objects/$x2/${x38}_$x40 HTTP/[.0-9]*\" 20[0-9] "