summaryrefslogtreecommitdiff
path: root/t/t5503-tagfollow.sh
blob: a3c01014b7ee445d7e51c6735faea36f46833bfb (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#!/bin/sh

test_description='test automatic tag following'

GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME

. ./test-lib.sh

# End state of the repository:
#
#         T - tag1          S - tag2
#        /                 /
#   L - A ------ O ------ B
#    \   \                 \
#     \   C - origin/cat    \
#      origin/main           main

test_expect_success setup '
	test_tick &&
	echo ichi >file &&
	git add file &&
	git commit -m L &&
	L=$(git rev-parse --verify HEAD) &&

	(
		mkdir cloned &&
		cd cloned &&
		git init-db &&
		git remote add -f origin ..
	) &&

	test_tick &&
	echo A >file &&
	git add file &&
	git commit -m A &&
	A=$(git rev-parse --verify HEAD)
'

U=UPLOAD_LOG
UPATH="$(pwd)/$U"

test_expect_success 'setup expect' '
cat - <<EOF >expect
want $A
EOF
'

get_needs () {
	test -s "$1" &&
	perl -alne '
		next unless $F[1] eq "upload-pack<";
		next unless $F[2] eq "want";
		print $F[2], " ", $F[3];
	' "$1"
}

test_expect_success 'fetch A (new commit : 1 connection)' '
	rm -f $U &&
	(
		cd cloned &&
		GIT_TRACE_PACKET=$UPATH git fetch &&
		test $A = $(git rev-parse --verify origin/main)
	) &&
	get_needs $U >actual &&
	test_cmp expect actual
'

test_expect_success "create tag T on A, create C on branch cat" '
	git tag -a -m tag1 tag1 $A &&
	T=$(git rev-parse --verify tag1) &&

	git checkout -b cat &&
	echo C >file &&
	git add file &&
	git commit -m C &&
	C=$(git rev-parse --verify HEAD) &&
	git checkout main
'

test_expect_success 'setup expect' '
cat - <<EOF >expect
want $C
want $T
EOF
'

test_expect_success 'fetch C, T (new branch, tag : 1 connection)' '
	rm -f $U &&
	(
		cd cloned &&
		GIT_TRACE_PACKET=$UPATH git fetch &&
		test $C = $(git rev-parse --verify origin/cat) &&
		test $T = $(git rev-parse --verify tag1) &&
		test $A = $(git rev-parse --verify tag1^0)
	) &&
	get_needs $U >actual &&
	test_cmp expect actual
'

test_expect_success "create commits O, B, tag S on B" '
	test_tick &&
	echo O >file &&
	git add file &&
	git commit -m O &&

	test_tick &&
	echo B >file &&
	git add file &&
	git commit -m B &&
	B=$(git rev-parse --verify HEAD) &&

	git tag -a -m tag2 tag2 $B &&
	S=$(git rev-parse --verify tag2)
'

test_expect_success 'setup expect' '
cat - <<EOF >expect
want $B
want $S
EOF
'

test_expect_success 'fetch B, S (commit and tag : 1 connection)' '
	rm -f $U &&
	(
		cd cloned &&
		GIT_TRACE_PACKET=$UPATH git fetch &&
		test $B = $(git rev-parse --verify origin/main) &&
		test $B = $(git rev-parse --verify tag2^0) &&
		test $S = $(git rev-parse --verify tag2)
	) &&
	get_needs $U >actual &&
	test_cmp expect actual
'

test_expect_success 'setup expect' '
cat - <<EOF >expect
want $B
want $S
EOF
'

test_expect_success 'new clone fetch main and tags' '
	test_might_fail git branch -D cat &&
	rm -f $U &&
	(
		mkdir clone2 &&
		cd clone2 &&
		git init &&
		git remote add origin .. &&
		GIT_TRACE_PACKET=$UPATH git fetch &&
		test $B = $(git rev-parse --verify origin/main) &&
		test $S = $(git rev-parse --verify tag2) &&
		test $B = $(git rev-parse --verify tag2^0) &&
		test $T = $(git rev-parse --verify tag1) &&
		test $A = $(git rev-parse --verify tag1^0)
	) &&
	get_needs $U >actual &&
	test_cmp expect actual
'

test_expect_success 'atomic fetch with failing backfill' '
	git init clone3 &&

	# We want to test whether a failure when backfilling tags correctly
	# aborts the complete transaction when `--atomic` is passed: we should
	# neither create the branch nor should we create the tag when either
	# one of both fails to update correctly.
	#
	# To trigger failure we simply abort when backfilling a tag.
	write_script clone3/.git/hooks/reference-transaction <<-\EOF &&
		while read oldrev newrev reference
		do
			if test "$reference" = refs/tags/tag1
			then
				exit 1
			fi
		done
	EOF

	test_must_fail git -C clone3 fetch --atomic .. $B:refs/heads/something &&
	test_must_fail git -C clone3 rev-parse --verify refs/heads/something &&
	test_must_fail git -C clone3 rev-parse --verify refs/tags/tag2
'

test_expect_success 'atomic fetch with backfill should use single transaction' '
	git init clone4 &&

	# Fetching with the `--atomic` flag should update all references in a
	# single transaction, including backfilled tags. We thus expect to see
	# a single reference transaction for the created branch and tags.
	cat >expected <<-EOF &&
		prepared
		$ZERO_OID $B refs/heads/something
		$ZERO_OID $S refs/tags/tag2
		$ZERO_OID $T refs/tags/tag1
		committed
		$ZERO_OID $B refs/heads/something
		$ZERO_OID $S refs/tags/tag2
		$ZERO_OID $T refs/tags/tag1
	EOF

	write_script clone4/.git/hooks/reference-transaction <<-\EOF &&
		( echo "$*" && cat ) >>actual
	EOF

	git -C clone4 fetch --atomic .. $B:refs/heads/something &&
	test_cmp expected clone4/actual
'

test_expect_success 'backfill failure causes command to fail' '
	git init clone5 &&

	# Create a tag that is nested below the tag we are about to fetch via
	# the backfill mechanism. This causes a D/F conflict when backfilling
	# and should thus cause the command to fail.
	empty_blob=$(git -C clone5 hash-object -w --stdin </dev/null) &&
	git -C clone5 update-ref refs/tags/tag1/nested $empty_blob &&

	test_must_fail git -C clone5 fetch .. $B:refs/heads/something &&
	test $B = $(git -C clone5 rev-parse --verify refs/heads/something) &&
	test $S = $(git -C clone5 rev-parse --verify tag2) &&
	test_must_fail git -C clone5 rev-parse --verify tag1
'

test_done