push test: use test_config when appropriate
[git/jrn.git] / t / t5516-fetch-push.sh
blob5b89c111f1fd7c950e3536c51f52d4856d61d154
1 #!/bin/sh
3 test_description='fetching and pushing, with or without wildcard'
5 . ./test-lib.sh
7 D=`pwd`
9 mk_empty () {
10 rm -fr testrepo &&
11 mkdir testrepo &&
13 cd testrepo &&
14 git init &&
15 git config receive.denyCurrentBranch warn &&
16 mv .git/hooks .git/hooks-disabled
20 mk_test () {
21 mk_empty &&
23 for ref in "$@"
25 git push testrepo $the_first_commit:refs/$ref || {
26 echo "Oops, push refs/$ref failure"
27 exit 1
29 done &&
30 cd testrepo &&
31 for ref in "$@"
33 r=$(git show-ref -s --verify refs/$ref) &&
34 test "z$r" = "z$the_first_commit" || {
35 echo "Oops, refs/$ref is wrong"
36 exit 1
38 done &&
39 git fsck --full
43 mk_test_with_hooks() {
44 mk_test "$@" &&
46 cd testrepo &&
47 mkdir .git/hooks &&
48 cd .git/hooks &&
50 cat >pre-receive <<-'EOF' &&
51 #!/bin/sh
52 cat - >>pre-receive.actual
53 EOF
55 cat >update <<-'EOF' &&
56 #!/bin/sh
57 printf "%s %s %s\n" "$@" >>update.actual
58 EOF
60 cat >post-receive <<-'EOF' &&
61 #!/bin/sh
62 cat - >>post-receive.actual
63 EOF
65 cat >post-update <<-'EOF' &&
66 #!/bin/sh
67 for ref in "$@"
69 printf "%s\n" "$ref" >>post-update.actual
70 done
71 EOF
73 chmod +x pre-receive update post-receive post-update
77 mk_child() {
78 rm -rf "$1" &&
79 git clone testrepo "$1"
82 check_push_result () {
84 cd testrepo &&
85 it="$1" &&
86 shift
87 for ref in "$@"
89 r=$(git show-ref -s --verify refs/$ref) &&
90 test "z$r" = "z$it" || {
91 echo "Oops, refs/$ref is wrong"
92 exit 1
94 done &&
95 git fsck --full
99 test_expect_success setup '
101 >path1 &&
102 git add path1 &&
103 test_tick &&
104 git commit -a -m repo &&
105 the_first_commit=$(git show-ref -s --verify refs/heads/master) &&
107 >path2 &&
108 git add path2 &&
109 test_tick &&
110 git commit -a -m second &&
111 the_commit=$(git show-ref -s --verify refs/heads/master)
115 test_expect_success 'fetch without wildcard' '
116 mk_empty &&
118 cd testrepo &&
119 git fetch .. refs/heads/master:refs/remotes/origin/master &&
121 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
122 test "z$r" = "z$the_commit" &&
124 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
128 test_expect_success 'fetch with wildcard' '
129 mk_empty &&
131 cd testrepo &&
132 git config remote.up.url .. &&
133 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
134 git fetch up &&
136 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
137 test "z$r" = "z$the_commit" &&
139 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
143 test_expect_success 'fetch with insteadOf' '
144 mk_empty &&
146 TRASH=$(pwd)/ &&
147 cd testrepo &&
148 git config "url.$TRASH.insteadOf" trash/ &&
149 git config remote.up.url trash/. &&
150 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
151 git fetch up &&
153 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
154 test "z$r" = "z$the_commit" &&
156 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
160 test_expect_success 'fetch with pushInsteadOf (should not rewrite)' '
161 mk_empty &&
163 TRASH=$(pwd)/ &&
164 cd testrepo &&
165 git config "url.trash/.pushInsteadOf" "$TRASH" &&
166 git config remote.up.url "$TRASH." &&
167 git config remote.up.fetch "refs/heads/*:refs/remotes/origin/*" &&
168 git fetch up &&
170 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
171 test "z$r" = "z$the_commit" &&
173 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
177 test_expect_success 'push without wildcard' '
178 mk_empty &&
180 git push testrepo refs/heads/master:refs/remotes/origin/master &&
182 cd testrepo &&
183 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
184 test "z$r" = "z$the_commit" &&
186 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
190 test_expect_success 'push with wildcard' '
191 mk_empty &&
193 git push testrepo "refs/heads/*:refs/remotes/origin/*" &&
195 cd testrepo &&
196 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
197 test "z$r" = "z$the_commit" &&
199 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
203 test_expect_success 'push with insteadOf' '
204 mk_empty &&
205 TRASH="$(pwd)/" &&
206 test_config "url.$TRASH.insteadOf" trash/ &&
207 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
209 cd testrepo &&
210 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
211 test "z$r" = "z$the_commit" &&
213 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
217 test_expect_success 'push with pushInsteadOf' '
218 mk_empty &&
219 TRASH="$(pwd)/" &&
220 test_config "url.$TRASH.pushInsteadOf" trash/ &&
221 git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
223 cd testrepo &&
224 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
225 test "z$r" = "z$the_commit" &&
227 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
231 test_expect_success 'push with pushInsteadOf and explicit pushurl (pushInsteadOf should not rewrite)' '
232 mk_empty &&
233 TRASH="$(pwd)/" &&
234 test_config "url.trash2/.pushInsteadOf" trash/ &&
235 test_config remote.r.url trash/wrong &&
236 test_config remote.r.pushurl "$TRASH/testrepo" &&
237 git push r refs/heads/master:refs/remotes/origin/master &&
239 cd testrepo &&
240 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
241 test "z$r" = "z$the_commit" &&
243 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
247 test_expect_success 'push with matching heads' '
249 mk_test heads/master &&
250 git push testrepo &&
251 check_push_result $the_commit heads/master
255 test_expect_success 'push with matching heads on the command line' '
257 mk_test heads/master &&
258 git push testrepo : &&
259 check_push_result $the_commit heads/master
263 test_expect_success 'failed (non-fast-forward) push with matching heads' '
265 mk_test heads/master &&
266 git push testrepo : &&
267 git commit --amend -massaged &&
268 test_must_fail git push testrepo &&
269 check_push_result $the_commit heads/master &&
270 git reset --hard $the_commit
274 test_expect_success 'push --force with matching heads' '
276 mk_test heads/master &&
277 git push testrepo : &&
278 git commit --amend -massaged &&
279 git push --force testrepo &&
280 ! check_push_result $the_commit heads/master &&
281 git reset --hard $the_commit
285 test_expect_success 'push with matching heads and forced update' '
287 mk_test heads/master &&
288 git push testrepo : &&
289 git commit --amend -massaged &&
290 git push testrepo +: &&
291 ! check_push_result $the_commit heads/master &&
292 git reset --hard $the_commit
296 test_expect_success 'push with no ambiguity (1)' '
298 mk_test heads/master &&
299 git push testrepo master:master &&
300 check_push_result $the_commit heads/master
304 test_expect_success 'push with no ambiguity (2)' '
306 mk_test remotes/origin/master &&
307 git push testrepo master:origin/master &&
308 check_push_result $the_commit remotes/origin/master
312 test_expect_success 'push with colon-less refspec, no ambiguity' '
314 mk_test heads/master heads/t/master &&
315 git branch -f t/master master &&
316 git push testrepo master &&
317 check_push_result $the_commit heads/master &&
318 check_push_result $the_first_commit heads/t/master
322 test_expect_success 'push with weak ambiguity (1)' '
324 mk_test heads/master remotes/origin/master &&
325 git push testrepo master:master &&
326 check_push_result $the_commit heads/master &&
327 check_push_result $the_first_commit remotes/origin/master
331 test_expect_success 'push with weak ambiguity (2)' '
333 mk_test heads/master remotes/origin/master remotes/another/master &&
334 git push testrepo master:master &&
335 check_push_result $the_commit heads/master &&
336 check_push_result $the_first_commit remotes/origin/master remotes/another/master
340 test_expect_success 'push with ambiguity' '
342 mk_test heads/frotz tags/frotz &&
343 if git push testrepo master:frotz
344 then
345 echo "Oops, should have failed"
346 false
347 else
348 check_push_result $the_first_commit heads/frotz tags/frotz
353 test_expect_success 'push with colon-less refspec (1)' '
355 mk_test heads/frotz tags/frotz &&
356 git branch -f frotz master &&
357 git push testrepo frotz &&
358 check_push_result $the_commit heads/frotz &&
359 check_push_result $the_first_commit tags/frotz
363 test_expect_success 'push with colon-less refspec (2)' '
365 mk_test heads/frotz tags/frotz &&
366 if git show-ref --verify -q refs/heads/frotz
367 then
368 git branch -D frotz
369 fi &&
370 git tag -f frotz &&
371 git push -f testrepo frotz &&
372 check_push_result $the_commit tags/frotz &&
373 check_push_result $the_first_commit heads/frotz
377 test_expect_success 'push with colon-less refspec (3)' '
379 mk_test &&
380 if git show-ref --verify -q refs/tags/frotz
381 then
382 git tag -d frotz
383 fi &&
384 git branch -f frotz master &&
385 git push testrepo frotz &&
386 check_push_result $the_commit heads/frotz &&
387 test 1 = $( cd testrepo && git show-ref | wc -l )
390 test_expect_success 'push with colon-less refspec (4)' '
392 mk_test &&
393 if git show-ref --verify -q refs/heads/frotz
394 then
395 git branch -D frotz
396 fi &&
397 git tag -f frotz &&
398 git push testrepo frotz &&
399 check_push_result $the_commit tags/frotz &&
400 test 1 = $( cd testrepo && git show-ref | wc -l )
404 test_expect_success 'push head with non-existent, incomplete dest' '
406 mk_test &&
407 git push testrepo master:branch &&
408 check_push_result $the_commit heads/branch
412 test_expect_success 'push tag with non-existent, incomplete dest' '
414 mk_test &&
415 git tag -f v1.0 &&
416 git push testrepo v1.0:tag &&
417 check_push_result $the_commit tags/tag
421 test_expect_success 'push sha1 with non-existent, incomplete dest' '
423 mk_test &&
424 test_must_fail git push testrepo `git rev-parse master`:foo
428 test_expect_success 'push ref expression with non-existent, incomplete dest' '
430 mk_test &&
431 test_must_fail git push testrepo master^:branch
435 test_expect_success 'push with HEAD' '
437 mk_test heads/master &&
438 git checkout master &&
439 git push testrepo HEAD &&
440 check_push_result $the_commit heads/master
444 test_expect_success 'push with HEAD nonexisting at remote' '
446 mk_test heads/master &&
447 git checkout -b local master &&
448 git push testrepo HEAD &&
449 check_push_result $the_commit heads/local
452 test_expect_success 'push with +HEAD' '
454 mk_test heads/master &&
455 git checkout master &&
456 git branch -D local &&
457 git checkout -b local &&
458 git push testrepo master local &&
459 check_push_result $the_commit heads/master &&
460 check_push_result $the_commit heads/local &&
462 # Without force rewinding should fail
463 git reset --hard HEAD^ &&
464 test_must_fail git push testrepo HEAD &&
465 check_push_result $the_commit heads/local &&
467 # With force rewinding should succeed
468 git push testrepo +HEAD &&
469 check_push_result $the_first_commit heads/local
473 test_expect_success 'push HEAD with non-existent, incomplete dest' '
475 mk_test &&
476 git checkout master &&
477 git push testrepo HEAD:branch &&
478 check_push_result $the_commit heads/branch
482 test_expect_success 'push with config remote.*.push = HEAD' '
484 mk_test heads/local &&
485 git checkout master &&
486 git branch -f local $the_commit &&
488 cd testrepo &&
489 git checkout local &&
490 git reset --hard $the_first_commit
491 ) &&
492 test_config remote.there.url testrepo &&
493 test_config remote.there.push HEAD &&
494 test_config branch.master.remote there &&
495 git push &&
496 check_push_result $the_commit heads/master &&
497 check_push_result $the_first_commit heads/local
500 test_expect_success 'push with config remote.*.pushurl' '
502 mk_test heads/master &&
503 git checkout master &&
504 test_config remote.there.url test2repo &&
505 test_config remote.there.pushurl testrepo &&
506 git push there &&
507 check_push_result $the_commit heads/master
510 test_expect_success 'push with dry-run' '
512 mk_test heads/master &&
514 cd testrepo &&
515 old_commit=$(git show-ref -s --verify refs/heads/master)
516 ) &&
517 git push --dry-run testrepo &&
518 check_push_result $old_commit heads/master
521 test_expect_success 'push updates local refs' '
523 mk_test heads/master &&
524 mk_child child &&
526 cd child &&
527 git pull .. master &&
528 git push &&
529 test $(git rev-parse master) = \
530 $(git rev-parse remotes/origin/master)
535 test_expect_success 'push updates up-to-date local refs' '
537 mk_test heads/master &&
538 mk_child child1 &&
539 mk_child child2 &&
540 (cd child1 && git pull .. master && git push) &&
542 cd child2 &&
543 git pull ../child1 master &&
544 git push &&
545 test $(git rev-parse master) = \
546 $(git rev-parse remotes/origin/master)
551 test_expect_success 'push preserves up-to-date packed refs' '
553 mk_test heads/master &&
554 mk_child child &&
556 cd child &&
557 git push &&
558 ! test -f .git/refs/remotes/origin/master
563 test_expect_success 'push does not update local refs on failure' '
565 mk_test heads/master &&
566 mk_child child &&
567 mkdir testrepo/.git/hooks &&
568 echo "#!/no/frobnication/today" >testrepo/.git/hooks/pre-receive &&
569 chmod +x testrepo/.git/hooks/pre-receive &&
571 cd child &&
572 git pull .. master
573 test_must_fail git push &&
574 test $(git rev-parse master) != \
575 $(git rev-parse remotes/origin/master)
580 test_expect_success 'allow deleting an invalid remote ref' '
582 mk_test heads/master &&
583 rm -f testrepo/.git/objects/??/* &&
584 git push testrepo :refs/heads/master &&
585 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
589 test_expect_success 'pushing valid refs triggers post-receive and post-update hooks' '
590 mk_test_with_hooks heads/master heads/next &&
591 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
592 newmaster=$(git show-ref -s --verify refs/heads/master) &&
593 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
594 newnext=$_z40 &&
595 git push testrepo refs/heads/master:refs/heads/master :refs/heads/next &&
597 cd testrepo/.git &&
598 cat >pre-receive.expect <<-EOF &&
599 $orgmaster $newmaster refs/heads/master
600 $orgnext $newnext refs/heads/next
603 cat >update.expect <<-EOF &&
604 refs/heads/master $orgmaster $newmaster
605 refs/heads/next $orgnext $newnext
608 cat >post-receive.expect <<-EOF &&
609 $orgmaster $newmaster refs/heads/master
610 $orgnext $newnext refs/heads/next
613 cat >post-update.expect <<-EOF &&
614 refs/heads/master
615 refs/heads/next
618 test_cmp pre-receive.expect pre-receive.actual &&
619 test_cmp update.expect update.actual &&
620 test_cmp post-receive.expect post-receive.actual &&
621 test_cmp post-update.expect post-update.actual
625 test_expect_success 'deleting dangling ref triggers hooks with correct args' '
626 mk_test_with_hooks heads/master &&
627 rm -f testrepo/.git/objects/??/* &&
628 git push testrepo :refs/heads/master &&
630 cd testrepo/.git &&
631 cat >pre-receive.expect <<-EOF &&
632 $_z40 $_z40 refs/heads/master
635 cat >update.expect <<-EOF &&
636 refs/heads/master $_z40 $_z40
639 cat >post-receive.expect <<-EOF &&
640 $_z40 $_z40 refs/heads/master
643 cat >post-update.expect <<-EOF &&
644 refs/heads/master
647 test_cmp pre-receive.expect pre-receive.actual &&
648 test_cmp update.expect update.actual &&
649 test_cmp post-receive.expect post-receive.actual &&
650 test_cmp post-update.expect post-update.actual
654 test_expect_success 'deletion of a non-existent ref is not fed to post-receive and post-update hooks' '
655 mk_test_with_hooks heads/master &&
656 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
657 newmaster=$(git show-ref -s --verify refs/heads/master) &&
658 git push testrepo master :refs/heads/nonexistent &&
660 cd testrepo/.git &&
661 cat >pre-receive.expect <<-EOF &&
662 $orgmaster $newmaster refs/heads/master
663 $_z40 $_z40 refs/heads/nonexistent
666 cat >update.expect <<-EOF &&
667 refs/heads/master $orgmaster $newmaster
668 refs/heads/nonexistent $_z40 $_z40
671 cat >post-receive.expect <<-EOF &&
672 $orgmaster $newmaster refs/heads/master
675 cat >post-update.expect <<-EOF &&
676 refs/heads/master
679 test_cmp pre-receive.expect pre-receive.actual &&
680 test_cmp update.expect update.actual &&
681 test_cmp post-receive.expect post-receive.actual &&
682 test_cmp post-update.expect post-update.actual
686 test_expect_success 'deletion of a non-existent ref alone does trigger post-receive and post-update hooks' '
687 mk_test_with_hooks heads/master &&
688 git push testrepo :refs/heads/nonexistent &&
690 cd testrepo/.git &&
691 cat >pre-receive.expect <<-EOF &&
692 $_z40 $_z40 refs/heads/nonexistent
695 cat >update.expect <<-EOF &&
696 refs/heads/nonexistent $_z40 $_z40
699 test_cmp pre-receive.expect pre-receive.actual &&
700 test_cmp update.expect update.actual &&
701 test_path_is_missing post-receive.actual &&
702 test_path_is_missing post-update.actual
706 test_expect_success 'mixed ref updates, deletes, invalid deletes trigger hooks with correct input' '
707 mk_test_with_hooks heads/master heads/next heads/pu &&
708 orgmaster=$(cd testrepo && git show-ref -s --verify refs/heads/master) &&
709 newmaster=$(git show-ref -s --verify refs/heads/master) &&
710 orgnext=$(cd testrepo && git show-ref -s --verify refs/heads/next) &&
711 newnext=$_z40 &&
712 orgpu=$(cd testrepo && git show-ref -s --verify refs/heads/pu) &&
713 newpu=$(git show-ref -s --verify refs/heads/master) &&
714 git push testrepo refs/heads/master:refs/heads/master \
715 refs/heads/master:refs/heads/pu :refs/heads/next \
716 :refs/heads/nonexistent &&
718 cd testrepo/.git &&
719 cat >pre-receive.expect <<-EOF &&
720 $orgmaster $newmaster refs/heads/master
721 $orgnext $newnext refs/heads/next
722 $orgpu $newpu refs/heads/pu
723 $_z40 $_z40 refs/heads/nonexistent
726 cat >update.expect <<-EOF &&
727 refs/heads/master $orgmaster $newmaster
728 refs/heads/next $orgnext $newnext
729 refs/heads/pu $orgpu $newpu
730 refs/heads/nonexistent $_z40 $_z40
733 cat >post-receive.expect <<-EOF &&
734 $orgmaster $newmaster refs/heads/master
735 $orgnext $newnext refs/heads/next
736 $orgpu $newpu refs/heads/pu
739 cat >post-update.expect <<-EOF &&
740 refs/heads/master
741 refs/heads/next
742 refs/heads/pu
745 test_cmp pre-receive.expect pre-receive.actual &&
746 test_cmp update.expect update.actual &&
747 test_cmp post-receive.expect post-receive.actual &&
748 test_cmp post-update.expect post-update.actual
752 test_expect_success 'allow deleting a ref using --delete' '
753 mk_test heads/master &&
754 (cd testrepo && git config receive.denyDeleteCurrent warn) &&
755 git push testrepo --delete master &&
756 (cd testrepo && test_must_fail git rev-parse --verify refs/heads/master)
759 test_expect_success 'allow deleting a tag using --delete' '
760 mk_test heads/master &&
761 git tag -a -m dummy_message deltag heads/master &&
762 git push testrepo --tags &&
763 (cd testrepo && git rev-parse --verify -q refs/tags/deltag) &&
764 git push testrepo --delete tag deltag &&
765 (cd testrepo && test_must_fail git rev-parse --verify refs/tags/deltag)
768 test_expect_success 'push --delete without args aborts' '
769 mk_test heads/master &&
770 test_must_fail git push testrepo --delete
773 test_expect_success 'push --delete refuses src:dest refspecs' '
774 mk_test heads/master &&
775 test_must_fail git push testrepo --delete master:foo
778 test_expect_success 'warn on push to HEAD of non-bare repository' '
779 mk_test heads/master &&
781 cd testrepo &&
782 git checkout master &&
783 git config receive.denyCurrentBranch warn
784 ) &&
785 git push testrepo master 2>stderr &&
786 grep "warning: updating the current branch" stderr
789 test_expect_success 'deny push to HEAD of non-bare repository' '
790 mk_test heads/master &&
792 cd testrepo &&
793 git checkout master &&
794 git config receive.denyCurrentBranch true
795 ) &&
796 test_must_fail git push testrepo master
799 test_expect_success 'allow push to HEAD of bare repository (bare)' '
800 mk_test heads/master &&
802 cd testrepo &&
803 git checkout master &&
804 git config receive.denyCurrentBranch true &&
805 git config core.bare true
806 ) &&
807 git push testrepo master 2>stderr &&
808 ! grep "warning: updating the current branch" stderr
811 test_expect_success 'allow push to HEAD of non-bare repository (config)' '
812 mk_test heads/master &&
814 cd testrepo &&
815 git checkout master &&
816 git config receive.denyCurrentBranch false
817 ) &&
818 git push testrepo master 2>stderr &&
819 ! grep "warning: updating the current branch" stderr
822 test_expect_success 'fetch with branches' '
823 mk_empty &&
824 git branch second $the_first_commit &&
825 git checkout second &&
826 echo ".." > testrepo/.git/branches/branch1 &&
828 cd testrepo &&
829 git fetch branch1 &&
830 r=$(git show-ref -s --verify refs/heads/branch1) &&
831 test "z$r" = "z$the_commit" &&
832 test 1 = $(git for-each-ref refs/heads | wc -l)
833 ) &&
834 git checkout master
837 test_expect_success 'fetch with branches containing #' '
838 mk_empty &&
839 echo "..#second" > testrepo/.git/branches/branch2 &&
841 cd testrepo &&
842 git fetch branch2 &&
843 r=$(git show-ref -s --verify refs/heads/branch2) &&
844 test "z$r" = "z$the_first_commit" &&
845 test 1 = $(git for-each-ref refs/heads | wc -l)
846 ) &&
847 git checkout master
850 test_expect_success 'push with branches' '
851 mk_empty &&
852 git checkout second &&
853 echo "testrepo" > .git/branches/branch1 &&
854 git push branch1 &&
856 cd testrepo &&
857 r=$(git show-ref -s --verify refs/heads/master) &&
858 test "z$r" = "z$the_first_commit" &&
859 test 1 = $(git for-each-ref refs/heads | wc -l)
863 test_expect_success 'push with branches containing #' '
864 mk_empty &&
865 echo "testrepo#branch3" > .git/branches/branch2 &&
866 git push branch2 &&
868 cd testrepo &&
869 r=$(git show-ref -s --verify refs/heads/branch3) &&
870 test "z$r" = "z$the_first_commit" &&
871 test 1 = $(git for-each-ref refs/heads | wc -l)
872 ) &&
873 git checkout master
876 test_expect_success 'push into aliased refs (consistent)' '
877 mk_test heads/master &&
878 mk_child child1 &&
879 mk_child child2 &&
881 cd child1 &&
882 git branch foo &&
883 git symbolic-ref refs/heads/bar refs/heads/foo
884 git config receive.denyCurrentBranch false
885 ) &&
887 cd child2 &&
888 >path2 &&
889 git add path2 &&
890 test_tick &&
891 git commit -a -m child2 &&
892 git branch foo &&
893 git branch bar &&
894 git push ../child1 foo bar
898 test_expect_success 'push into aliased refs (inconsistent)' '
899 mk_test heads/master &&
900 mk_child child1 &&
901 mk_child child2 &&
903 cd child1 &&
904 git branch foo &&
905 git symbolic-ref refs/heads/bar refs/heads/foo
906 git config receive.denyCurrentBranch false
907 ) &&
909 cd child2 &&
910 >path2 &&
911 git add path2 &&
912 test_tick &&
913 git commit -a -m child2 &&
914 git branch foo &&
915 >path3 &&
916 git add path3 &&
917 test_tick &&
918 git commit -a -m child2 &&
919 git branch bar &&
920 test_must_fail git push ../child1 foo bar 2>stderr &&
921 grep "refusing inconsistent update" stderr
925 test_expect_success 'push requires --force to update lightweight tag' '
926 mk_test heads/master &&
927 mk_child child1 &&
928 mk_child child2 &&
930 cd child1 &&
931 git tag Tag &&
932 git push ../child2 Tag &&
933 git push ../child2 Tag &&
934 >file1 &&
935 git add file1 &&
936 git commit -m "file1" &&
937 git tag -f Tag &&
938 test_must_fail git push ../child2 Tag &&
939 git push --force ../child2 Tag &&
940 git tag -f Tag &&
941 test_must_fail git push ../child2 Tag HEAD~ &&
942 git push --force ../child2 Tag
946 test_expect_success 'push --porcelain' '
947 mk_empty &&
948 echo >.git/foo "To testrepo" &&
949 echo >>.git/foo "* refs/heads/master:refs/remotes/origin/master [new branch]" &&
950 echo >>.git/foo "Done" &&
951 git push >.git/bar --porcelain testrepo refs/heads/master:refs/remotes/origin/master &&
953 cd testrepo &&
954 r=$(git show-ref -s --verify refs/remotes/origin/master) &&
955 test "z$r" = "z$the_commit" &&
956 test 1 = $(git for-each-ref refs/remotes/origin | wc -l)
957 ) &&
958 test_cmp .git/foo .git/bar
961 test_expect_success 'push --porcelain bad url' '
962 mk_empty &&
963 test_must_fail git push >.git/bar --porcelain asdfasdfasd refs/heads/master:refs/remotes/origin/master &&
964 test_must_fail grep -q Done .git/bar
967 test_expect_success 'push --porcelain rejected' '
968 mk_empty &&
969 git push testrepo refs/heads/master:refs/remotes/origin/master &&
970 (cd testrepo &&
971 git reset --hard origin/master^
972 git config receive.denyCurrentBranch true) &&
974 echo >.git/foo "To testrepo" &&
975 echo >>.git/foo "! refs/heads/master:refs/heads/master [remote rejected] (branch is currently checked out)" &&
977 test_must_fail git push >.git/bar --porcelain testrepo refs/heads/master:refs/heads/master &&
978 test_cmp .git/foo .git/bar
981 test_expect_success 'push --porcelain --dry-run rejected' '
982 mk_empty &&
983 git push testrepo refs/heads/master:refs/remotes/origin/master &&
984 (cd testrepo &&
985 git reset --hard origin/master
986 git config receive.denyCurrentBranch true) &&
988 echo >.git/foo "To testrepo" &&
989 echo >>.git/foo "! refs/heads/master^:refs/heads/master [rejected] (non-fast-forward)" &&
990 echo >>.git/foo "Done" &&
992 test_must_fail git push >.git/bar --porcelain --dry-run testrepo refs/heads/master^:refs/heads/master &&
993 test_cmp .git/foo .git/bar
996 test_expect_success 'push --prune' '
997 mk_test heads/master heads/second heads/foo heads/bar &&
998 git push --prune testrepo &&
999 check_push_result $the_commit heads/master &&
1000 check_push_result $the_first_commit heads/second &&
1001 ! check_push_result $the_first_commit heads/foo heads/bar
1004 test_expect_success 'push --prune refspec' '
1005 mk_test tmp/master tmp/second tmp/foo tmp/bar &&
1006 git push --prune testrepo "refs/heads/*:refs/tmp/*" &&
1007 check_push_result $the_commit tmp/master &&
1008 check_push_result $the_first_commit tmp/second &&
1009 ! check_push_result $the_first_commit tmp/foo tmp/bar
1012 for configsection in transfer receive
1014 test_expect_success "push to update a ref hidden by $configsection.hiderefs" '
1015 mk_test heads/master hidden/one hidden/two hidden/three &&
1017 cd testrepo &&
1018 git config $configsection.hiderefs refs/hidden
1019 ) &&
1021 # push to unhidden ref succeeds normally
1022 git push testrepo master:refs/heads/master &&
1023 check_push_result $the_commit heads/master &&
1025 # push to update a hidden ref should fail
1026 test_must_fail git push testrepo master:refs/hidden/one &&
1027 check_push_result $the_first_commit hidden/one &&
1029 # push to delete a hidden ref should fail
1030 test_must_fail git push testrepo :refs/hidden/two &&
1031 check_push_result $the_first_commit hidden/two &&
1033 # idempotent push to update a hidden ref should fail
1034 test_must_fail git push testrepo $the_first_commit:refs/hidden/three &&
1035 check_push_result $the_first_commit hidden/three
1037 done
1039 test_done