summaryrefslogtreecommitdiff
path: root/t/t5411-proc-receive-hook.sh
blob: 746487286f5d0824b33f7a1056afd3ec11f1f71a (plain)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/sh
#
# Copyright (c) 2020 Jiang Xin
#
 
test_description='Test proc-receive hook'
 
. ./test-lib.sh
 
. "$TEST_DIRECTORY"/t5411/common-functions.sh
 
setup_upstream_and_workbench () {
	# Refs of upstream : master(A)
	# Refs of workbench: master(A)  tags/v123
	test_expect_success "setup upstream and workbench" '
		rm -rf upstream.git &&
		rm -rf workbench &&
		git init --bare upstream.git &&
		git init workbench &&
		create_commits_in workbench A B &&
		(
			cd workbench &&
			# Try to make a stable fixed width for abbreviated commit ID,
			# this fixed-width oid will be replaced with "<OID>".
			git config core.abbrev 7 &&
			git tag -m "v123" v123 $A &&
			git remote add origin ../upstream.git &&
			git push origin master &&
			git update-ref refs/heads/master $A $B &&
			git -C ../upstream.git update-ref \
				refs/heads/master $A $B
		) &&
		TAG=$(git -C workbench rev-parse v123) &&
 
		# setup pre-receive hook
		write_script upstream.git/hooks/pre-receive <<-\EOF &&
		exec >&2
		echo "# pre-receive hook"
		while read old new ref
		do
			echo "pre-receive< $old $new $ref"
		done
		EOF
 
		# setup post-receive hook
		write_script upstream.git/hooks/post-receive <<-\EOF &&
		exec >&2
		echo "# post-receive hook"
		while read old new ref
		do
			echo "post-receive< $old $new $ref"
		done
		EOF
 
		upstream=upstream.git
	'
}
 
run_proc_receive_hook_test() {
	case $1 in
	http)
		PROTOCOL="HTTP protocol"
		URL_PREFIX="http://.*"
		;;
	local)
		PROTOCOL="builtin protocol"
		URL_PREFIX="\.\."
		;;
	esac
 
	# Include test cases for both file and HTTP protocol
	for t in  "$TEST_DIRECTORY"/t5411/test-*.sh
	do
		. "$t"
	done
}
 
# Initialize the upstream repository and local workbench.
setup_upstream_and_workbench
 
# Load test cases that only need to be executed once.
for t in  "$TEST_DIRECTORY"/t5411/once-*.sh
do
	. "$t"
done
 
# Initialize the upstream repository and local workbench.
setup_upstream_and_workbench
 
# Run test cases for 'proc-receive' hook on local file protocol.
run_proc_receive_hook_test local
 
ROOT_PATH="$PWD"
. "$TEST_DIRECTORY"/lib-gpg.sh
. "$TEST_DIRECTORY"/lib-httpd.sh
. "$TEST_DIRECTORY"/lib-terminal.sh
start_httpd
 
# Re-initialize the upstream repository and local workbench.
setup_upstream_and_workbench
 
# Refs of upstream : master(A)
# Refs of workbench: master(A)  tags/v123
test_expect_success "setup for HTTP protocol" '
	git -C upstream.git config http.receivepack true &&
	upstream="$HTTPD_DOCUMENT_ROOT_PATH/upstream.git" &&
	mv upstream.git "$upstream" &&
	git -C workbench remote set-url origin "$HTTPD_URL/auth-push/smart/upstream.git" &&
	set_askpass user@host pass@host
'
 
setup_askpass_helper
 
# Run test cases for 'proc-receive' hook on HTTP protocol.
run_proc_receive_hook_test http
 
test_done