blob: 1b7097179ee98029ffc2459e9460d9d3a71fb1c7 (
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
|
#!/bin/sh
test_description='check quarantine of objects during push'
. ./test-lib.sh
test_expect_success 'create picky dest repo' '
git init --bare dest.git &&
test_hook --setup -C dest.git pre-receive <<-\EOF
while read old new ref; do
test "$(git log -1 --format=%s $new)" = reject && exit 1
done
exit 0
EOF
'
test_expect_success 'accepted objects work' '
test_commit ok &&
git push dest.git HEAD &&
commit=$(git rev-parse HEAD) &&
git --git-dir=dest.git cat-file commit $commit
'
test_expect_success 'rejected objects are not installed' '
test_commit reject &&
commit=$(git rev-parse HEAD) &&
test_must_fail git push dest.git reject &&
test_must_fail git --git-dir=dest.git cat-file commit $commit
'
test_expect_success 'rejected objects are removed' '
echo "incoming-*" >expect &&
(cd dest.git/objects && echo incoming-*) >actual &&
test_cmp expect actual
'
test_expect_success 'push to repo path with path separator (colon)' '
# The interesting failure case here is when the
# receiving end cannot access its original object directory,
# so make it likely for us to generate a delta by having
# a non-trivial file with multiple versions.
test-tool genrandom foo 4096 >file.bin &&
git add file.bin &&
git commit -m bin &&
if test_have_prereq MINGW
then
pathsep=";"
else
pathsep=":"
fi &&
git clone --bare . "xxx${pathsep}yyy.git" &&
echo change >>file.bin &&
git commit -am change &&
# Note that we have to use the full path here, or it gets confused
# with the ssh host:path syntax.
git push "$(pwd)/xxx${pathsep}yyy.git" HEAD
'
test_expect_success 'updating a ref from quarantine is forbidden' '
git init --bare update.git &&
test_hook -C update.git pre-receive <<-\EOF &&
read old new refname
git update-ref refs/heads/unrelated $new
exit 1
EOF
test_must_fail git push update.git HEAD &&
git -C update.git fsck
'
test_expect_success '.keep file is removed after push' '
test_when_finished rm -rf keep.git &&
git init --bare keep.git &&
git -C keep.git config set receive.unpackLimit 0 &&
# While incoming objects are still quarantined, validate that the
# ".keep" lockfile is present in the quarantine directory.
test_hook -C keep.git pre-receive <<-\EOF &&
keep="$(ls "$GIT_QUARANTINE_PATH"/pack/pack-*.keep)" &&
test -f "$keep"
EOF
# After quarantined objects are migrated, validate that the ".keep"
# lockfile is migrated and present in the main ODB.
test_hook -C keep.git reference-transaction <<-\EOF &&
keep="$(ls objects/pack/pack-*.keep)" &&
test -f "$keep"
EOF
test_commit foo &&
git push keep.git HEAD &&
# Once the operation is complete, validate that the ".keep" lockfile has
# been removed.
pack="$(ls keep.git/objects/pack/pack-*.pack)" &&
keep="${pack%.pack}.keep" &&
test_path_is_file "$pack" &&
test_path_is_missing "$keep"
'
test_done
|