proc-receive hook tests: use "test_hook" instead of "write_script"
Change the t5411/*.sh tests to use the test_hook helper instead of "write_script". Unfortunately these tests do the setup and test across different test_expect_success blocks, so we have to use --clobber (implying --setup) for these. Let's change those that can use a quoted here-doc to do so while we're at it. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
66865d12a0
commit
c39176b160
@ -3,7 +3,7 @@ test_expect_success "setup receive.procReceiveRefs" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic1" \
|
||||
|
@ -1,6 +1,6 @@
|
||||
test_expect_success "setup pre-receive hook ($PROTOCOL)" '
|
||||
mv "$upstream/hooks/pre-receive" "$upstream/hooks/pre-receive.ok" &&
|
||||
write_script "$upstream/hooks/pre-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber pre-receive <<-\EOF
|
||||
exit 1
|
||||
EOF
|
||||
'
|
||||
@ -21,7 +21,7 @@ test_expect_success "git-push is declined ($PROTOCOL)" '
|
||||
EOF
|
||||
test_cmp expect actual &&
|
||||
|
||||
test_cmp_refs -C "$upstream" <<-EOF
|
||||
test_cmp_refs -C "$upstream" <<-\EOF
|
||||
<COMMIT-A> refs/heads/main
|
||||
EOF
|
||||
'
|
||||
|
@ -1,6 +1,6 @@
|
||||
test_expect_success "setup pre-receive hook ($PROTOCOL/porcelain)" '
|
||||
mv "$upstream/hooks/pre-receive" "$upstream/hooks/pre-receive.ok" &&
|
||||
write_script "$upstream/hooks/pre-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber pre-receive <<-\EOF
|
||||
exit 1
|
||||
EOF
|
||||
'
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unknown version, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --version 2
|
||||
EOF
|
||||
@ -40,7 +40,7 @@ test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-version, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-version
|
||||
EOF
|
||||
@ -65,13 +65,13 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-version, $PROTO
|
||||
grep "remote: fatal: die with the --die-read-version option" out-$test_count &&
|
||||
grep "remote: error: fail to negotiate version with proc-receive hook" out-$test_count &&
|
||||
|
||||
test_cmp_refs -C "$upstream" <<-EOF
|
||||
test_cmp_refs -C "$upstream" <<-\EOF
|
||||
<COMMIT-A> refs/heads/main
|
||||
EOF
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-write-version, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-write-version
|
||||
EOF
|
||||
@ -102,7 +102,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-version, $PROT
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-commands, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-commands
|
||||
EOF
|
||||
@ -132,7 +132,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-commands, $PROT
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-push-options, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-push-options
|
||||
EOF
|
||||
@ -164,7 +164,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-push-options, $
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-write-report, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-write-report
|
||||
EOF
|
||||
@ -194,7 +194,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-report, $PROTO
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (no report, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v
|
||||
EOF
|
||||
@ -236,7 +236,7 @@ test_expect_success "cleanup ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (no ref, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok"
|
||||
@ -269,7 +269,7 @@ test_expect_success "proc-receive: bad protocol (no ref, $PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (unknown status, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "xx refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unknown version, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --version 2
|
||||
EOF
|
||||
@ -40,7 +40,7 @@ test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL/porc
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-version, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-version
|
||||
EOF
|
||||
@ -71,7 +71,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-version, $PROTO
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-write-version, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-write-version
|
||||
EOF
|
||||
@ -102,7 +102,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-version, $PROT
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-commands, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-commands
|
||||
EOF
|
||||
@ -132,7 +132,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-commands, $PROT
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-read-push-options, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-read-push-options
|
||||
EOF
|
||||
@ -164,7 +164,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-push-options, $
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (hook --die-write-report, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v --die-write-report
|
||||
EOF
|
||||
@ -194,7 +194,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-report, $PROTO
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (no report, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v
|
||||
EOF
|
||||
@ -236,7 +236,7 @@ test_expect_success "cleanup ($PROTOCOL/porcelain)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (no ref, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok"
|
||||
@ -270,7 +270,7 @@ test_expect_success "proc-receive: bad protocol (no ref, $PROTOCOL/porcelain)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (unknown status, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "xx refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (ng, no message, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ng refs/for/main/topic"
|
||||
@ -31,7 +31,7 @@ test_expect_success "proc-receive: fail to update (ng, no message, $PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (ng message, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ng refs/for/main/topic error msg"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (ng, no message, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ng refs/for/main/topic"
|
||||
@ -32,7 +32,7 @@ test_expect_success "proc-receive: fail to update (ng, no message, $PROTOCOL/por
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (ng message, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ng refs/for/main/topic error msg"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unexpected ref, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unexpected ref, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unexpected ref, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (unexpected ref, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,6 +1,6 @@
|
||||
test_expect_success "setup proc-receive hook and disable push-options ($PROTOCOL)" '
|
||||
git -C "$upstream" config receive.advertisePushOptions false &&
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
@ -31,7 +31,7 @@ test_expect_success "enable push options ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup version=0 for proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
--version 0 \
|
||||
@ -75,7 +75,7 @@ test_expect_success "proc-receive: ignore push-options for version 0 ($PROTOCOL)
|
||||
'
|
||||
|
||||
test_expect_success "restore proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,6 +1,6 @@
|
||||
test_expect_success "setup proc-receive hook and disable push-options ($PROTOCOL/porcelain)" '
|
||||
git -C "$upstream" config receive.advertisePushOptions false &&
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
@ -32,7 +32,7 @@ test_expect_success "enable push options ($PROTOCOL/porcelain)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup version=0 for proc-receive hook ($PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
--version 0 \
|
||||
@ -78,7 +78,7 @@ test_expect_success "proc-receive: ignore push-options for version 0 ($PROTOCOL/
|
||||
'
|
||||
|
||||
test_expect_success "restore proc-receive hook ($PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (ok, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (ok, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic"
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (option without matching ok, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "option refname refs/pull/123/head" \
|
||||
@ -30,7 +30,7 @@ test_expect_success "proc-receive: report option without matching ok ($PROTOCOL)
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -62,7 +62,7 @@ test_expect_success "proc-receive: report option refname ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname and forced-update, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -95,7 +95,7 @@ test_expect_success "proc-receive: report option refname and forced-update ($PRO
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname and old-oid, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -129,7 +129,7 @@ test_expect_success "proc-receive: report option refname and old-oid ($PROTOCOL)
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option old-oid, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -161,7 +161,7 @@ test_expect_success "proc-receive: report option old-oid ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option old-oid and new-oid, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -195,7 +195,7 @@ test_expect_success "proc-receive: report option old-oid and new-oid ($PROTOCOL)
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (report with multiple rewrites, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/a/b/c/topic" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (option without matching ok, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "option refname refs/pull/123/head" \
|
||||
@ -31,7 +31,7 @@ test_expect_success "proc-receive: report option without matching ok ($PROTOCOL/
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -64,7 +64,7 @@ test_expect_success "proc-receive: report option refname ($PROTOCOL/porcelain)"
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname and forced-update, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -99,7 +99,7 @@ test_expect_success "proc-receive: report option refname and forced-update ($PRO
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option refname and old-oid, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -134,7 +134,7 @@ test_expect_success "proc-receive: report option refname and old-oid ($PROTOCOL/
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option old-oid, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -167,7 +167,7 @@ test_expect_success "proc-receive: report option old-oid ($PROTOCOL/porcelain)"
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (option old-oid and new-oid, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -202,7 +202,7 @@ test_expect_success "proc-receive: report option old-oid and new-oid ($PROTOCOL/
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (report with multiple rewrites, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/a/b/c/topic" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (ft, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (fall-through, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-\EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
|
@ -14,7 +14,7 @@ test_expect_success "setup git config for remote-tracking of special refs" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, no refname for the 1st rewrite, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -87,7 +87,7 @@ test_expect_success "proc-receive: check remote-tracking #1 ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, no refname for the 2nd rewrite, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -162,7 +162,7 @@ test_expect_success "proc-receive: check remote-tracking #2 ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, $PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, no refname for the 1st rewrite, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -58,7 +58,7 @@ test_expect_success "proc-receive: multiple rewrite for one ref, no refname for
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, no refname for the 2nd rewrite, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
@ -119,7 +119,7 @@ test_expect_success "proc-receive: multiple rewrites for one ref, no refname for
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook (multiple rewrites for one ref, $PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/main/topic" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/next/topic2" \
|
||||
|
@ -1,5 +1,5 @@
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/for/next/topic2" \
|
||||
|
@ -17,7 +17,7 @@ test_expect_success "setup upstream branches ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main" \
|
||||
|
@ -17,7 +17,7 @@ test_expect_success "setup upstream branches ($PROTOCOL/porcelain)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL/porcelain)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main" \
|
||||
|
@ -9,7 +9,7 @@ test_expect_success "config receive.procReceiveRefs with modifiers ($PROTOCOL)"
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main" \
|
||||
@ -70,7 +70,7 @@ test_expect_success "setup upstream: create tags/v123 ($PROTOCOL)" '
|
||||
'
|
||||
|
||||
test_expect_success "setup proc-receive hook ($PROTOCOL)" '
|
||||
write_script "$upstream/hooks/proc-receive" <<-EOF
|
||||
test_hook -C "$upstream" --clobber proc-receive <<-EOF
|
||||
printf >&2 "# proc-receive hook\n"
|
||||
test-tool proc-receive -v \
|
||||
-r "ok refs/heads/main" \
|
||||
|
Loading…
Reference in New Issue
Block a user