]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5411/test-0040-process-all-refs.sh
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / t / t5411 / test-0040-process-all-refs.sh
CommitLineData
31e8595a
JX
1test_expect_success "config receive.procReceiveRefs = refs ($PROTOCOL)" '
2 git -C "$upstream" config --unset-all receive.procReceiveRefs &&
3 git -C "$upstream" config --add receive.procReceiveRefs refs
4'
5
8f0a2645
JS
6# Refs of upstream : main(A)
7# Refs of workbench: main(A) tags/v123
31e8595a
JX
8test_expect_success "setup upstream branches ($PROTOCOL)" '
9 (
10 cd "$upstream" &&
8f0a2645 11 git update-ref refs/heads/main $B &&
31e8595a
JX
12 git update-ref refs/heads/foo $A &&
13 git update-ref refs/heads/bar $A &&
14 git update-ref refs/heads/baz $A
15 )
16
17'
18
19test_expect_success "setup proc-receive hook ($PROTOCOL)" '
c39176b1 20 test_hook -C "$upstream" --clobber proc-receive <<-EOF
31e8595a
JX
21 printf >&2 "# proc-receive hook\n"
22 test-tool proc-receive -v \
8f0a2645 23 -r "ok refs/heads/main" \
31e8595a
JX
24 -r "option fall-through" \
25 -r "ok refs/heads/foo" \
26 -r "option fall-through" \
27 -r "ok refs/heads/bar" \
28 -r "option fall-through" \
8f0a2645 29 -r "ok refs/for/main/topic" \
31e8595a
JX
30 -r "option refname refs/pull/123/head" \
31 -r "option old-oid $A" \
32 -r "option new-oid $B" \
33 -r "ok refs/for/next/topic" \
34 -r "option refname refs/pull/124/head" \
35 -r "option old-oid $B" \
36 -r "option new-oid $A" \
37 -r "option forced-update"
38 EOF
39'
40
8f0a2645
JS
41# Refs of upstream : main(B) foo(A) bar(A)) baz(A)
42# Refs of workbench: main(A) tags/v123
43# git push -f : main(A) (NULL) (B) refs/for/main/topic(A) refs/for/next/topic(A)
31e8595a
JX
44test_expect_success "proc-receive: process all refs ($PROTOCOL)" '
45 git -C workbench push -f origin \
8f0a2645 46 HEAD:refs/heads/main \
31e8595a
JX
47 :refs/heads/foo \
48 $B:refs/heads/bar \
8f0a2645 49 HEAD:refs/for/main/topic \
31e8595a
JX
50 HEAD:refs/for/next/topic \
51 >out 2>&1 &&
52 make_user_friendly_and_stable_output <out >actual &&
2bafb3d7
JX
53 format_and_save_expect <<-EOF &&
54 > remote: # pre-receive hook Z
55 > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
56 > remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
57 > remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
58 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
59 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
60 > remote: # proc-receive hook Z
61 > remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
62 > remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
63 > remote: proc-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
64 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
65 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
66 > remote: proc-receive> ok refs/heads/main Z
67 > remote: proc-receive> option fall-through Z
68 > remote: proc-receive> ok refs/heads/foo Z
69 > remote: proc-receive> option fall-through Z
70 > remote: proc-receive> ok refs/heads/bar Z
71 > remote: proc-receive> option fall-through Z
72 > remote: proc-receive> ok refs/for/main/topic Z
73 > remote: proc-receive> option refname refs/pull/123/head Z
74 > remote: proc-receive> option old-oid <COMMIT-A> Z
75 > remote: proc-receive> option new-oid <COMMIT-B> Z
76 > remote: proc-receive> ok refs/for/next/topic Z
77 > remote: proc-receive> option refname refs/pull/124/head Z
78 > remote: proc-receive> option old-oid <COMMIT-B> Z
79 > remote: proc-receive> option new-oid <COMMIT-A> Z
80 > remote: proc-receive> option forced-update Z
81 > remote: # post-receive hook Z
82 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
83 > remote: post-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
84 > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
85 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head Z
86 > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head Z
87 > To <URL/of/upstream.git>
12d6991c 88 > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> bar
2bafb3d7 89 > - [deleted] foo
12d6991c
JX
90 > + <COMMIT-B>...<COMMIT-A> HEAD -> main (forced update)
91 > <COMMIT-A>..<COMMIT-B> HEAD -> refs/pull/123/head
92 > + <COMMIT-B>...<COMMIT-A> HEAD -> refs/pull/124/head (forced update)
31e8595a
JX
93 EOF
94 test_cmp expect actual &&
822ee894
JX
95
96 test_cmp_refs -C "$upstream" <<-EOF
31e8595a
JX
97 <COMMIT-B> refs/heads/bar
98 <COMMIT-A> refs/heads/baz
8f0a2645 99 <COMMIT-A> refs/heads/main
31e8595a 100 EOF
31e8595a
JX
101'
102
8f0a2645
JS
103# Refs of upstream : main(A) bar(A) baz(B)
104# Refs of workbench: main(A) tags/v123
31e8595a
JX
105test_expect_success "cleanup ($PROTOCOL)" '
106 (
107 cd "$upstream" &&
108 git update-ref -d refs/heads/bar &&
109 git update-ref -d refs/heads/baz
110 )
111'