Merge branch 'jx/sideband-cleanup'

The side-band demultiplexer that is used to display progress output
from the remote end did not clear the line properly when the end of
line hits at a packet boundary, which has been corrected.  Also
comes with test clean-ups.

* jx/sideband-cleanup:
  test: refactor to use "get_abbrev_oid" to get abbrev oid
  test: refactor to use "test_commit" to create commits
  test: compare raw output, not mangle tabs and spaces
  sideband: don't lose clear-to-eol at packet boundary
This commit is contained in:
Junio C Hamano 2021-07-08 13:15:01 -07:00
commit 7cc1147371
32 changed files with 1036 additions and 1013 deletions

View file

@ -183,8 +183,31 @@ int demultiplex_sideband(const char *me, int status,
while ((brk = strpbrk(b, "\n\r"))) { while ((brk = strpbrk(b, "\n\r"))) {
int linelen = brk - b; int linelen = brk - b;
/*
* For message accross packet boundary, there would have
* a nonempty "scratch" buffer from last call of this
* function, and there may have a leading CR/LF in "buf".
* For this case we should add a clear-to-eol suffix to
* clean leftover letters we previously have written on
* the same line.
*/
if (scratch->len && !linelen)
strbuf_addstr(scratch, suffix);
if (!scratch->len) if (!scratch->len)
strbuf_addstr(scratch, DISPLAY_PREFIX); strbuf_addstr(scratch, DISPLAY_PREFIX);
/*
* A use case that we should not add clear-to-eol suffix
* to empty lines:
*
* For progress reporting we may receive a bunch of
* percentage updates followed by '\r' to remain on the
* same line, and at the end receive a single '\n' to
* move to the next line. We should preserve the final
* status report line by not appending clear-to-eol
* suffix to this single line break.
*/
if (linelen > 0) { if (linelen > 0) {
maybe_colorize_sideband(scratch, b, linelen); maybe_colorize_sideband(scratch, b, linelen);
strbuf_addstr(scratch, suffix); strbuf_addstr(scratch, suffix);

View file

@ -6,50 +6,44 @@
# NOTE: Never calling this function from a subshell since variable # NOTE: Never calling this function from a subshell since variable
# assignments will disappear when subshell exits. # assignments will disappear when subshell exits.
create_commits_in () { create_commits_in () {
repo="$1" && repo="$1" && test -d "$repo" ||
if ! parent=$(git -C "$repo" rev-parse HEAD^{} --) error "Repository $repo does not exist."
then
parent=
fi &&
T=$(git -C "$repo" write-tree) &&
shift && shift &&
while test $# -gt 0 while test $# -gt 0
do do
name=$1 && name=$1 &&
test_tick && shift &&
if test -z "$parent" test_commit -C "$repo" --no-tag "$name" &&
then eval $name=$(git -C "$repo" rev-parse HEAD)
oid=$(echo $name | git -C "$repo" commit-tree $T) done
else }
oid=$(echo $name | git -C "$repo" commit-tree -p $parent $T)
fi && get_abbrev_oid () {
eval $name=$oid && oid=$1 &&
parent=$oid && suffix=${oid#???????} &&
shift || oid=${oid%$suffix} &&
return 1 if test -n "$oid"
done && then
git -C "$repo" update-ref refs/heads/main $oid echo "$oid"
else
echo "undefined-oid"
fi
} }
# Format the output of git-push, git-show-ref and other commands to make a # Format the output of git-push, git-show-ref and other commands to make a
# user-friendly and stable text. We can easily prepare the expect text # user-friendly and stable text. We can easily prepare the expect text
# without having to worry about future changes of the commit ID and spaces # without having to worry about changes of the commit ID (full or abbrev.)
# of the output. Single quotes are replaced with double quotes, because # of the output. Single quotes are replaced with double quotes, because
# it is boring to prepare unquoted single quotes in expect text. We also # it is boring to prepare unquoted single quotes in expect text. We also
# remove some locale error messages. The emitted human-readable errors are # remove some locale error messages. The emitted human-readable errors are
# redundant to the more machine-readable output the tests already assert. # redundant to the more machine-readable output the tests already assert.
make_user_friendly_and_stable_output () { make_user_friendly_and_stable_output () {
sed \ sed \
-e "s/ *\$//" \
-e "s/ */ /g" \
-e "s/'/\"/g" \ -e "s/'/\"/g" \
-e "s/ / /g" \ -e "s/$(get_abbrev_oid $A)[0-9a-f]*/<COMMIT-A>/g" \
-e "s/$A/<COMMIT-A>/g" \ -e "s/$(get_abbrev_oid $B)[0-9a-f]*/<COMMIT-B>/g" \
-e "s/$B/<COMMIT-B>/g" \ -e "s/$(get_abbrev_oid $TAG)[0-9a-f]*/<TAG-v123>/g" \
-e "s/$TAG/<TAG-v123>/g" \
-e "s/$ZERO_OID/<ZERO-OID>/g" \ -e "s/$ZERO_OID/<ZERO-OID>/g" \
-e "s/$(echo $A | cut -c1-7)[0-9a-f]*/<OID-A>/g" \
-e "s/$(echo $B | cut -c1-7)[0-9a-f]*/<OID-B>/g" \
-e "s#To $URL_PREFIX/upstream.git#To <URL/of/upstream.git>#" \ -e "s#To $URL_PREFIX/upstream.git#To <URL/of/upstream.git>#" \
-e "/^error: / d" -e "/^error: / d"
} }
@ -59,6 +53,10 @@ filter_out_user_friendly_and_stable_output () {
sed -n ${1+"$@"} sed -n ${1+"$@"}
} }
format_and_save_expect () {
sed -e 's/^> //' -e 's/Z$//' >expect
}
test_cmp_refs () { test_cmp_refs () {
indir= indir=
if test "$1" = "-C" if test "$1" = "-C"

View file

@ -7,16 +7,16 @@ test_expect_success "git-push ($PROTOCOL)" '
HEAD:refs/heads/next \ HEAD:refs/heads/next \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> main > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> main
* [new branch] HEAD -> next > * [new branch] HEAD -> next
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -38,10 +38,10 @@ test_expect_success "git-push --atomic ($PROTOCOL)" '
-e "/^To / { p; }" \ -e "/^To / { p; }" \
-e "/^ ! / { p; }" \ -e "/^ ! / { p; }" \
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [rejected] main -> main (non-fast-forward) > ! [rejected] main -> main (non-fast-forward)
! [rejected] <COMMIT-B> -> next (atomic push failed) > ! [rejected] <COMMIT-B> -> next (atomic push failed)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -63,14 +63,14 @@ test_expect_success "non-fast-forward git-push ($PROTOCOL)" '
$B:refs/heads/next \ $B:refs/heads/next \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/next > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/next Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/next > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> next > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> next
! [rejected] main -> main (non-fast-forward) > ! [rejected] main -> main (non-fast-forward)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -92,25 +92,25 @@ test_expect_success "git-push -f ($PROTOCOL)" '
HEAD:refs/heads/a/b/c \ HEAD:refs/heads/a/b/c \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: pre-receive< <COMMIT-B> <ZERO-OID> refs/heads/next > remote: pre-receive< <COMMIT-B> <ZERO-OID> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: post-receive< <COMMIT-B> <ZERO-OID> refs/heads/next > remote: post-receive< <COMMIT-B> <ZERO-OID> refs/heads/next Z
remote: post-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: post-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
+ <OID-B>...<OID-A> main -> main (forced update) > + <COMMIT-B>...<COMMIT-A> main -> main (forced update)
- [deleted] next > - [deleted] next
* [new tag] v123 -> v123 > * [new tag] v123 -> v123
* [new reference] main -> refs/review/main/topic > * [new reference] main -> refs/review/main/topic
* [new branch] HEAD -> a/b/c > * [new branch] HEAD -> a/b/c
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -7,17 +7,17 @@ test_expect_success "git-push ($PROTOCOL/porcelain)" '
HEAD:refs/heads/next \ HEAD:refs/heads/next \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<COMMIT-B>:refs/heads/main <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/main <COMMIT-A>..<COMMIT-B>
* HEAD:refs/heads/next [new branch] > * HEAD:refs/heads/next [new branch]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -38,12 +38,12 @@ test_expect_success "git-push --atomic ($PROTOCOL/porcelain)" '
filter_out_user_friendly_and_stable_output \ filter_out_user_friendly_and_stable_output \
-e "s/^# GETTEXT POISON #//" \ -e "s/^# GETTEXT POISON #//" \
-e "/^To / { p; }" \ -e "/^To / { p; }" \
-e "/^! / { p; }" \ -e "/^!/ { p; }" \
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! refs/heads/main:refs/heads/main [rejected] (non-fast-forward) > ! refs/heads/main:refs/heads/main [rejected] (non-fast-forward)
! <COMMIT-B>:refs/heads/next [rejected] (atomic push failed) > ! <COMMIT-B>:refs/heads/next [rejected] (atomic push failed)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -65,15 +65,15 @@ test_expect_success "non-fast-forward git-push ($PROTOCOL/porcelain)" '
$B:refs/heads/next \ $B:refs/heads/next \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/next > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/next Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/next > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<COMMIT-B>:refs/heads/next <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/next <COMMIT-A>..<COMMIT-B>
! refs/heads/main:refs/heads/main [rejected] (non-fast-forward) > ! refs/heads/main:refs/heads/main [rejected] (non-fast-forward)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -95,26 +95,26 @@ test_expect_success "git-push -f ($PROTOCOL/porcelain)" '
HEAD:refs/heads/a/b/c \ HEAD:refs/heads/a/b/c \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: pre-receive< <COMMIT-B> <ZERO-OID> refs/heads/next > remote: pre-receive< <COMMIT-B> <ZERO-OID> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: post-receive< <COMMIT-B> <ZERO-OID> refs/heads/next > remote: post-receive< <COMMIT-B> <ZERO-OID> refs/heads/next Z
remote: post-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: post-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/review/main/topic Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/a/b/c Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
+ refs/heads/main:refs/heads/main <OID-B>...<OID-A> (forced update) > + refs/heads/main:refs/heads/main <COMMIT-B>...<COMMIT-A> (forced update)
- :refs/heads/next [deleted] > - :refs/heads/next [deleted]
* refs/tags/v123:refs/tags/v123 [new tag] > * refs/tags/v123:refs/tags/v123 [new tag]
* refs/heads/main:refs/review/main/topic [new reference] > * refs/heads/main:refs/review/main/topic [new reference]
* HEAD:refs/heads/a/b/c [new branch] > * HEAD:refs/heads/a/b/c [new branch]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,10 +14,10 @@ test_expect_success "git-push is declined ($PROTOCOL/porcelain)" '
HEAD:refs/heads/next \ HEAD:refs/heads/next \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! <COMMIT-B>:refs/heads/main [remote rejected] (pre-receive hook declined) > ! <COMMIT-B>:refs/heads/main [remote rejected] (pre-receive hook declined)
! HEAD:refs/heads/next [remote rejected] (pre-receive hook declined) > ! HEAD:refs/heads/next [remote rejected] (pre-receive hook declined)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -7,16 +7,16 @@ test_expect_success "proc-receive: no hook, fail to push special ref ($PROTOCOL)
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: error: cannot find hook "proc-receive" > remote: error: cannot find hook "proc-receive" Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new branch] HEAD -> next > * [new branch] HEAD -> next
! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook) > ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -41,16 +41,16 @@ test_expect_success "proc-receive: no hook, all failed for atomic push ($PROTOCO
HEAD:next \ HEAD:next \
HEAD:refs/for/main/topic >out-$test_count 2>&1 && HEAD:refs/for/main/topic >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: error: cannot find hook "proc-receive" > remote: error: cannot find hook "proc-receive" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] <COMMIT-B> -> main (fail to run proc-receive hook) > ! [remote rejected] <COMMIT-B> -> main (fail to run proc-receive hook)
! [remote rejected] HEAD -> next (fail to run proc-receive hook) > ! [remote rejected] HEAD -> next (fail to run proc-receive hook)
! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook) > ! [remote rejected] HEAD -> refs/for/main/topic (fail to run proc-receive hook)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -7,16 +7,16 @@ test_expect_success "proc-receive: no hook, fail to push special ref ($PROTOCOL/
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: error: cannot find hook "proc-receive" > remote: error: cannot find hook "proc-receive" Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/heads/next [new branch] > * HEAD:refs/heads/next [new branch]
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) > ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -42,17 +42,17 @@ test_expect_success "proc-receive: no hook, all failed for atomic push ($PROTOCO
HEAD:next \ HEAD:next \
HEAD:refs/for/main/topic >out-$test_count 2>&1 && HEAD:refs/for/main/topic >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: error: cannot find hook "proc-receive" > remote: error: cannot find hook "proc-receive" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! <COMMIT-B>:refs/heads/main [remote rejected] (fail to run proc-receive hook) > ! <COMMIT-B>:refs/heads/main [remote rejected] (fail to run proc-receive hook)
! HEAD:refs/heads/next [remote rejected] (fail to run proc-receive hook) > ! HEAD:refs/heads/next [remote rejected] (fail to run proc-receive hook)
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) > ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -29,8 +29,8 @@ test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL)" '
# message ("remote: fatal: the remote end hung up unexpectedly") which # message ("remote: fatal: the remote end hung up unexpectedly") which
# is different from the remote HTTP server with different locale settings. # is different from the remote HTTP server with different locale settings.
grep "^remote: error:" <actual >actual-error && grep "^remote: error:" <actual >actual-error &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: error: proc-receive version "2" is not supported > remote: error: proc-receive version "2" is not supported Z
EOF EOF
test_cmp expect actual-error && test_cmp expect actual-error &&
@ -208,17 +208,17 @@ test_expect_success "proc-receive: bad protocol (no report, $PROTOCOL)" '
HEAD:refs/heads/next \ HEAD:refs/heads/next \
HEAD:refs/for/main/topic >out-$test_count 2>&1 && HEAD:refs/for/main/topic >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new branch] HEAD -> next > * [new branch] HEAD -> next
! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -251,15 +251,15 @@ test_expect_success "proc-receive: bad protocol (no ref, $PROTOCOL)" '
HEAD:refs/for/main/topic\ HEAD:refs/for/main/topic\
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok > remote: proc-receive> ok Z
remote: error: proc-receive reported incomplete status line: "ok" > remote: error: proc-receive reported incomplete status line: "ok" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -284,15 +284,15 @@ test_expect_success "proc-receive: bad protocol (unknown status, $PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> xx refs/for/main/topic > remote: proc-receive> xx refs/for/main/topic Z
remote: error: proc-receive reported bad status "xx" on ref "refs/for/main/topic" > remote: error: proc-receive reported bad status "xx" on ref "refs/for/main/topic" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -20,7 +20,7 @@ test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL/porc
<actual >actual-report && <actual >actual-report &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual-report && test_cmp expect actual-report &&
@ -29,8 +29,8 @@ test_expect_success "proc-receive: bad protocol (unknown version, $PROTOCOL/porc
# message ("remote: fatal: the remote end hung up unexpectedly") which # message ("remote: fatal: the remote end hung up unexpectedly") which
# is different from the remote HTTP server with different locale settings. # is different from the remote HTTP server with different locale settings.
grep "^remote: error:" <actual >actual-error && grep "^remote: error:" <actual >actual-error &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: error: proc-receive version "2" is not supported > remote: error: proc-receive version "2" is not supported Z
EOF EOF
test_cmp expect actual-error && test_cmp expect actual-error &&
@ -58,7 +58,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-version, $PROTO
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -89,7 +89,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-version, $PROT
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -120,7 +120,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-commands, $PROT
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -152,7 +152,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-read-push-options, $
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -182,7 +182,7 @@ test_expect_success "proc-receive: bad protocol (hook --die-write-report, $PROTO
<out-$test_count >actual && <out-$test_count >actual &&
cat >expect <<-EOF && cat >expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook) ! HEAD:refs/for/main/topic [remote rejected] (fail to run proc-receive hook)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -208,18 +208,18 @@ test_expect_success "proc-receive: bad protocol (no report, $PROTOCOL/porcelain)
HEAD:refs/heads/next \ HEAD:refs/heads/next \
HEAD:refs/for/main/topic >out-$test_count 2>&1 && HEAD:refs/for/main/topic >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/heads/next [new branch] > * HEAD:refs/heads/next [new branch]
! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -251,16 +251,16 @@ test_expect_success "proc-receive: bad protocol (no ref, $PROTOCOL/porcelain)" '
HEAD:refs/for/main/topic\ HEAD:refs/for/main/topic\
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok > remote: proc-receive> ok Z
remote: error: proc-receive reported incomplete status line: "ok" > remote: error: proc-receive reported incomplete status line: "ok" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -285,16 +285,16 @@ test_expect_success "proc-receive: bad protocol (unknown status, $PROTOCOL/porce
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> xx refs/for/main/topic > remote: proc-receive> xx refs/for/main/topic Z
remote: error: proc-receive reported bad status "xx" on ref "refs/for/main/topic" > remote: error: proc-receive reported bad status "xx" on ref "refs/for/main/topic" Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,14 +14,14 @@ test_expect_success "proc-receive: fail to update (ng, no message, $PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ng refs/for/main/topic > remote: proc-receive> ng refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/main/topic (failed) > ! [remote rejected] HEAD -> refs/for/main/topic (failed)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -46,14 +46,14 @@ test_expect_success "proc-receive: fail to update (ng, with message, $PROTOCOL)"
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ng refs/for/main/topic error msg > remote: proc-receive> ng refs/for/main/topic error msg Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/main/topic (error msg) > ! [remote rejected] HEAD -> refs/for/main/topic (error msg)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,15 +14,15 @@ test_expect_success "proc-receive: fail to update (ng, no message, $PROTOCOL/por
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ng refs/for/main/topic > remote: proc-receive> ng refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (failed) > ! HEAD:refs/for/main/topic [remote rejected] (failed)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -47,15 +47,15 @@ test_expect_success "proc-receive: fail to update (ng, with message, $PROTOCOL/p
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ng refs/for/main/topic error msg > remote: proc-receive> ng refs/for/main/topic error msg Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (error msg) > ! HEAD:refs/for/main/topic [remote rejected] (error msg)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,19 +15,19 @@ test_expect_success "proc-receive: report unexpected ref ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: error: proc-receive reported status on unexpected ref: refs/heads/main > remote: error: proc-receive reported status on unexpected ref: refs/heads/main Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> main > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> main
! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,20 +15,20 @@ test_expect_success "proc-receive: report unexpected ref ($PROTOCOL/porcelain)"
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: error: proc-receive reported status on unexpected ref: refs/heads/main > remote: error: proc-receive reported status on unexpected ref: refs/heads/main Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<COMMIT-B>:refs/heads/main <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/main <COMMIT-A>..<COMMIT-B>
! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,15 +14,15 @@ test_expect_success "proc-receive: report unknown reference ($PROTOCOL)" '
HEAD:refs/for/a/b/c/my/topic \ HEAD:refs/for/a/b/c/my/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: error: proc-receive reported status on unknown ref: refs/for/main/topic > remote: error: proc-receive reported status on unknown ref: refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/a/b/c/my/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/a/b/c/my/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,16 +14,16 @@ test_expect_success "proc-receive: report unknown reference ($PROTOCOL/porcelain
HEAD:refs/for/a/b/c/my/topic \ HEAD:refs/for/a/b/c/my/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/my/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: error: proc-receive reported status on unknown ref: refs/for/main/topic > remote: error: proc-receive reported status on unknown ref: refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/a/b/c/my/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/a/b/c/my/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -52,19 +52,19 @@ test_expect_success "proc-receive: ignore push-options for version 0 ($PROTOCOL)
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new branch] HEAD -> next > * [new branch] HEAD -> next
* [new reference] HEAD -> refs/for/main/topic > * [new reference] HEAD -> refs/for/main/topic
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -101,22 +101,22 @@ test_expect_success "proc-receive: push with options ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive: atomic push_options > remote: proc-receive: atomic push_options Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< issue=123 > remote: proc-receive< issue=123 Z
remote: proc-receive< reviewer=user1 > remote: proc-receive< reviewer=user1 Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new branch] HEAD -> next > * [new branch] HEAD -> next
* [new reference] HEAD -> refs/for/main/topic > * [new reference] HEAD -> refs/for/main/topic
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -54,20 +54,20 @@ test_expect_success "proc-receive: ignore push-options for version 0 ($PROTOCOL/
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/heads/next [new branch] > * HEAD:refs/heads/next [new branch]
* HEAD:refs/for/main/topic [new reference] > * HEAD:refs/for/main/topic [new reference]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -105,23 +105,23 @@ test_expect_success "proc-receive: push with options ($PROTOCOL/porcelain)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive: atomic push_options > remote: proc-receive: atomic push_options Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< issue=123 > remote: proc-receive< issue=123 Z
remote: proc-receive< reviewer=user1 > remote: proc-receive< reviewer=user1 Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/heads/next [new branch] > * HEAD:refs/heads/next [new branch]
* HEAD:refs/for/main/topic [new reference] > * HEAD:refs/for/main/topic [new reference]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,16 +14,16 @@ test_expect_success "proc-receive: ok ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/for/main/topic > * [new reference] HEAD -> refs/for/main/topic
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,17 +14,17 @@ test_expect_success "proc-receive: ok ($PROTOCOL/porcelain)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/for/main/topic [new reference] > * HEAD:refs/for/main/topic [new reference]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,16 +15,16 @@ test_expect_success "proc-receive: report option without matching ok ($PROTOCOL)
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: error: proc-receive reported "option" without a matching "ok/ng" directive > remote: error: proc-receive reported "option" without a matching "ok/ng" directive Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/main/topic (proc-receive failed to report status)
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -46,17 +46,17 @@ test_expect_success "proc-receive: report option refname ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/pull/123/head > * [new reference] HEAD -> refs/pull/123/head
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -78,18 +78,18 @@ test_expect_success "proc-receive: report option refname and forced-update ($PRO
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/pull/123/head > * [new reference] HEAD -> refs/pull/123/head
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -112,18 +112,18 @@ test_expect_success "proc-receive: report option refname and old-oid ($PROTOCOL)
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/123/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-B>..<OID-A> HEAD -> refs/pull/123/head > <COMMIT-B>..<COMMIT-A> HEAD -> refs/pull/123/head
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -145,17 +145,17 @@ test_expect_success "proc-receive: report option old-oid ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/for/main/topic > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-B>..<OID-A> HEAD -> refs/for/main/topic > <COMMIT-B>..<COMMIT-A> HEAD -> refs/for/main/topic
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -178,18 +178,18 @@ test_expect_success "proc-receive: report option old-oid and new-oid ($PROTOCOL)
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> HEAD -> refs/for/main/topic > <COMMIT-A>..<COMMIT-B> HEAD -> refs/for/main/topic
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -219,31 +219,31 @@ test_expect_success "proc-receive: report with multiple rewrites ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/a/b/c/topic > remote: proc-receive> ok refs/for/a/b/c/topic Z
remote: proc-receive> ok refs/for/next/topic > remote: proc-receive> ok refs/for/next/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/pull/123/head > * [new reference] HEAD -> refs/pull/123/head
* [new reference] HEAD -> refs/for/a/b/c/topic > * [new reference] HEAD -> refs/for/a/b/c/topic
+ <OID-B>...<OID-A> HEAD -> refs/pull/124/head (forced update) > + <COMMIT-B>...<COMMIT-A> HEAD -> refs/pull/124/head (forced update)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,17 +15,17 @@ test_expect_success "proc-receive: report option without matching ok ($PROTOCOL/
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: error: proc-receive reported "option" without a matching "ok/ng" directive > remote: error: proc-receive reported "option" without a matching "ok/ng" directive Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/main/topic [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -47,18 +47,18 @@ test_expect_success "proc-receive: report option refname ($PROTOCOL/porcelain)"
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/pull/123/head [new reference] > * HEAD:refs/pull/123/head [new reference]
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -81,19 +81,19 @@ test_expect_success "proc-receive: report option refname and forced-update ($PRO
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/pull/123/head [new reference] > * HEAD:refs/pull/123/head [new reference]
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -116,19 +116,19 @@ test_expect_success "proc-receive: report option refname and old-oid ($PROTOCOL/
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/123/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/123/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
HEAD:refs/pull/123/head <OID-B>..<OID-A> > HEAD:refs/pull/123/head <COMMIT-B>..<COMMIT-A>
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -150,18 +150,18 @@ test_expect_success "proc-receive: report option old-oid ($PROTOCOL/porcelain)"
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/for/main/topic > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
HEAD:refs/for/main/topic <OID-B>..<OID-A> > HEAD:refs/for/main/topic <COMMIT-B>..<COMMIT-A>
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -184,19 +184,19 @@ test_expect_success "proc-receive: report option old-oid and new-oid ($PROTOCOL/
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
HEAD:refs/for/main/topic <OID-A>..<OID-B> > HEAD:refs/for/main/topic <COMMIT-A>..<COMMIT-B>
Done > Done
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
@ -227,32 +227,32 @@ test_expect_success "proc-receive: report with multiple rewrites ($PROTOCOL/porc
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/a/b/c/topic > remote: proc-receive> ok refs/for/a/b/c/topic Z
remote: proc-receive> ok refs/for/next/topic > remote: proc-receive> ok refs/for/next/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/123/head Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/a/b/c/topic Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/pull/123/head [new reference] > * HEAD:refs/pull/123/head [new reference]
* HEAD:refs/for/a/b/c/topic [new reference] > * HEAD:refs/for/a/b/c/topic [new reference]
+ HEAD:refs/pull/124/head <OID-B>...<OID-A> (forced update) > + HEAD:refs/pull/124/head <COMMIT-B>...<COMMIT-A> (forced update)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,17 +15,17 @@ test_expect_success "proc-receive: fall throught, let receive-pack to execute ($
$B:refs/for/main/topic \ $B:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] <COMMIT-B> -> refs/for/main/topic > * [new reference] <COMMIT-B> -> refs/for/main/topic
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -15,18 +15,18 @@ test_expect_success "proc-receive: fall throught, let receive-pack to execute ($
$B:refs/for/main/topic \ $B:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic > remote: post-receive< <ZERO-OID> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* <COMMIT-B>:refs/for/main/topic [new reference] > * <COMMIT-B>:refs/for/main/topic [new reference]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -39,30 +39,30 @@ test_expect_success "proc-receive: multiple rewrite for one ref, no refname for
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/1 > remote: proc-receive> option refname refs/changes/24/124/1 Z
remote: proc-receive> option old-oid <ZERO-OID> > remote: proc-receive> option old-oid <ZERO-OID> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/25/125/1 > remote: proc-receive> option refname refs/changes/25/125/1 Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/25/125/1 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/25/125/1 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> HEAD -> refs/for/main/topic > <COMMIT-A>..<COMMIT-B> HEAD -> refs/for/main/topic
* [new reference] HEAD -> refs/changes/24/124/1 > * [new reference] HEAD -> refs/changes/24/124/1
<OID-A>..<OID-B> HEAD -> refs/changes/25/125/1 > <COMMIT-A>..<COMMIT-B> HEAD -> refs/changes/25/125/1
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -113,31 +113,31 @@ test_expect_success "proc-receive: multiple rewrites for one ref, no refname for
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/1 > remote: proc-receive> option refname refs/changes/24/124/1 Z
remote: proc-receive> option old-oid <ZERO-OID> > remote: proc-receive> option old-oid <ZERO-OID> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/25/125/1 > remote: proc-receive> option refname refs/changes/25/125/1 Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/changes/25/125/1 > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/changes/25/125/1 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/changes/24/124/1 > * [new reference] HEAD -> refs/changes/24/124/1
<OID-A>..<OID-B> HEAD -> refs/for/main/topic > <COMMIT-A>..<COMMIT-B> HEAD -> refs/for/main/topic
+ <OID-B>...<OID-A> HEAD -> refs/changes/25/125/1 (forced update) > + <COMMIT-B>...<COMMIT-A> HEAD -> refs/changes/25/125/1 (forced update)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -182,23 +182,23 @@ test_expect_success "proc-receive: multiple rewrites for one ref ($PROTOCOL)" '
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/23/123/1 > remote: proc-receive> option refname refs/changes/23/123/1 Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/2 > remote: proc-receive> option refname refs/changes/24/124/2 Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/23/123/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/23/123/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/24/124/2 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/24/124/2 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* [new reference] HEAD -> refs/changes/23/123/1 > * [new reference] HEAD -> refs/changes/23/123/1
<OID-A>..<OID-B> HEAD -> refs/changes/24/124/2 > <COMMIT-A>..<COMMIT-B> HEAD -> refs/changes/24/124/2
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -24,31 +24,31 @@ test_expect_success "proc-receive: multiple rewrite for one ref, no refname for
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/1 > remote: proc-receive> option refname refs/changes/24/124/1 Z
remote: proc-receive> option old-oid <ZERO-OID> > remote: proc-receive> option old-oid <ZERO-OID> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/25/125/1 > remote: proc-receive> option refname refs/changes/25/125/1 Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/25/125/1 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/25/125/1 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
HEAD:refs/for/main/topic <OID-A>..<OID-B> > HEAD:refs/for/main/topic <COMMIT-A>..<COMMIT-B>
* HEAD:refs/changes/24/124/1 [new reference] > * HEAD:refs/changes/24/124/1 [new reference]
HEAD:refs/changes/25/125/1 <OID-A>..<OID-B> > HEAD:refs/changes/25/125/1 <COMMIT-A>..<COMMIT-B>
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -84,32 +84,32 @@ test_expect_success "proc-receive: multiple rewrites for one ref, no refname for
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/1 > remote: proc-receive> option refname refs/changes/24/124/1 Z
remote: proc-receive> option old-oid <ZERO-OID> > remote: proc-receive> option old-oid <ZERO-OID> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/25/125/1 > remote: proc-receive> option refname refs/changes/25/125/1 Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/24/124/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/changes/25/125/1 > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/changes/25/125/1 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/changes/24/124/1 [new reference] > * HEAD:refs/changes/24/124/1 [new reference]
HEAD:refs/for/main/topic <OID-A>..<OID-B> > HEAD:refs/for/main/topic <COMMIT-A>..<COMMIT-B>
+ HEAD:refs/changes/25/125/1 <OID-B>...<OID-A> (forced update) > + HEAD:refs/changes/25/125/1 <COMMIT-B>...<COMMIT-A> (forced update)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -139,24 +139,24 @@ test_expect_success "proc-receive: multiple rewrites for one ref ($PROTOCOL/porc
HEAD:refs/for/main/topic \ HEAD:refs/for/main/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/23/123/1 > remote: proc-receive> option refname refs/changes/23/123/1 Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/changes/24/124/2 > remote: proc-receive> option refname refs/changes/24/124/2 Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/23/123/1 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/changes/23/123/1 Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/24/124/2 > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/changes/24/124/2 Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
* HEAD:refs/changes/23/123/1 [new reference] > * HEAD:refs/changes/23/123/1 [new reference]
HEAD:refs/changes/24/124/2 <OID-A>..<OID-B> > HEAD:refs/changes/24/124/2 <COMMIT-A>..<COMMIT-B>
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -26,43 +26,43 @@ test_expect_success "proc-receive: report update of mixed refs ($PROTOCOL)" '
HEAD:refs/for/next/topic3 \ HEAD:refs/for/next/topic3 \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 Z
remote: proc-receive> ok refs/for/next/topic2 > remote: proc-receive> ok refs/for/next/topic2 Z
remote: proc-receive> ng refs/for/next/topic1 fail to call Web API > remote: proc-receive> ng refs/for/next/topic1 fail to call Web API Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/for/main/topic > remote: proc-receive> option refname refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> main > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> main
* [new branch] HEAD -> bar > * [new branch] HEAD -> bar
* [new branch] HEAD -> baz > * [new branch] HEAD -> baz
* [new reference] HEAD -> refs/for/next/topic2 > * [new reference] HEAD -> refs/for/next/topic2
* [new branch] HEAD -> foo > * [new branch] HEAD -> foo
<OID-A>..<OID-B> HEAD -> refs/for/main/topic > <COMMIT-A>..<COMMIT-B> HEAD -> refs/for/main/topic
! [remote rejected] HEAD -> refs/for/next/topic1 (fail to call Web API) > ! [remote rejected] HEAD -> refs/for/next/topic1 (fail to call Web API)
! [remote rejected] HEAD -> refs/for/next/topic3 (proc-receive failed to report status) > ! [remote rejected] HEAD -> refs/for/next/topic3 (proc-receive failed to report status)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -26,44 +26,44 @@ test_expect_success "proc-receive: report update of mixed refs ($PROTOCOL/porcel
HEAD:refs/for/next/topic3 \ HEAD:refs/for/next/topic3 \
>out-$test_count 2>&1 && >out-$test_count 2>&1 &&
make_user_friendly_and_stable_output <out-$test_count >actual && make_user_friendly_and_stable_output <out-$test_count >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic1 Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic3 Z
remote: proc-receive> ok refs/for/next/topic2 > remote: proc-receive> ok refs/for/next/topic2 Z
remote: proc-receive> ng refs/for/next/topic1 fail to call Web API > remote: proc-receive> ng refs/for/next/topic1 fail to call Web API Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/for/main/topic > remote: proc-receive> option refname refs/for/main/topic Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/bar Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/baz Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic2 Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/for/main/topic Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<COMMIT-B>:refs/heads/main <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/main <COMMIT-A>..<COMMIT-B>
* HEAD:refs/heads/bar [new branch] > * HEAD:refs/heads/bar [new branch]
* HEAD:refs/heads/baz [new branch] > * HEAD:refs/heads/baz [new branch]
* HEAD:refs/for/next/topic2 [new reference] > * HEAD:refs/for/next/topic2 [new reference]
* HEAD:refs/heads/foo [new branch] > * HEAD:refs/heads/foo [new branch]
HEAD:refs/for/main/topic <OID-A>..<OID-B> > HEAD:refs/for/main/topic <COMMIT-A>..<COMMIT-B>
! HEAD:refs/for/next/topic1 [remote rejected] (fail to call Web API) > ! HEAD:refs/for/next/topic1 [remote rejected] (fail to call Web API)
! HEAD:refs/for/next/topic3 [remote rejected] (proc-receive failed to report status) > ! HEAD:refs/for/next/topic3 [remote rejected] (proc-receive failed to report status)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -50,46 +50,46 @@ test_expect_success "proc-receive: process all refs ($PROTOCOL)" '
HEAD:refs/for/next/topic \ HEAD:refs/for/next/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: proc-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: proc-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/heads/foo > remote: proc-receive> ok refs/heads/foo Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/heads/bar > remote: proc-receive> ok refs/heads/bar Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/next/topic > remote: proc-receive> ok refs/for/next/topic Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: post-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: post-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> bar > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> bar
- [deleted] foo > - [deleted] foo
+ <OID-B>...<OID-A> HEAD -> main (forced update) > + <COMMIT-B>...<COMMIT-A> HEAD -> main (forced update)
<OID-A>..<OID-B> HEAD -> refs/pull/123/head > <COMMIT-A>..<COMMIT-B> HEAD -> refs/pull/123/head
+ <OID-B>...<OID-A> HEAD -> refs/pull/124/head (forced update) > + <COMMIT-B>...<COMMIT-A> HEAD -> refs/pull/124/head (forced update)
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -50,47 +50,47 @@ test_expect_success "proc-receive: process all refs ($PROTOCOL/porcelain)" '
HEAD:refs/for/next/topic \ HEAD:refs/for/next/topic \
>out 2>&1 && >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: pre-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: proc-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: proc-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/main/topic Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/heads/foo > remote: proc-receive> ok refs/heads/foo Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/heads/bar > remote: proc-receive> ok refs/heads/bar Z
remote: proc-receive> option fall-through > remote: proc-receive> option fall-through Z
remote: proc-receive> ok refs/for/main/topic > remote: proc-receive> ok refs/for/main/topic Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/for/next/topic > remote: proc-receive> ok refs/for/next/topic Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: proc-receive> option old-oid <COMMIT-B> > remote: proc-receive> option old-oid <COMMIT-B> Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: proc-receive> option forced-update > remote: proc-receive> option forced-update Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/bar Z
remote: post-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo > remote: post-receive< <COMMIT-A> <ZERO-OID> refs/heads/foo Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/heads/main Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head Z
remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head > remote: post-receive< <COMMIT-B> <COMMIT-A> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<COMMIT-B>:refs/heads/bar <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/bar <COMMIT-A>..<COMMIT-B>
- :refs/heads/foo [deleted] > - :refs/heads/foo [deleted]
+ HEAD:refs/heads/main <OID-B>...<OID-A> (forced update) > + HEAD:refs/heads/main <COMMIT-B>...<COMMIT-A> (forced update)
HEAD:refs/pull/123/head <OID-A>..<OID-B> > HEAD:refs/pull/123/head <COMMIT-A>..<COMMIT-B>
+ HEAD:refs/pull/124/head <OID-B>...<OID-A> (forced update) > + HEAD:refs/pull/124/head <COMMIT-B>...<COMMIT-A> (forced update)
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -29,25 +29,25 @@ test_expect_success "proc-receive: update branch and new tag ($PROTOCOL)" '
$B:refs/heads/main \ $B:refs/heads/main \
v123 >out 2>&1 && v123 >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: pre-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/main > remote: proc-receive< <COMMIT-A> <COMMIT-B> refs/heads/main Z
remote: proc-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 > remote: proc-receive< <ZERO-OID> <TAG-v123> refs/tags/v123 Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <COMMIT-B> > remote: proc-receive> option new-oid <COMMIT-B> Z
remote: proc-receive> ok refs/tags/v123 > remote: proc-receive> ok refs/tags/v123 Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/pull/123/head Z
remote: post-receive< <ZERO-OID> <TAG-v123> refs/pull/124/head > remote: post-receive< <ZERO-OID> <TAG-v123> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
<OID-A>..<OID-B> <COMMIT-B> -> refs/pull/123/head > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> refs/pull/123/head
* [new reference] v123 -> refs/pull/124/head > * [new reference] v123 -> refs/pull/124/head
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -93,32 +93,32 @@ test_expect_success "proc-receive: create/delete branch, and delete tag ($PROTOC
$A:refs/heads/next \ $A:refs/heads/next \
:refs/tags/v123 >out 2>&1 && :refs/tags/v123 >out 2>&1 &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
remote: # pre-receive hook > remote: # pre-receive hook Z
remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/main > remote: pre-receive< <COMMIT-A> <ZERO-OID> refs/heads/main Z
remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic > remote: pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic Z
remote: pre-receive< <TAG-v123> <ZERO-OID> refs/tags/v123 > remote: pre-receive< <TAG-v123> <ZERO-OID> refs/tags/v123 Z
remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: # proc-receive hook > remote: # proc-receive hook Z
remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/main > remote: proc-receive< <COMMIT-A> <ZERO-OID> refs/heads/main Z
remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/heads/next > remote: proc-receive< <ZERO-OID> <COMMIT-A> refs/heads/next Z
remote: proc-receive> ok refs/heads/main > remote: proc-receive> ok refs/heads/main Z
remote: proc-receive> option refname refs/pull/123/head > remote: proc-receive> option refname refs/pull/123/head Z
remote: proc-receive> option old-oid <COMMIT-A> > remote: proc-receive> option old-oid <COMMIT-A> Z
remote: proc-receive> option new-oid <ZERO-OID> > remote: proc-receive> option new-oid <ZERO-OID> Z
remote: proc-receive> ok refs/heads/next > remote: proc-receive> ok refs/heads/next Z
remote: proc-receive> option refname refs/pull/124/head > remote: proc-receive> option refname refs/pull/124/head Z
remote: proc-receive> option new-oid <COMMIT-A> > remote: proc-receive> option new-oid <COMMIT-A> Z
remote: # post-receive hook > remote: # post-receive hook Z
remote: post-receive< <COMMIT-A> <ZERO-OID> refs/pull/123/head > remote: post-receive< <COMMIT-A> <ZERO-OID> refs/pull/123/head Z
remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic > remote: post-receive< <COMMIT-A> <COMMIT-B> refs/heads/topic Z
remote: post-receive< <TAG-v123> <ZERO-OID> refs/tags/v123 > remote: post-receive< <TAG-v123> <ZERO-OID> refs/tags/v123 Z
remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/124/head > remote: post-receive< <ZERO-OID> <COMMIT-A> refs/pull/124/head Z
To <URL/of/upstream.git> > To <URL/of/upstream.git>
- [deleted] refs/pull/123/head > - [deleted] refs/pull/123/head
<OID-A>..<OID-B> <COMMIT-B> -> topic > <COMMIT-A>..<COMMIT-B> <COMMIT-B> -> topic
- [deleted] v123 > - [deleted] v123
* [new reference] <COMMIT-A> -> refs/pull/124/head > * [new reference] <COMMIT-A> -> refs/pull/124/head
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -14,29 +14,28 @@ test_description='Test git push porcelain output'
# NOTE: Never calling this function from a subshell since variable # NOTE: Never calling this function from a subshell since variable
# assignments will disappear when subshell exits. # assignments will disappear when subshell exits.
create_commits_in () { create_commits_in () {
repo="$1" && repo="$1" && test -d "$repo" ||
if ! parent=$(git -C "$repo" rev-parse HEAD^{} --) error "Repository $repo does not exist."
then
parent=
fi &&
T=$(git -C "$repo" write-tree) &&
shift && shift &&
while test $# -gt 0 while test $# -gt 0
do do
name=$1 && name=$1 &&
test_tick && shift &&
if test -z "$parent" test_commit -C "$repo" --no-tag "$name" &&
then eval $name=$(git -C "$repo" rev-parse HEAD)
oid=$(echo $name | git -C "$repo" commit-tree $T) done
else }
oid=$(echo $name | git -C "$repo" commit-tree -p $parent $T)
fi && get_abbrev_oid () {
eval $name=$oid && oid=$1 &&
parent=$oid && suffix=${oid#???????} &&
shift || oid=${oid%$suffix} &&
return 1 if test -n "$oid"
done && then
git -C "$repo" update-ref refs/heads/main $oid echo "$oid"
else
echo "undefined-oid"
fi
} }
# Format the output of git-push, git-show-ref and other commands to make a # Format the output of git-push, git-show-ref and other commands to make a
@ -45,17 +44,16 @@ create_commits_in () {
# of the output. # of the output.
make_user_friendly_and_stable_output () { make_user_friendly_and_stable_output () {
sed \ sed \
-e "s/ *\$//" \ -e "s/$(get_abbrev_oid $A)[0-9a-f]*/<COMMIT-A>/g" \
-e "s/ */ /g" \ -e "s/$(get_abbrev_oid $B)[0-9a-f]*/<COMMIT-B>/g" \
-e "s/ / /g" \
-e "s/$A/<COMMIT-A>/g" \
-e "s/$B/<COMMIT-B>/g" \
-e "s/$ZERO_OID/<ZERO-OID>/g" \ -e "s/$ZERO_OID/<ZERO-OID>/g" \
-e "s/$(echo $A | cut -c1-7)[0-9a-f]*/<OID-A>/g" \
-e "s/$(echo $B | cut -c1-7)[0-9a-f]*/<OID-B>/g" \
-e "s#To $URL_PREFIX/upstream.git#To <URL/of/upstream.git>#" -e "s#To $URL_PREFIX/upstream.git#To <URL/of/upstream.git>#"
} }
format_and_save_expect () {
sed -e 's/^> //' -e 's/Z$//' >expect
}
setup_upstream_and_workbench () { setup_upstream_and_workbench () {
# Upstream after setup : main(B) foo(A) bar(A) baz(A) # Upstream after setup : main(B) foo(A) bar(A) baz(A)
# Workbench after setup : main(A) # Workbench after setup : main(A)
@ -111,14 +109,14 @@ run_git_push_porcelain_output_test() {
next next
) >out && ) >out &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> > To <URL/of/upstream.git>
= refs/heads/baz:refs/heads/baz [up to date] > = refs/heads/baz:refs/heads/baz [up to date]
<COMMIT-B>:refs/heads/bar <OID-A>..<OID-B> > <COMMIT-B>:refs/heads/bar <COMMIT-A>..<COMMIT-B>
- :refs/heads/foo [deleted] > - :refs/heads/foo [deleted]
+ refs/heads/main:refs/heads/main <OID-B>...<OID-A> (forced update) > + refs/heads/main:refs/heads/main <COMMIT-B>...<COMMIT-A> (forced update)
* refs/heads/next:refs/heads/next [new branch] > * refs/heads/next:refs/heads/next [new branch]
Done > Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -148,12 +146,12 @@ run_git_push_porcelain_output_test() {
next next
) >out && ) >out &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
= refs/heads/next:refs/heads/next [up to date] > = refs/heads/next:refs/heads/next [up to date]
! refs/heads/bar:refs/heads/bar [rejected] (non-fast-forward) > ! refs/heads/bar:refs/heads/bar [rejected] (non-fast-forward)
! (delete):refs/heads/baz [rejected] (atomic push failed) > ! (delete):refs/heads/baz [rejected] (atomic push failed)
! refs/heads/main:refs/heads/main [rejected] (atomic push failed) > ! refs/heads/main:refs/heads/main [rejected] (atomic push failed)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -168,6 +166,7 @@ run_git_push_porcelain_output_test() {
EOF EOF
test_cmp expect actual test_cmp expect actual
' '
test_expect_success "prepare pre-receive hook ($PROTOCOL)" ' test_expect_success "prepare pre-receive hook ($PROTOCOL)" '
write_script "$upstream/hooks/pre-receive" <<-EOF write_script "$upstream/hooks/pre-receive" <<-EOF
exit 1 exit 1
@ -189,12 +188,12 @@ run_git_push_porcelain_output_test() {
next next
) >out && ) >out &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
= refs/heads/next:refs/heads/next [up to date] > = refs/heads/next:refs/heads/next [up to date]
! refs/heads/bar:refs/heads/bar [remote rejected] (pre-receive hook declined) > ! refs/heads/bar:refs/heads/bar [remote rejected] (pre-receive hook declined)
! :refs/heads/baz [remote rejected] (pre-receive hook declined) > ! :refs/heads/baz [remote rejected] (pre-receive hook declined)
! refs/heads/main:refs/heads/main [remote rejected] (pre-receive hook declined) > ! refs/heads/main:refs/heads/main [remote rejected] (pre-receive hook declined)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -227,12 +226,12 @@ run_git_push_porcelain_output_test() {
next next
) >out && ) >out &&
make_user_friendly_and_stable_output <out >actual && make_user_friendly_and_stable_output <out >actual &&
cat >expect <<-EOF && format_and_save_expect <<-EOF &&
To <URL/of/upstream.git> To <URL/of/upstream.git>
= refs/heads/next:refs/heads/next [up to date] > = refs/heads/next:refs/heads/next [up to date]
- :refs/heads/baz [deleted] > - :refs/heads/baz [deleted]
refs/heads/main:refs/heads/main <OID-A>..<OID-B> > refs/heads/main:refs/heads/main <COMMIT-A>..<COMMIT-B>
! refs/heads/bar:refs/heads/bar [rejected] (non-fast-forward) > ! refs/heads/bar:refs/heads/bar [rejected] (non-fast-forward)
Done Done
EOF EOF
test_cmp expect actual && test_cmp expect actual &&

View file

@ -94,7 +94,7 @@ get_abbrev_oid () {
# Format the output of git commands to make a user-friendly and stable # Format the output of git commands to make a user-friendly and stable
# text. We can easily prepare the expect text without having to worry # text. We can easily prepare the expect text without having to worry
# about future changes of the commit ID and spaces of the output. # about future changes of the commit ID.
make_user_friendly_and_stable_output () { make_user_friendly_and_stable_output () {
sed \ sed \
-e "s/$(get_abbrev_oid $A)[0-9a-f]*/<COMMIT-A>/g" \ -e "s/$(get_abbrev_oid $A)[0-9a-f]*/<COMMIT-A>/g" \
@ -115,8 +115,11 @@ make_user_friendly_and_stable_output () {
-e "s/$(get_abbrev_oid $P)[0-9a-f]*/<COMMIT-P>/g" \ -e "s/$(get_abbrev_oid $P)[0-9a-f]*/<COMMIT-P>/g" \
-e "s/$(get_abbrev_oid $TAG1)[0-9a-f]*/<TAG-1>/g" \ -e "s/$(get_abbrev_oid $TAG1)[0-9a-f]*/<TAG-1>/g" \
-e "s/$(get_abbrev_oid $TAG2)[0-9a-f]*/<TAG-2>/g" \ -e "s/$(get_abbrev_oid $TAG2)[0-9a-f]*/<TAG-2>/g" \
-e "s/$(get_abbrev_oid $TAG3)[0-9a-f]*/<TAG-3>/g" \ -e "s/$(get_abbrev_oid $TAG3)[0-9a-f]*/<TAG-3>/g"
-e "s/ *\$//" }
format_and_save_expect () {
sed -e 's/Z$//' >expect
} }
# (C) (D, pull/1/head, topic/1) # (C) (D, pull/1/head, topic/1)
@ -191,11 +194,11 @@ test_expect_success 'create bundle from special rev: main^!' '
git bundle verify special-rev.bdl | git bundle verify special-rev.bdl |
make_user_friendly_and_stable_output >actual && make_user_friendly_and_stable_output >actual &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
The bundle contains this ref: The bundle contains this ref:
<COMMIT-P> refs/heads/main <COMMIT-P> refs/heads/main
The bundle requires this ref: The bundle requires this ref:
<COMMIT-O> <COMMIT-O> Z
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -212,12 +215,12 @@ test_expect_success 'create bundle with --max-count option' '
git bundle verify max-count.bdl | git bundle verify max-count.bdl |
make_user_friendly_and_stable_output >actual && make_user_friendly_and_stable_output >actual &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
The bundle contains these 2 refs: The bundle contains these 2 refs:
<COMMIT-P> refs/heads/main <COMMIT-P> refs/heads/main
<TAG-1> refs/tags/v1 <TAG-1> refs/tags/v1
The bundle requires this ref: The bundle requires this ref:
<COMMIT-O> <COMMIT-O> Z
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -237,7 +240,7 @@ test_expect_success 'create bundle with --since option' '
git bundle verify since.bdl | git bundle verify since.bdl |
make_user_friendly_and_stable_output >actual && make_user_friendly_and_stable_output >actual &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
The bundle contains these 5 refs: The bundle contains these 5 refs:
<COMMIT-P> refs/heads/main <COMMIT-P> refs/heads/main
<COMMIT-N> refs/heads/release <COMMIT-N> refs/heads/release
@ -245,8 +248,8 @@ test_expect_success 'create bundle with --since option' '
<TAG-3> refs/tags/v3 <TAG-3> refs/tags/v3
<COMMIT-P> HEAD <COMMIT-P> HEAD
The bundle requires these 2 refs: The bundle requires these 2 refs:
<COMMIT-M> <COMMIT-M> Z
<COMMIT-K> <COMMIT-K> Z
EOF EOF
test_cmp expect actual && test_cmp expect actual &&
@ -305,13 +308,13 @@ test_expect_success 'create bundle 2 - has prerequisites' '
--stdin \ --stdin \
release <input && release <input &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
The bundle contains this ref: The bundle contains this ref:
<COMMIT-N> refs/heads/release <COMMIT-N> refs/heads/release
The bundle requires these 3 refs: The bundle requires these 3 refs:
<COMMIT-D> <COMMIT-D> Z
<COMMIT-E> <COMMIT-E> Z
<COMMIT-G> <COMMIT-G> Z
EOF EOF
git bundle verify 2.bdl | git bundle verify 2.bdl |
@ -329,11 +332,11 @@ test_expect_success 'create bundle 2 - has prerequisites' '
test_expect_success 'fail to verify bundle without prerequisites' ' test_expect_success 'fail to verify bundle without prerequisites' '
git init --bare test1.git && git init --bare test1.git &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
error: Repository lacks these prerequisite commits: error: Repository lacks these prerequisite commits:
error: <COMMIT-D> error: <COMMIT-D> Z
error: <COMMIT-E> error: <COMMIT-E> Z
error: <COMMIT-G> error: <COMMIT-G> Z
EOF EOF
test_must_fail git -C test1.git bundle verify ../2.bdl 2>&1 | test_must_fail git -C test1.git bundle verify ../2.bdl 2>&1 |
@ -364,13 +367,13 @@ test_expect_success 'create bundle 3 - two refs, same object' '
--stdin \ --stdin \
main HEAD <input && main HEAD <input &&
cat >expect <<-\EOF && format_and_save_expect <<-\EOF &&
The bundle contains these 2 refs: The bundle contains these 2 refs:
<COMMIT-P> refs/heads/main <COMMIT-P> refs/heads/main
<COMMIT-P> HEAD <COMMIT-P> HEAD
The bundle requires these 2 refs: The bundle requires these 2 refs:
<COMMIT-M> <COMMIT-M> Z
<COMMIT-K> <COMMIT-K> Z
EOF EOF
git bundle verify 3.bdl | git bundle verify 3.bdl |