]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5411/test-0050-proc-receive-refs-with-modifiers.sh
t5411: refactor check of refs using test_cmp_refs
[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 &&
822ee894
JX
53
54 test_cmp_refs -C "$upstream" <<-EOF
8f0a2645 55 <COMMIT-A> refs/heads/main
31e8595a 56 EOF
31e8595a
JX
57'
58
8f0a2645
JS
59# Refs of upstream : main(A)
60# Refs of workbench: main(A) tags/v123
31e8595a
JX
61test_expect_success "setup upstream: create tags/v123 ($PROTOCOL)" '
62 git -C "$upstream" update-ref refs/heads/topic $A &&
63 git -C "$upstream" update-ref refs/tags/v123 $TAG &&
822ee894
JX
64
65 test_cmp_refs -C "$upstream" <<-EOF
8f0a2645 66 <COMMIT-A> refs/heads/main
31e8595a
JX
67 <COMMIT-A> refs/heads/topic
68 <TAG-v123> refs/tags/v123
69 EOF
31e8595a
JX
70'
71
72test_expect_success "setup proc-receive hook ($PROTOCOL)" '
73 write_script "$upstream/hooks/proc-receive" <<-EOF
74 printf >&2 "# proc-receive hook\n"
75 test-tool proc-receive -v \
8f0a2645 76 -r "ok refs/heads/main" \
31e8595a
JX
77 -r "option refname refs/pull/123/head" \
78 -r "option old-oid $A" \
79 -r "option new-oid $ZERO_OID" \
80 -r "ok refs/heads/next" \
81 -r "option refname refs/pull/124/head" \
82 -r "option new-oid $A"
83 EOF
84'
85
8f0a2645
JS
86# Refs of upstream : main(A) topic(A) tags/v123
87# Refs of workbench: main(A) tags/v123
31e8595a
JX
88# git push : NULL topic(B) NULL next(A)
89test_expect_success "proc-receive: create/delete branch, and delete tag ($PROTOCOL)" '
90 git -C workbench push origin \
8f0a2645 91 :refs/heads/main \
31e8595a
JX
92 $B:refs/heads/topic \
93 $A:refs/heads/next \
94 :refs/tags/v123 >out 2>&1 &&
95 make_user_friendly_and_stable_output <out >actual &&
96 cat >expect <<-EOF &&
97 remote: # pre-receive hook
8f0a2645 98 remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
31e8595a
JX
99 remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic
100 remote: pre-receive< <TAG-v123> <ZERO-OID> refs/tags/v123
101 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
102 remote: # proc-receive hook
8f0a2645 103 remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
31e8595a 104 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
8f0a2645 105 remote: proc-receive> ok refs/heads/main
31e8595a
JX
106 remote: proc-receive> option refname refs/pull/123/head
107 remote: proc-receive> option old-oid <COMMIT-A>
108 remote: proc-receive> option new-oid <ZERO-OID>
109 remote: proc-receive> ok refs/heads/next
110 remote: proc-receive> option refname refs/pull/124/head
111 remote: proc-receive> option new-oid <COMMIT-A>
112 remote: # post-receive hook
113 remote: post-receive< <COMMIT-A> <ZERO-OID> refs/pull/123/head
114 remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic
115 remote: post-receive< <TAG-v123> <ZERO-OID> refs/tags/v123
116 remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/124/head
117 To <URL/of/upstream.git>
118 - [deleted] refs/pull/123/head
119 <OID-A>..<OID-B> <COMMIT-B> -> topic
120 - [deleted] v123
121 * [new reference] <COMMIT-A> -> refs/pull/124/head
122 EOF
123 test_cmp expect actual &&
822ee894
JX
124
125 test_cmp_refs -C "$upstream" <<-EOF
8f0a2645 126 <COMMIT-A> refs/heads/main
31e8595a
JX
127 <COMMIT-B> refs/heads/topic
128 EOF
31e8595a 129'