Git fork
at reftables-rust 42 lines 1.5 kB view raw
1test_expect_success "setup proc-receive hook (ft, $PROTOCOL)" ' 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) 13test_expect_success "proc-receive: fall through, let receive-pack to execute ($PROTOCOL)" ' 14 git -C workbench push 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 > * [new reference] <COMMIT-B> -> refs/for/main/topic 29 EOF 30 test_cmp expect actual && 31 32 test_cmp_refs -C "$upstream" <<-EOF 33 <COMMIT-B> refs/for/main/topic 34 <COMMIT-A> refs/heads/main 35 EOF 36' 37 38# Refs of upstream : main(A) refs/for/main/topic(A) 39# Refs of workbench: main(A) tags/v123 40test_expect_success "cleanup ($PROTOCOL)" ' 41 git -C "$upstream" update-ref -d refs/for/main/topic 42'