Merge tag 'l10n-2.31.0-rnd2' of git://github.com/git-l10n/git-po
[git/debian.git] / t / t5411 / test-0022-report-unexpect-ref.sh
blobdbed467186a6cf8fae9b9dc66fe227cd25ff10a9
1 test_expect_success "setup proc-receive hook (unexpected ref, $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/heads/main"
6 EOF
9 # Refs of upstream : main(A)
10 # Refs of workbench: main(A) tags/v123
11 # git push : (B) refs/for/main/topic
12 test_expect_success "proc-receive: report unexpected ref ($PROTOCOL)" '
13 test_must_fail git -C workbench push origin \
14 $B:refs/heads/main \
15 HEAD:refs/for/main/topic \
16 >out-$test_count 2>&1 &&
17 make_user_friendly_and_stable_output <out-$test_count >actual &&
18 cat >expect <<-EOF &&
19 remote: # pre-receive hook
20 remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
21 remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
22 remote: # proc-receive hook
23 remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic
24 remote: proc-receive> ok refs/heads/main
25 remote: error: proc-receive reported status on unexpected ref: refs/heads/main
26 remote: # post-receive hook
27 remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main
28 To <URL/of/upstream.git>
29 <OID-A>..<OID-B> <COMMIT-B> -> main
30 ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
31 EOF
32 test_cmp expect actual &&
34 test_cmp_refs -C "$upstream" <<-EOF
35 <COMMIT-B> refs/heads/main
36 EOF
39 # Refs of upstream : main(B)
40 # Refs of workbench: main(A) tags/v123
41 test_expect_success "cleanup ($PROTOCOL)" '
42 git -C "$upstream" update-ref refs/heads/main $A