]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5411/test-0050-proc-receive-refs-with-modifiers.sh
Merge branch 'jc/do-not-just-explain-but-update-your-patch'
[thirdparty/git.git] / t / t5411 / test-0050-proc-receive-refs-with-modifiers.sh
CommitLineData
31e8595a
JX
1test_expect_success "config receive.procReceiveRefs with modifiers ($PROTOCOL)" '
2 (
3 cd "$upstream" &&
4 git config --unset-all receive.procReceiveRefs &&
8f0a2645 5 git config --add receive.procReceiveRefs m:refs/heads/main &&
31e8595a
JX
6 git config --add receive.procReceiveRefs ad:refs/heads &&
7 git config --add receive.procReceiveRefs "a!:refs/heads"
8 )
9'
10
11test_expect_success "setup proc-receive hook ($PROTOCOL)" '
12 write_script "$upstream/hooks/proc-receive" <<-EOF
13 printf >&2 "# proc-receive hook\n"
14 test-tool proc-receive -v \
8f0a2645 15 -r "ok refs/heads/main" \
31e8595a
JX
16 -r "option refname refs/pull/123/head" \
17 -r "option old-oid $A" \
18 -r "option new-oid $B" \
19 -r "ok refs/tags/v123 " \
20 -r "option refname refs/pull/124/head"
21 EOF
22'
23
8f0a2645
JS
24# Refs of upstream : main(A)
25# Refs of workbench: main(A) tags/v123
26# git push : main(B) tags/v123
31e8595a
JX
27test_expect_success "proc-receive: update branch and new tag ($PROTOCOL)" '
28 git -C workbench push origin \
8f0a2645 29 $B:refs/heads/main \
31e8595a
JX
30 v123 >out 2>&1 &&
31 make_user_friendly_and_stable_output <out >actual &&
32 cat >expect <<-EOF &&
33 remote: # pre-receive hook
8f0a2645 34 remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
31e8595a
JX
35 remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123
36 remote: # proc-receive hook
8f0a2645 37 remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
31e8595a 38 remote: proc-receive< <ZERO-OID> <TAG-v123> refs/tags/v123
8f0a2645 39 remote: proc-receive> ok refs/heads/main
31e8595a
JX
40 remote: proc-receive> option refname refs/pull/123/head
41 remote: proc-receive> option old-oid <COMMIT-A>
42 remote: proc-receive> option new-oid <COMMIT-B>
43 remote: proc-receive> ok refs/tags/v123
44 remote: proc-receive> option refname refs/pull/124/head
45 remote: # post-receive hook
46 remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head
47 remote: post-receive< <ZERO-OID> <TAG-v123> refs/pull/124/head
48 To <URL/of/upstream.git>
49 <OID-A>..<OID-B> <COMMIT-B> -> refs/pull/123/head
50 * [new reference] v123 -> refs/pull/124/head
51 EOF
52 test_cmp expect actual &&
53 git -C "$upstream" show-ref >out &&
54 make_user_friendly_and_stable_output <out >actual &&
55 cat >expect <<-EOF &&
8f0a2645 56 <COMMIT-A> refs/heads/main
31e8595a
JX
57 EOF
58 test_cmp expect actual
59'
60
8f0a2645
JS
61# Refs of upstream : main(A)
62# Refs of workbench: main(A) tags/v123
31e8595a
JX
63test_expect_success "setup upstream: create tags/v123 ($PROTOCOL)" '
64 git -C "$upstream" update-ref refs/heads/topic $A &&
65 git -C "$upstream" update-ref refs/tags/v123 $TAG &&
66 git -C "$upstream" show-ref >out &&
67 make_user_friendly_and_stable_output <out >actual &&
68 cat >expect <<-EOF &&
8f0a2645 69 <COMMIT-A> refs/heads/main
31e8595a
JX
70 <COMMIT-A> refs/heads/topic
71 <TAG-v123> refs/tags/v123
72 EOF
73 test_cmp expect actual
74'
75
76test_expect_success "setup proc-receive hook ($PROTOCOL)" '
77 write_script "$upstream/hooks/proc-receive" <<-EOF
78 printf >&2 "# proc-receive hook\n"
79 test-tool proc-receive -v \
8f0a2645 80 -r "ok refs/heads/main" \
31e8595a
JX
81 -r "option refname refs/pull/123/head" \
82 -r "option old-oid $A" \
83 -r "option new-oid $ZERO_OID" \
84 -r "ok refs/heads/next" \
85 -r "option refname refs/pull/124/head" \
86 -r "option new-oid $A"
87 EOF
88'
89
8f0a2645
JS
90# Refs of upstream : main(A) topic(A) tags/v123
91# Refs of workbench: main(A) tags/v123
31e8595a
JX
92# git push : NULL topic(B) NULL next(A)
93test_expect_success "proc-receive: create/delete branch, and delete tag ($PROTOCOL)" '
94 git -C workbench push origin \
8f0a2645 95 :refs/heads/main \
31e8595a
JX
96 $B:refs/heads/topic \
97 $A:refs/heads/next \
98 :refs/tags/v123 >out 2>&1 &&
99 make_user_friendly_and_stable_output <out >actual &&
100 cat >expect <<-EOF &&
101 remote: # pre-receive hook
8f0a2645 102 remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
31e8595a
JX
103 remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic
104 remote: pre-receive< <TAG-v123> <ZERO-OID> refs/tags/v123
105 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
106 remote: # proc-receive hook
8f0a2645 107 remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
31e8595a 108 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
8f0a2645 109 remote: proc-receive> ok refs/heads/main
31e8595a
JX
110 remote: proc-receive> option refname refs/pull/123/head
111 remote: proc-receive> option old-oid <COMMIT-A>
112 remote: proc-receive> option new-oid <ZERO-OID>
113 remote: proc-receive> ok refs/heads/next
114 remote: proc-receive> option refname refs/pull/124/head
115 remote: proc-receive> option new-oid <COMMIT-A>
116 remote: # post-receive hook
117 remote: post-receive< <COMMIT-A> <ZERO-OID> refs/pull/123/head
118 remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic
119 remote: post-receive< <TAG-v123> <ZERO-OID> refs/tags/v123
120 remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/124/head
121 To <URL/of/upstream.git>
122 - [deleted] refs/pull/123/head
123 <OID-A>..<OID-B> <COMMIT-B> -> topic
124 - [deleted] v123
125 * [new reference] <COMMIT-A> -> refs/pull/124/head
126 EOF
127 test_cmp expect actual &&
128 git -C "$upstream" show-ref >out &&
129 make_user_friendly_and_stable_output <out >actual &&
130 cat >expect <<-EOF &&
8f0a2645 131 <COMMIT-A> refs/heads/main
31e8595a
JX
132 <COMMIT-B> refs/heads/topic
133 EOF
134 test_cmp expect actual
135'