]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5411/test-0034-report-ft.sh
Merge branch 'jx/t5411-unique-filenames'
[thirdparty/git.git] / t / t5411 / test-0034-report-ft.sh
1 test_expect_success "setup proc-receive hook (ft, $PROTOCOL)" '
2 write_script "$upstream/hooks/proc-receive" <<-EOF
3 printf >&2 "# proc-receive hook\n"
4 test-tool proc-receive -v \
5 -r "ok refs/for/main/topic" \
6 -r "option fall-through"
7 EOF
8 '
9
10 # Refs of upstream : main(A)
11 # Refs of workbench: main(A) tags/v123
12 # git push : refs/for/main/topic(B)
13 test_expect_success "proc-receive: fall throught, let receive-pack to execute ($PROTOCOL)" '
14 git -C workbench push origin \
15 $B:refs/for/main/topic \
16 >out 2>&1 &&
17 make_user_friendly_and_stable_output <out >actual &&
18 cat >expect <<-EOF &&
19 remote: # pre-receive hook
20 remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic
21 remote: # proc-receive hook
22 remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic
23 remote: proc-receive> ok refs/for/main/topic
24 remote: proc-receive> option fall-through
25 remote: # post-receive hook
26 remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic
27 To <URL/of/upstream.git>
28 * [new reference] <COMMIT-B> -> refs/for/main/topic
29 EOF
30 test_cmp expect actual &&
31
32 test_cmp_refs -C "$upstream" <<-EOF
33 <COMMIT-B> refs/for/main/topic
34 <COMMIT-A> refs/heads/main
35 EOF
36 '
37
38 # Refs of upstream : main(A) refs/for/main/topic(A)
39 # Refs of workbench: main(A) tags/v123
40 test_expect_success "cleanup ($PROTOCOL)" '
41 git -C "$upstream" update-ref -d refs/for/main/topic
42 '