Clean up and simplify rev_compare_tree()
[git/dscho.git] / t / t5550-http-fetch.sh
blob05b1b62cb66956bca57e1fbacac534993637bdd9
1 #!/bin/sh
3 test_description='test fetching over http'
4 . ./test-lib.sh
6 if test -n "$NO_CURL"; then
7 say 'skipping test, git built without http support'
8 test_done
9 fi
11 . "$TEST_DIRECTORY"/lib-httpd.sh
12 LIB_HTTPD_PORT=${LIB_HTTPD_PORT-'5550'}
13 start_httpd
15 test_expect_success 'setup repository' '
16 echo content >file &&
17 git add file &&
18 git commit -m one
21 test_expect_success 'create http-accessible bare repository' '
22 mkdir "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
23 (cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
24 git --bare init &&
25 echo "exec git update-server-info" >hooks/post-update &&
26 chmod +x hooks/post-update
27 ) &&
28 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
29 git push public master:master
32 test_expect_success 'clone http repository' '
33 git clone $HTTPD_URL/repo.git clone &&
34 test_cmp file clone/file
37 test_expect_success 'fetch changes via http' '
38 echo content >>file &&
39 git commit -a -m two &&
40 git push public
41 (cd clone && git pull) &&
42 test_cmp file clone/file
45 test_expect_success 'http remote detects correct HEAD' '
46 git push public master:other &&
47 (cd clone &&
48 git remote set-head origin -d &&
49 git remote set-head origin -a &&
50 git symbolic-ref refs/remotes/origin/HEAD > output &&
51 echo refs/remotes/origin/master > expect &&
52 test_cmp expect output
56 stop_httpd
57 test_done