git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob 884dc21ad2ab983b483caede0f25f701218b5590 3672 bytes (raw)
name: t/t5411/once-0010-report-status-v1.sh 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
 
test_expect_success "setup receive.procReceiveRefs" '
	git -C "$upstream" config --add receive.procReceiveRefs refs/for
'

test_expect_success "setup proc-receive hook" '
	write_script "$upstream/hooks/proc-receive" <<-EOF
	printf >&2 "# proc-receive hook\n"
	test-tool proc-receive -v \
		-r "ok refs/for/master/topic1" \
		-r "option fall-through" \
		-r "ok refs/for/master/topic2" \
		-r "option refname refs/for/changes/23/123/1" \
		-r "option new-oid $A" \
		-r "ok refs/for/master/topic2" \
		-r "option refname refs/for/changes/24/124/2" \
		-r "option old-oid $B" \
		-r "option new-oid $A" \
		-r "option forced-update" \
		-r "ng refs/for/next/topic target branch not exist"
	EOF
'

# Refs of upstream : master(A)
# Refs of workbench: master(A)  tags/v123
# git push         : (B)                   refs/for/master/topic1(A)  foo(A)  refs/for/next/topic(A)  refs/for/master/topic2(A)
test_expect_success "proc-receive: report status v1" '
	{
		printf "%s %s refs/heads/master\0report-status\n" \
			$A $B | packetize &&
		printf "%s %s refs/for/master/topic1\n" \
			$ZERO_OID $A | packetize &&
		printf "%s %s refs/heads/foo\n" \
			$ZERO_OID $A | packetize &&
		printf "%s %s refs/for/next/topic\n" \
			$ZERO_OID $A | packetize &&
		printf "%s %s refs/for/master/topic2\n" \
			$ZERO_OID $A | packetize &&
		printf 0000 &&
		printf "" | git -C "$upstream" pack-objects --stdout
	} | git receive-pack "$upstream" --stateless-rpc \
	>out 2>&1 &&
	make_user_friendly_and_stable_output <out >actual &&
	cat >expect <<-EOF &&
	# pre-receive hook
	pre-receive< <COMMIT-A> <COMMIT-B> refs/heads/master
	pre-receive< <ZERO-OID> <COMMIT-A> refs/for/master/topic1
	pre-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo
	pre-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic
	pre-receive< <ZERO-OID> <COMMIT-A> refs/for/master/topic2
	# proc-receive hook
	proc-receive< <ZERO-OID> <COMMIT-A> refs/for/master/topic1
	proc-receive< <ZERO-OID> <COMMIT-A> refs/for/next/topic
	proc-receive< <ZERO-OID> <COMMIT-A> refs/for/master/topic2
	proc-receive> ok refs/for/master/topic1
	proc-receive> option fall-through
	proc-receive> ok refs/for/master/topic2
	proc-receive> option refname refs/for/changes/23/123/1
	proc-receive> option new-oid <COMMIT-A>
	proc-receive> ok refs/for/master/topic2
	proc-receive> option refname refs/for/changes/24/124/2
	proc-receive> option old-oid <COMMIT-B>
	proc-receive> option new-oid <COMMIT-A>
	proc-receive> option forced-update
	proc-receive> ng refs/for/next/topic target branch not exist
	000eunpack ok
	0019ok refs/heads/master
	001eok refs/for/master/topic1
	0016ok refs/heads/foo
	0033ng refs/for/next/topic target branch not exist
	001eok refs/for/master/topic2
	0000# post-receive hook
	post-receive< <COMMIT-A> <COMMIT-B> refs/heads/master
	post-receive< <ZERO-OID> <COMMIT-A> refs/for/master/topic1
	post-receive< <ZERO-OID> <COMMIT-A> refs/heads/foo
	post-receive< <ZERO-OID> <COMMIT-A> refs/for/changes/23/123/1
	post-receive< <COMMIT-B> <COMMIT-A> refs/for/changes/24/124/2
	EOF
	test_cmp expect actual &&

	git -C "$upstream" show-ref >out &&
	make_user_friendly_and_stable_output <out >actual &&
	cat >expect <<-EOF &&
	<COMMIT-A> refs/for/master/topic1
	<COMMIT-A> refs/heads/foo
	<COMMIT-B> refs/heads/master
	EOF
	test_cmp expect actual
'

# Refs of upstream : master(B)             foo(A)  refs/for/master/topic1(A)
# Refs of workbench: master(A)  tags/v123
test_expect_success "cleanup" '
	(
		cd "$upstream" &&
		git config --unset receive.procReceiveRefs &&
		rm -f "hooks/proc-receive" &&
		git update-ref refs/heads/master $A &&
		git update-ref -d refs/for/master/topic1 &&
		git update-ref -d refs/heads/foo
	)
'

debug log:

solving 884dc21ad2 ...
found 884dc21ad2 in https://public-inbox.org/git/20200507161057.12690-7-worldhello.net@gmail.com/
found ebabf83937 in https://public-inbox.org/git/20200507161057.12690-5-worldhello.net@gmail.com/
found 77f84fdc5e in https://public-inbox.org/git/20200507161057.12690-4-worldhello.net@gmail.com/

applying [1/3] https://public-inbox.org/git/20200507161057.12690-4-worldhello.net@gmail.com/
diff --git a/t/t5411/once-0010-report-status-v1.sh b/t/t5411/once-0010-report-status-v1.sh
new file mode 100644
index 0000000000..77f84fdc5e


applying [2/3] https://public-inbox.org/git/20200507161057.12690-5-worldhello.net@gmail.com/
diff --git a/t/t5411/once-0010-report-status-v1.sh b/t/t5411/once-0010-report-status-v1.sh
index 77f84fdc5e..ebabf83937 100644


applying [3/3] https://public-inbox.org/git/20200507161057.12690-7-worldhello.net@gmail.com/
diff --git a/t/t5411/once-0010-report-status-v1.sh b/t/t5411/once-0010-report-status-v1.sh
index ebabf83937..884dc21ad2 100644

Checking patch t/t5411/once-0010-report-status-v1.sh...
Applied patch t/t5411/once-0010-report-status-v1.sh cleanly.
Checking patch t/t5411/once-0010-report-status-v1.sh...
Applied patch t/t5411/once-0010-report-status-v1.sh cleanly.
Checking patch t/t5411/once-0010-report-status-v1.sh...
Applied patch t/t5411/once-0010-report-status-v1.sh cleanly.

index at:
100644 884dc21ad2ab983b483caede0f25f701218b5590	t/t5411/once-0010-report-status-v1.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).