]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5411/test-0050-proc-receive-refs-with-modifiers.sh
Merge branch 'en/ort-perf-batch-9'
[thirdparty/git.git] / t / t5411 / test-0050-proc-receive-refs-with-modifiers.sh
1 test_expect_success "config receive.procReceiveRefs with modifiers ($PROTOCOL)" '
2 (
3 cd "$upstream" &&
4 git config --unset-all receive.procReceiveRefs &&
5 git config --add receive.procReceiveRefs m:refs/heads/main &&
6 git config --add receive.procReceiveRefs ad:refs/heads &&
7 git config --add receive.procReceiveRefs "a!:refs/heads"
8 )
9 '
10
11 test_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 \
15 -r "ok refs/heads/main" \
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
24 # Refs of upstream : main(A)
25 # Refs of workbench: main(A) tags/v123
26 # git push : main(B) tags/v123
27 test_expect_success "proc-receive: update branch and new tag ($PROTOCOL)" '
28 git -C workbench push origin \
29 $B:refs/heads/main \
30 v123 >out 2>&1 &&
31 make_user_friendly_and_stable_output <out >actual &&
32 cat >expect <<-EOF &&
33 remote: # pre-receive hook
34 remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
35 remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123
36 remote: # proc-receive hook
37 remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
38 remote: proc-receive< <ZERO-OID> <TAG-v123> refs/tags/v123
39 remote: proc-receive> ok refs/heads/main
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
54 test_cmp_refs -C "$upstream" <<-EOF
55 <COMMIT-A> refs/heads/main
56 EOF
57 '
58
59 # Refs of upstream : main(A)
60 # Refs of workbench: main(A) tags/v123
61 test_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 &&
64
65 test_cmp_refs -C "$upstream" <<-EOF
66 <COMMIT-A> refs/heads/main
67 <COMMIT-A> refs/heads/topic
68 <TAG-v123> refs/tags/v123
69 EOF
70 '
71
72 test_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 \
76 -r "ok refs/heads/main" \
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
86 # Refs of upstream : main(A) topic(A) tags/v123
87 # Refs of workbench: main(A) tags/v123
88 # git push : NULL topic(B) NULL next(A)
89 test_expect_success "proc-receive: create/delete branch, and delete tag ($PROTOCOL)" '
90 git -C workbench push origin \
91 :refs/heads/main \
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
98 remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
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
103 remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/main
104 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/heads/next
105 remote: proc-receive> ok refs/heads/main
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 &&
124
125 test_cmp_refs -C "$upstream" <<-EOF
126 <COMMIT-A> refs/heads/main
127 <COMMIT-B> refs/heads/topic
128 EOF
129 '