1 test_expect_success "setup proc-receive hook (unknown version, $PROTOCOL)" '
2 write_script "$upstream/hooks/proc-receive" <<-EOF
3 printf >&2 "# proc-receive hook\n"
4 test-tool proc-receive -v --version 2
8 # Refs of upstream : main(A)
9 # Refs of workbench: main(A) tags/v123
10 # git push : refs/for/main/topic(A)
11 test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL)" '
12 test_must_fail git -C workbench push origin \
13 HEAD:refs/for/main/topic \
15 make_user_friendly_and_stable_output <out >actual &&
17 # Check status report for git-push
21 <actual >actual-report &&
23 To <URL/of/upstream.git>
24 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
26 test_cmp expect actual-report &&
28 # Check error message from "receive-pack", but ignore unstable fatal error
29 # message ("remote: fatal: the remote end hung up unexpectedly") which
30 # is different from the remote HTTP server with different locale settings.
31 grep "^remote: error:" <actual >actual-error &&
33 remote: error: proc-receive version "2" is not supported
35 test_cmp expect actual-error &&
37 git -C "$upstream" show-ref >out &&
38 make_user_friendly_and_stable_output <out >actual &&
40 <COMMIT-A> refs/heads/main
42 test_cmp expect actual
45 test_expect_success "setup proc-receive hook (hook --die-read-version, $PROTOCOL)" '
46 write_script "$upstream/hooks/proc-receive" <<-EOF
47 printf >&2 "# proc-receive hook\n"
48 test-tool proc-receive -v --die-read-version
52 # Refs of upstream : main(A)
53 # Refs of workbench: main(A) tags/v123
54 # git push : refs/for/main/topic(A)
55 test_expect_success "proc-receive: bad protocol (hook --die-read-version, $PROTOCOL)" '
56 test_must_fail git -C workbench push origin \
57 HEAD:refs/for/main/topic \
59 filter_out_user_friendly_and_stable_output \
64 To <URL/of/upstream.git>
65 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
67 test_cmp expect actual &&
68 grep "remote: fatal: die with the --die-read-version option" out &&
69 grep "remote: error: fail to negotiate version with proc-receive hook" out &&
71 git -C "$upstream" show-ref >out &&
72 make_user_friendly_and_stable_output <out >actual &&
74 <COMMIT-A> refs/heads/main
76 test_cmp expect actual
79 test_expect_success "setup proc-receive hook (hook --die-write-version, $PROTOCOL)" '
80 write_script "$upstream/hooks/proc-receive" <<-EOF
81 printf >&2 "# proc-receive hook\n"
82 test-tool proc-receive -v --die-write-version
86 # Refs of upstream : main(A)
87 # Refs of workbench: main(A) tags/v123
88 # git push : refs/for/main/topic(A)
89 test_expect_success "proc-receive: bad protocol (hook --die-write-version, $PROTOCOL)" '
90 test_must_fail git -C workbench push origin \
91 HEAD:refs/for/main/topic \
93 filter_out_user_friendly_and_stable_output \
98 To <URL/of/upstream.git>
99 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
101 test_cmp expect actual &&
102 grep "remote: fatal: die with the --die-write-version option" out &&
103 grep "remote: error: fail to negotiate version with proc-receive hook" out &&
105 git -C "$upstream" show-ref >out &&
106 make_user_friendly_and_stable_output <out >actual &&
107 cat >expect <<-EOF &&
108 <COMMIT-A> refs/heads/main
110 test_cmp expect actual
113 test_expect_success "setup proc-receive hook (hook --die-read-commands, $PROTOCOL)" '
114 write_script "$upstream/hooks/proc-receive" <<-EOF
115 printf >&2 "# proc-receive hook\n"
116 test-tool proc-receive -v --die-read-commands
120 # Refs of upstream : main(A)
121 # Refs of workbench: main(A) tags/v123
122 # git push : refs/for/main/topic(A)
123 test_expect_success "proc-receive: bad protocol (hook --die-read-commands, $PROTOCOL)" '
124 test_must_fail git -C workbench push origin \
125 HEAD:refs/for/main/topic \
127 filter_out_user_friendly_and_stable_output \
131 cat >expect <<-EOF &&
132 To <URL/of/upstream.git>
133 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
135 test_cmp expect actual &&
136 grep "remote: fatal: die with the --die-read-commands option" out &&
138 git -C "$upstream" show-ref >out &&
139 make_user_friendly_and_stable_output <out >actual &&
140 cat >expect <<-EOF &&
141 <COMMIT-A> refs/heads/main
143 test_cmp expect actual
146 test_expect_success "setup proc-receive hook (hook --die-read-push-options, $PROTOCOL)" '
147 write_script "$upstream/hooks/proc-receive" <<-EOF
148 printf >&2 "# proc-receive hook\n"
149 test-tool proc-receive -v --die-read-push-options
153 # Refs of upstream : main(A)
154 # Refs of workbench: main(A) tags/v123
155 # git push : refs/for/main/topic(A)
156 test_expect_success "proc-receive: bad protocol (hook --die-read-push-options, $PROTOCOL)" '
157 git -C "$upstream" config receive.advertisePushOptions true &&
158 test_must_fail git -C workbench push origin \
159 -o reviewers=user1,user2 \
160 HEAD:refs/for/main/topic \
162 filter_out_user_friendly_and_stable_output \
166 cat >expect <<-EOF &&
167 To <URL/of/upstream.git>
168 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
170 test_cmp expect actual &&
171 grep "remote: fatal: die with the --die-read-push-options option" out &&
173 git -C "$upstream" show-ref >out &&
174 make_user_friendly_and_stable_output <out >actual &&
175 cat >expect <<-EOF &&
176 <COMMIT-A> refs/heads/main
178 test_cmp expect actual
181 test_expect_success "setup proc-receive hook (hook --die-write-report, $PROTOCOL)" '
182 write_script "$upstream/hooks/proc-receive" <<-EOF
183 printf >&2 "# proc-receive hook\n"
184 test-tool proc-receive -v --die-write-report
188 # Refs of upstream : main(A)
189 # Refs of workbench: main(A) tags/v123
190 # git push : refs/for/main/topic(A)
191 test_expect_success "proc-receive: bad protocol (hook --die-write-report, $PROTOCOL)" '
192 test_must_fail git -C workbench push origin \
193 HEAD:refs/for/main/topic \
195 filter_out_user_friendly_and_stable_output \
199 cat >expect <<-EOF &&
200 To <URL/of/upstream.git>
201 ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
203 test_cmp expect actual &&
204 grep "remote: fatal: die with the --die-write-report option" out &&
206 git -C "$upstream" show-ref >out &&
207 make_user_friendly_and_stable_output <out >actual &&
208 cat >expect <<-EOF &&
209 <COMMIT-A> refs/heads/main
211 test_cmp expect actual
214 test_expect_success "setup proc-receive hook (no report, $PROTOCOL)" '
215 write_script "$upstream/hooks/proc-receive" <<-EOF
216 printf >&2 "# proc-receive hook\n"
217 test-tool proc-receive -v
221 # Refs of upstream : main(A)
222 # Refs of workbench: main(A) tags/v123
223 # git push : next(A) refs/for/main/topic(A)
224 test_expect_success "proc-receive: bad protocol (no report, $PROTOCOL)" '
225 test_must_fail git -C workbench push origin \
226 HEAD:refs/heads/next \
227 HEAD:refs/for/main/topic >out 2>&1 &&
228 make_user_friendly_and_stable_output <out >actual &&
229 cat >expect <<-EOF &&
230 remote: # pre-receive hook
231 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
232 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
233 remote: # proc-receive hook
234 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
235 remote: # post-receive hook
236 remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
237 To <URL/of/upstream.git>
238 * [new branch] HEAD -> next
239 ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
241 test_cmp expect actual &&
243 git -C "$upstream" show-ref >out &&
244 make_user_friendly_and_stable_output <out >actual &&
245 cat >expect <<-EOF &&
246 <COMMIT-A> refs/heads/main
247 <COMMIT-A> refs/heads/next
249 test_cmp expect actual
252 # Refs of upstream : main(A) next(A)
253 # Refs of workbench: main(A) tags/v123
254 test_expect_success "cleanup ($PROTOCOL)" '
255 git -C "$upstream" update-ref -d refs/heads/next
259 test_expect_success "setup proc-receive hook (no ref, $PROTOCOL)" '
260 write_script "$upstream/hooks/proc-receive" <<-EOF
261 printf >&2 "# proc-receive hook\n"
262 test-tool proc-receive -v \
267 # Refs of upstream : main(A)
268 # Refs of workbench: main(A) tags/v123
269 # git push : refs/for/main/topic
270 test_expect_success "proc-receive: bad protocol (no ref, $PROTOCOL)" '
271 test_must_fail git -C workbench push origin \
272 HEAD:refs/for/main/topic\
274 make_user_friendly_and_stable_output <out >actual &&
275 cat >expect <<-EOF &&
276 remote: # pre-receive hook
277 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
278 remote: # proc-receive hook
279 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
280 remote: proc-receive> ok
281 remote: error: proc-receive reported incomplete status line: "ok"
282 To <URL/of/upstream.git>
283 ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
285 test_cmp expect actual &&
287 git -C "$upstream" show-ref >out &&
288 make_user_friendly_and_stable_output <out >actual &&
289 cat >expect <<-EOF &&
290 <COMMIT-A> refs/heads/main
292 test_cmp expect actual
295 test_expect_success "setup proc-receive hook (unknown status, $PROTOCOL)" '
296 write_script "$upstream/hooks/proc-receive" <<-EOF
297 printf >&2 "# proc-receive hook\n"
298 test-tool proc-receive -v \
299 -r "xx refs/for/main/topic"
303 # Refs of upstream : main(A)
304 # Refs of workbench: main(A) tags/v123
305 # git push : refs/for/main/topic
306 test_expect_success "proc-receive: bad protocol (unknown status, $PROTOCOL)" '
307 test_must_fail git -C workbench push origin \
308 HEAD:refs/for/main/topic \
310 make_user_friendly_and_stable_output <out >actual &&
311 cat >expect <<-EOF &&
312 remote: # pre-receive hook
313 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
314 remote: # proc-receive hook
315 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
316 remote: proc-receive> xx refs/for/main/topic
317 remote: error: proc-receive reported bad status "xx" on ref "refs/for/main/topic"
318 To <URL/of/upstream.git>
319 ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
321 test_cmp expect actual &&
323 git -C "$upstream" show-ref >out &&
324 make_user_friendly_and_stable_output <out >actual &&
325 cat >expect <<-EOF &&
326 <COMMIT-A> refs/heads/main
328 test_cmp expect actual