Skip to content

Commit 102d715

Browse files
john-caigitster
authored andcommitted
t1404: move reffiles specific tests to t0600
These tests modify loose refs manually and are specific to the reffiles backend. Move these to t0600 to be part of a test suite of reffiles specific tests. Signed-off-by: John Cai <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 9901af4 commit 102d715

File tree

2 files changed

+263
-237
lines changed

2 files changed

+263
-237
lines changed

t/t0600-reffiles-backend.sh

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
#!/bin/sh
2+
3+
test_description='Test reffiles backend'
4+
5+
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6+
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7+
8+
TEST_PASSES_SANITIZE_LEAK=true
9+
. ./test-lib.sh
10+
11+
if ! test_have_prereq REFFILES
12+
then
13+
skip_all='skipping reffiles specific tests'
14+
test_done
15+
fi
16+
17+
test_expect_success 'setup' '
18+
git commit --allow-empty -m Initial &&
19+
C=$(git rev-parse HEAD) &&
20+
git commit --allow-empty -m Second &&
21+
D=$(git rev-parse HEAD) &&
22+
git commit --allow-empty -m Third &&
23+
E=$(git rev-parse HEAD)
24+
'
25+
26+
test_expect_success 'empty directory should not fool rev-parse' '
27+
prefix=refs/e-rev-parse &&
28+
git update-ref $prefix/foo $C &&
29+
git pack-refs --all &&
30+
mkdir -p .git/$prefix/foo/bar/baz &&
31+
echo "$C" >expected &&
32+
git rev-parse $prefix/foo >actual &&
33+
test_cmp expected actual
34+
'
35+
36+
test_expect_success 'empty directory should not fool for-each-ref' '
37+
prefix=refs/e-for-each-ref &&
38+
git update-ref $prefix/foo $C &&
39+
git for-each-ref $prefix >expected &&
40+
git pack-refs --all &&
41+
mkdir -p .git/$prefix/foo/bar/baz &&
42+
git for-each-ref $prefix >actual &&
43+
test_cmp expected actual
44+
'
45+
46+
test_expect_success 'empty directory should not fool create' '
47+
prefix=refs/e-create &&
48+
mkdir -p .git/$prefix/foo/bar/baz &&
49+
printf "create %s $C\n" $prefix/foo |
50+
git update-ref --stdin
51+
'
52+
53+
test_expect_success 'empty directory should not fool verify' '
54+
prefix=refs/e-verify &&
55+
git update-ref $prefix/foo $C &&
56+
git pack-refs --all &&
57+
mkdir -p .git/$prefix/foo/bar/baz &&
58+
printf "verify %s $C\n" $prefix/foo |
59+
git update-ref --stdin
60+
'
61+
62+
test_expect_success 'empty directory should not fool 1-arg update' '
63+
prefix=refs/e-update-1 &&
64+
git update-ref $prefix/foo $C &&
65+
git pack-refs --all &&
66+
mkdir -p .git/$prefix/foo/bar/baz &&
67+
printf "update %s $D\n" $prefix/foo |
68+
git update-ref --stdin
69+
'
70+
71+
test_expect_success 'empty directory should not fool 2-arg update' '
72+
prefix=refs/e-update-2 &&
73+
git update-ref $prefix/foo $C &&
74+
git pack-refs --all &&
75+
mkdir -p .git/$prefix/foo/bar/baz &&
76+
printf "update %s $D $C\n" $prefix/foo |
77+
git update-ref --stdin
78+
'
79+
80+
test_expect_success 'empty directory should not fool 0-arg delete' '
81+
prefix=refs/e-delete-0 &&
82+
git update-ref $prefix/foo $C &&
83+
git pack-refs --all &&
84+
mkdir -p .git/$prefix/foo/bar/baz &&
85+
printf "delete %s\n" $prefix/foo |
86+
git update-ref --stdin
87+
'
88+
89+
test_expect_success 'empty directory should not fool 1-arg delete' '
90+
prefix=refs/e-delete-1 &&
91+
git update-ref $prefix/foo $C &&
92+
git pack-refs --all &&
93+
mkdir -p .git/$prefix/foo/bar/baz &&
94+
printf "delete %s $C\n" $prefix/foo |
95+
git update-ref --stdin
96+
'
97+
98+
test_expect_success 'non-empty directory blocks create' '
99+
prefix=refs/ne-create &&
100+
mkdir -p .git/$prefix/foo/bar &&
101+
: >.git/$prefix/foo/bar/baz.lock &&
102+
test_when_finished "rm -f .git/$prefix/foo/bar/baz.lock" &&
103+
cat >expected <<-EOF &&
104+
fatal: cannot lock ref $SQ$prefix/foo$SQ: there is a non-empty directory $SQ.git/$prefix/foo$SQ blocking reference $SQ$prefix/foo$SQ
105+
EOF
106+
printf "%s\n" "update $prefix/foo $C" |
107+
test_must_fail git update-ref --stdin 2>output.err &&
108+
test_cmp expected output.err &&
109+
cat >expected <<-EOF &&
110+
fatal: cannot lock ref $SQ$prefix/foo$SQ: unable to resolve reference $SQ$prefix/foo$SQ
111+
EOF
112+
printf "%s\n" "update $prefix/foo $D $C" |
113+
test_must_fail git update-ref --stdin 2>output.err &&
114+
test_cmp expected output.err
115+
'
116+
117+
test_expect_success 'broken reference blocks create' '
118+
prefix=refs/broken-create &&
119+
mkdir -p .git/$prefix &&
120+
echo "gobbledigook" >.git/$prefix/foo &&
121+
test_when_finished "rm -f .git/$prefix/foo" &&
122+
cat >expected <<-EOF &&
123+
fatal: cannot lock ref $SQ$prefix/foo$SQ: unable to resolve reference $SQ$prefix/foo$SQ: reference broken
124+
EOF
125+
printf "%s\n" "update $prefix/foo $C" |
126+
test_must_fail git update-ref --stdin 2>output.err &&
127+
test_cmp expected output.err &&
128+
cat >expected <<-EOF &&
129+
fatal: cannot lock ref $SQ$prefix/foo$SQ: unable to resolve reference $SQ$prefix/foo$SQ: reference broken
130+
EOF
131+
printf "%s\n" "update $prefix/foo $D $C" |
132+
test_must_fail git update-ref --stdin 2>output.err &&
133+
test_cmp expected output.err
134+
'
135+
136+
test_expect_success 'non-empty directory blocks indirect create' '
137+
prefix=refs/ne-indirect-create &&
138+
git symbolic-ref $prefix/symref $prefix/foo &&
139+
mkdir -p .git/$prefix/foo/bar &&
140+
: >.git/$prefix/foo/bar/baz.lock &&
141+
test_when_finished "rm -f .git/$prefix/foo/bar/baz.lock" &&
142+
cat >expected <<-EOF &&
143+
fatal: cannot lock ref $SQ$prefix/symref$SQ: there is a non-empty directory $SQ.git/$prefix/foo$SQ blocking reference $SQ$prefix/foo$SQ
144+
EOF
145+
printf "%s\n" "update $prefix/symref $C" |
146+
test_must_fail git update-ref --stdin 2>output.err &&
147+
test_cmp expected output.err &&
148+
cat >expected <<-EOF &&
149+
fatal: cannot lock ref $SQ$prefix/symref$SQ: unable to resolve reference $SQ$prefix/foo$SQ
150+
EOF
151+
printf "%s\n" "update $prefix/symref $D $C" |
152+
test_must_fail git update-ref --stdin 2>output.err &&
153+
test_cmp expected output.err
154+
'
155+
156+
test_expect_success 'broken reference blocks indirect create' '
157+
prefix=refs/broken-indirect-create &&
158+
git symbolic-ref $prefix/symref $prefix/foo &&
159+
echo "gobbledigook" >.git/$prefix/foo &&
160+
test_when_finished "rm -f .git/$prefix/foo" &&
161+
cat >expected <<-EOF &&
162+
fatal: cannot lock ref $SQ$prefix/symref$SQ: unable to resolve reference $SQ$prefix/foo$SQ: reference broken
163+
EOF
164+
printf "%s\n" "update $prefix/symref $C" |
165+
test_must_fail git update-ref --stdin 2>output.err &&
166+
test_cmp expected output.err &&
167+
cat >expected <<-EOF &&
168+
fatal: cannot lock ref $SQ$prefix/symref$SQ: unable to resolve reference $SQ$prefix/foo$SQ: reference broken
169+
EOF
170+
printf "%s\n" "update $prefix/symref $D $C" |
171+
test_must_fail git update-ref --stdin 2>output.err &&
172+
test_cmp expected output.err
173+
'
174+
175+
test_expect_success 'no bogus intermediate values during delete' '
176+
prefix=refs/slow-transaction &&
177+
# Set up a reference with differing loose and packed versions:
178+
git update-ref $prefix/foo $C &&
179+
git pack-refs --all &&
180+
git update-ref $prefix/foo $D &&
181+
# Now try to update the reference, but hold the `packed-refs` lock
182+
# for a while to see what happens while the process is blocked:
183+
: >.git/packed-refs.lock &&
184+
test_when_finished "rm -f .git/packed-refs.lock" &&
185+
{
186+
# Note: the following command is intentionally run in the
187+
# background. We increase the timeout so that `update-ref`
188+
# attempts to acquire the `packed-refs` lock for much longer
189+
# than it takes for us to do the check then delete it:
190+
git -c core.packedrefstimeout=30000 update-ref -d $prefix/foo &
191+
} &&
192+
pid2=$! &&
193+
# Give update-ref plenty of time to get to the point where it tries
194+
# to lock packed-refs:
195+
sleep 1 &&
196+
# Make sure that update-ref did not complete despite the lock:
197+
kill -0 $pid2 &&
198+
# Verify that the reference still has its old value:
199+
sha1=$(git rev-parse --verify --quiet $prefix/foo || echo undefined) &&
200+
case "$sha1" in
201+
$D)
202+
# This is what we hope for; it means that nothing
203+
# user-visible has changed yet.
204+
: ;;
205+
undefined)
206+
# This is not correct; it means the deletion has happened
207+
# already even though update-ref should not have been
208+
# able to acquire the lock yet.
209+
echo "$prefix/foo deleted prematurely" &&
210+
break
211+
;;
212+
$C)
213+
# This value should never be seen. Probably the loose
214+
# reference has been deleted but the packed reference
215+
# is still there:
216+
echo "$prefix/foo incorrectly observed to be C" &&
217+
break
218+
;;
219+
*)
220+
# WTF?
221+
echo "unexpected value observed for $prefix/foo: $sha1" &&
222+
break
223+
;;
224+
esac >out &&
225+
rm -f .git/packed-refs.lock &&
226+
wait $pid2 &&
227+
test_must_be_empty out &&
228+
test_must_fail git rev-parse --verify --quiet $prefix/foo
229+
'
230+
231+
test_expect_success 'delete fails cleanly if packed-refs file is locked' '
232+
prefix=refs/locked-packed-refs &&
233+
# Set up a reference with differing loose and packed versions:
234+
git update-ref $prefix/foo $C &&
235+
git pack-refs --all &&
236+
git update-ref $prefix/foo $D &&
237+
git for-each-ref $prefix >unchanged &&
238+
# Now try to delete it while the `packed-refs` lock is held:
239+
: >.git/packed-refs.lock &&
240+
test_when_finished "rm -f .git/packed-refs.lock" &&
241+
test_must_fail git update-ref -d $prefix/foo >out 2>err &&
242+
git for-each-ref $prefix >actual &&
243+
test_grep "Unable to create $SQ.*packed-refs.lock$SQ: " err &&
244+
test_cmp unchanged actual
245+
'
246+
247+
test_expect_success 'delete fails cleanly if packed-refs.new write fails' '
248+
# Setup and expectations are similar to the test above.
249+
prefix=refs/failed-packed-refs &&
250+
git update-ref $prefix/foo $C &&
251+
git pack-refs --all &&
252+
git update-ref $prefix/foo $D &&
253+
git for-each-ref $prefix >unchanged &&
254+
# This should not happen in practice, but it is an easy way to get a
255+
# reliable error (we open with create_tempfile(), which uses O_EXCL).
256+
: >.git/packed-refs.new &&
257+
test_when_finished "rm -f .git/packed-refs.new" &&
258+
test_must_fail git update-ref -d $prefix/foo &&
259+
git for-each-ref $prefix >actual &&
260+
test_cmp unchanged actual
261+
'
262+
263+
test_done

0 commit comments

Comments
 (0)