| 1 | test_expect_success "setup proc-receive hook (fall-through, $PROTOCOL/porcelain)" ' |
| 2 | test_hook -C "$upstream" --clobber proc-receive <<-\EOF |
| 3 | printf >&2 "# proc-receive hook\n" |
| 4 | test-tool proc-receive -v \ |
| 5 | -r "ok refs/for/main/topic" \ |
| 6 | -r "option fall-through" |
| 7 | EOF |
| 8 | ' |
| 9 | |
| 10 | # Refs of upstream : main(A) |
| 11 | # Refs of workbench: main(A) tags/v123 |
| 12 | # git push : refs/for/main/topic(B) |
| 13 | test_expect_success "proc-receive: fall through, let receive-pack to execute ($PROTOCOL/porcelain)" ' |
| 14 | git -C workbench push --porcelain origin \ |
| 15 | $B:refs/for/main/topic \ |
| 16 | >out 2>&1 && |
| 17 | make_user_friendly_and_stable_output <out >actual && |
| 18 | format_and_save_expect <<-EOF && |
| 19 | > remote: # pre-receive hook Z |
| 20 | > remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z |
| 21 | > remote: # proc-receive hook Z |
| 22 | > remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z |
| 23 | > remote: proc-receive> ok refs/for/main/topic Z |
| 24 | > remote: proc-receive> option fall-through Z |
| 25 | > remote: # post-receive hook Z |
| 26 | > remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z |
| 27 | > To <URL/of/upstream.git> |
| 28 | > * <COMMIT-B>:refs/for/main/topic [new reference] |
| 29 | > Done |
| 30 | EOF |
| 31 | test_cmp expect actual && |
| 32 | |
| 33 | test_cmp_refs -C "$upstream" <<-EOF |
| 34 | <COMMIT-B> refs/for/main/topic |
| 35 | <COMMIT-A> refs/heads/main |
| 36 | EOF |
| 37 | ' |
| 38 | |
| 39 | # Refs of upstream : main(A) refs/for/main/topic(A) |
| 40 | # Refs of workbench: main(A) tags/v123 |
| 41 | test_expect_success "cleanup ($PROTOCOL/porcelain)" ' |
| 42 | git -C "$upstream" update-ref -d refs/for/main/topic |
| 43 | ' |