blob: b0b2684a1f879cc173bf2bc67902724ed8f25d48 [file] [log] [blame]
Linus Torvaldsbdf25142005-07-26 20:04:22 -07001#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
6test_description='See why rewinding head breaks send-pack
7
8'
9. ./test-lib.sh
10
Junio C Hamano04509732006-12-29 02:25:04 -080011cnt=64
Linus Torvaldsbdf25142005-07-26 20:04:22 -070012test_expect_success setup '
Junio C Hamano04509732006-12-29 02:25:04 -080013 test_tick &&
14 mkdir mozart mozart/is &&
15 echo "Commit #0" >mozart/is/pink &&
Junio C Hamano5be60072007-07-02 22:52:14 -070016 git update-index --add mozart/is/pink &&
17 tree=$(git write-tree) &&
18 commit=$(echo "Commit #0" | git commit-tree $tree) &&
Linus Torvaldsbdf25142005-07-26 20:04:22 -070019 zero=$commit &&
20 parent=$zero &&
Junio C Hamano04509732006-12-29 02:25:04 -080021 i=0 &&
22 while test $i -le $cnt
Linus Torvaldsbdf25142005-07-26 20:04:22 -070023 do
Junio C Hamano04509732006-12-29 02:25:04 -080024 i=$(($i+1)) &&
25 test_tick &&
26 echo "Commit #$i" >mozart/is/pink &&
Junio C Hamano5be60072007-07-02 22:52:14 -070027 git update-index --add mozart/is/pink &&
28 tree=$(git write-tree) &&
29 commit=$(echo "Commit #$i" | git commit-tree $tree -p $parent) &&
30 git update-ref refs/tags/commit$i $commit &&
Pavel Roskin4d9d62f2005-08-10 23:56:21 -040031 parent=$commit || return 1
Linus Torvaldsbdf25142005-07-26 20:04:22 -070032 done &&
Junio C Hamano5be60072007-07-02 22:52:14 -070033 git update-ref HEAD "$commit" &&
Nanako Shiraishi3604e7c2008-09-03 17:59:29 +090034 git clone ./. victim &&
Junio C Hamanoacd2a452009-02-11 02:28:03 -080035 ( cd victim && git config receive.denyCurrentBranch warn && git log ) &&
Junio C Hamano5be60072007-07-02 22:52:14 -070036 git update-ref HEAD "$zero" &&
Linus Torvaldsbdf25142005-07-26 20:04:22 -070037 parent=$zero &&
Junio C Hamano04509732006-12-29 02:25:04 -080038 i=0 &&
39 while test $i -le $cnt
Linus Torvaldsbdf25142005-07-26 20:04:22 -070040 do
Junio C Hamano04509732006-12-29 02:25:04 -080041 i=$(($i+1)) &&
42 test_tick &&
43 echo "Rebase #$i" >mozart/is/pink &&
Junio C Hamano5be60072007-07-02 22:52:14 -070044 git update-index --add mozart/is/pink &&
45 tree=$(git write-tree) &&
46 commit=$(echo "Rebase #$i" | git commit-tree $tree -p $parent) &&
47 git update-ref refs/tags/rebase$i $commit &&
Pavel Roskin4d9d62f2005-08-10 23:56:21 -040048 parent=$commit || return 1
Linus Torvaldsbdf25142005-07-26 20:04:22 -070049 done &&
Junio C Hamano5be60072007-07-02 22:52:14 -070050 git update-ref HEAD "$commit" &&
Linus Torvaldsbdf25142005-07-26 20:04:22 -070051 echo Rebase &&
Junio C Hamano5be60072007-07-02 22:52:14 -070052 git log'
Linus Torvaldsbdf25142005-07-26 20:04:22 -070053
Junio C Hamano04509732006-12-29 02:25:04 -080054test_expect_success 'pack the source repository' '
55 git repack -a -d &&
Junio C Hamano026aa932007-01-21 21:29:44 -080056 git prune
Junio C Hamano04509732006-12-29 02:25:04 -080057'
58
59test_expect_success 'pack the destination repository' '
Junio C Hamano2f334152009-02-09 13:39:52 -080060 (
Junio C Hamano04509732006-12-29 02:25:04 -080061 cd victim &&
62 git repack -a -d &&
Junio C Hamano2f334152009-02-09 13:39:52 -080063 git prune
64 )
Junio C Hamano04509732006-12-29 02:25:04 -080065'
66
Junio C Hamano2f334152009-02-09 13:39:52 -080067test_expect_success 'refuse pushing rewound head without --force' '
68 pushed_head=$(git rev-parse --verify master) &&
69 victim_orig=$(cd victim && git rev-parse --verify master) &&
70 test_must_fail git send-pack ./victim master &&
71 victim_head=$(cd victim && git rev-parse --verify master) &&
72 test "$victim_head" = "$victim_orig" &&
Linus Torvaldsbdf25142005-07-26 20:04:22 -070073 # this should update
Junio C Hamano2f334152009-02-09 13:39:52 -080074 git send-pack --force ./victim master &&
75 victim_head=$(cd victim && git rev-parse --verify master) &&
76 test "$victim_head" = "$pushed_head"
Linus Torvaldsbdf25142005-07-26 20:04:22 -070077'
Pavel Roskinda7bc9b2005-08-10 22:15:02 -040078
Junio C Hamanod4f694b2006-11-24 00:26:49 -080079test_expect_success \
80 'push can be used to delete a ref' '
Junio C Hamano2f334152009-02-09 13:39:52 -080081 ( cd victim && git branch extra master ) &&
82 git send-pack ./victim :extra master &&
83 ( cd victim &&
84 test_must_fail git rev-parse --verify extra )
Junio C Hamanod4f694b2006-11-24 00:26:49 -080085'
86
Junio C Hamano2f334152009-02-09 13:39:52 -080087test_expect_success 'refuse deleting push with denyDeletes' '
88 (
89 cd victim &&
90 ( git branch -D extra || : ) &&
91 git config receive.denyDeletes true &&
92 git branch extra master
93 ) &&
94 test_must_fail git send-pack ./victim :extra master
Johannes Schindelin199a9212006-09-21 02:10:30 +020095'
96
Jonathan Nieder655e8d92010-08-24 01:41:14 -050097test_expect_success 'cannot override denyDeletes with git -c send-pack' '
98 (
99 cd victim &&
100 test_might_fail git branch -D extra &&
101 git config receive.denyDeletes true &&
102 git branch extra master
103 ) &&
104 test_must_fail git -c receive.denyDeletes=false \
105 send-pack ./victim :extra master
106'
107
108test_expect_success 'override denyDeletes with git -c receive-pack' '
109 (
110 cd victim &&
111 test_might_fail git branch -D extra &&
112 git config receive.denyDeletes true &&
113 git branch extra master
114 ) &&
115 git send-pack \
116 --receive-pack="git -c receive.denyDeletes=false receive-pack" \
117 ./victim :extra master
118'
119
Junio C Hamano2f334152009-02-09 13:39:52 -0800120test_expect_success 'denyNonFastforwards trumps --force' '
121 (
122 cd victim &&
123 ( git branch -D extra || : ) &&
124 git config receive.denyNonFastforwards true
125 ) &&
126 victim_orig=$(cd victim && git rev-parse --verify master) &&
127 test_must_fail git send-pack --force ./victim master^:master &&
128 victim_head=$(cd victim && git rev-parse --verify master) &&
129 test "$victim_orig" = "$victim_head"
130'
131
Matthieu Moy60109d02010-11-02 16:31:21 +0100132test_expect_success 'push --all excludes remote-tracking hierarchy' '
Junio C Hamano2f334152009-02-09 13:39:52 -0800133 mkdir parent &&
134 (
135 cd parent &&
136 git init && : >file && git add file && git commit -m add
137 ) &&
138 git clone parent child &&
139 (
140 cd child && git push --all
141 ) &&
142 (
143 cd parent &&
144 test -z "$(git for-each-ref refs/remotes/origin)"
145 )
Jeff King5c633a42007-09-18 04:15:34 -0400146'
147
Jeff King5eb73582007-10-19 05:04:00 -0400148rewound_push_setup() {
149 rm -rf parent child &&
Junio C Hamano2f334152009-02-09 13:39:52 -0800150 mkdir parent &&
151 (
152 cd parent &&
153 git init &&
154 echo one >file && git add file && git commit -m one &&
Junio C Hamanoacd2a452009-02-11 02:28:03 -0800155 git config receive.denyCurrentBranch warn &&
Junio C Hamano2f334152009-02-09 13:39:52 -0800156 echo two >file && git commit -a -m two
157 ) &&
158 git clone parent child &&
159 (
160 cd child && git reset --hard HEAD^
161 )
Jeff King5eb73582007-10-19 05:04:00 -0400162}
163
164rewound_push_succeeded() {
165 cmp ../parent/.git/refs/heads/master .git/refs/heads/master
166}
167
168rewound_push_failed() {
169 if rewound_push_succeeded
170 then
171 false
172 else
173 true
174 fi
175}
176
Junio C Hamano2f334152009-02-09 13:39:52 -0800177test_expect_success 'pushing explicit refspecs respects forcing' '
Jeff King5eb73582007-10-19 05:04:00 -0400178 rewound_push_setup &&
Junio C Hamano2f334152009-02-09 13:39:52 -0800179 parent_orig=$(cd parent && git rev-parse --verify master) &&
180 (
181 cd child &&
182 test_must_fail git send-pack ../parent \
183 refs/heads/master:refs/heads/master
184 ) &&
185 parent_head=$(cd parent && git rev-parse --verify master) &&
186 test "$parent_orig" = "$parent_head" &&
187 (
188 cd child &&
189 git send-pack ../parent \
190 +refs/heads/master:refs/heads/master
191 ) &&
192 parent_head=$(cd parent && git rev-parse --verify master) &&
193 child_head=$(cd parent && git rev-parse --verify master) &&
194 test "$parent_head" = "$child_head"
Jeff King5eb73582007-10-19 05:04:00 -0400195'
196
Junio C Hamano2f334152009-02-09 13:39:52 -0800197test_expect_success 'pushing wildcard refspecs respects forcing' '
Jeff King5eb73582007-10-19 05:04:00 -0400198 rewound_push_setup &&
Junio C Hamano2f334152009-02-09 13:39:52 -0800199 parent_orig=$(cd parent && git rev-parse --verify master) &&
200 (
201 cd child &&
202 test_must_fail git send-pack ../parent \
203 "refs/heads/*:refs/heads/*"
204 ) &&
205 parent_head=$(cd parent && git rev-parse --verify master) &&
206 test "$parent_orig" = "$parent_head" &&
207 (
208 cd child &&
209 git send-pack ../parent \
210 "+refs/heads/*:refs/heads/*"
211 ) &&
212 parent_head=$(cd parent && git rev-parse --verify master) &&
213 child_head=$(cd parent && git rev-parse --verify master) &&
214 test "$parent_head" = "$child_head"
Jeff King5eb73582007-10-19 05:04:00 -0400215'
216
Junio C Hamano375881f2009-02-09 00:19:46 -0800217test_expect_success 'deny pushing to delete current branch' '
Junio C Hamano747ca242009-02-08 22:31:21 -0800218 rewound_push_setup &&
219 (
220 cd child &&
Junio C Hamano375881f2009-02-09 00:19:46 -0800221 test_must_fail git send-pack ../parent :refs/heads/master 2>errs
Junio C Hamano747ca242009-02-08 22:31:21 -0800222 )
223'
224
Pavel Roskinda7bc9b2005-08-10 22:15:02 -0400225test_done