Merge branch 'ps/receive-pack-unlock-before-die'
[git/gitster.git] / t / t6500-gc.sh
blobd9acb639512ae6bdf30c8bdd4a0b4d498541dd84
1 #!/bin/sh
3 test_description='basic git gc tests
6 . ./test-lib.sh
7 . "$TEST_DIRECTORY"/lib-terminal.sh
9 test_expect_success 'setup' '
10 # do not let the amount of physical memory affects gc
11 # behavior, make sure we always pack everything to one pack by
12 # default
13 git config gc.bigPackThreshold 2g &&
15 # These are simply values which, when hashed as a blob with a newline,
16 # produce a hash where the first byte is 0x17 in their respective
17 # algorithms.
18 test_oid_cache <<-EOF
19 obj1 sha1:263
20 obj1 sha256:34
22 obj2 sha1:410
23 obj2 sha256:174
25 obj3 sha1:523
26 obj3 sha256:313
28 obj4 sha1:790
29 obj4 sha256:481
30 EOF
33 test_expect_success 'gc empty repository' '
34 git gc
37 test_expect_success 'gc does not leave behind pid file' '
38 git gc &&
39 test_path_is_missing .git/gc.pid
42 test_expect_success 'gc --gobbledegook' '
43 test_expect_code 129 git gc --nonsense 2>err &&
44 test_i18ngrep "[Uu]sage: git gc" err
47 test_expect_success 'gc -h with invalid configuration' '
48 mkdir broken &&
50 cd broken &&
51 git init &&
52 echo "[gc] pruneexpire = CORRUPT" >>.git/config &&
53 test_expect_code 129 git gc -h >usage 2>&1
54 ) &&
55 test_i18ngrep "[Uu]sage" broken/usage
58 test_expect_success 'gc is not aborted due to a stale symref' '
59 git init remote &&
61 cd remote &&
62 test_commit initial &&
63 git clone . ../client &&
64 git branch -m develop &&
65 cd ../client &&
66 git fetch --prune &&
67 git gc
71 test_expect_success 'gc --keep-largest-pack' '
72 test_create_repo keep-pack &&
74 cd keep-pack &&
75 test_commit one &&
76 test_commit two &&
77 test_commit three &&
78 git gc &&
79 ( cd .git/objects/pack && ls *.pack ) >pack-list &&
80 test_line_count = 1 pack-list &&
81 cp pack-list base-pack-list &&
82 test_commit four &&
83 git repack -d &&
84 test_commit five &&
85 git repack -d &&
86 ( cd .git/objects/pack && ls *.pack ) >pack-list &&
87 test_line_count = 3 pack-list &&
88 git gc --keep-largest-pack &&
89 ( cd .git/objects/pack && ls *.pack ) >pack-list &&
90 test_line_count = 2 pack-list &&
91 awk "/^P /{print \$2}" <.git/objects/info/packs >pack-info &&
92 test_line_count = 2 pack-info &&
93 test_path_is_file .git/objects/pack/$(cat base-pack-list) &&
94 git fsck
98 test_expect_success 'pre-auto-gc hook can stop auto gc' '
99 cat >err.expect <<-\EOF &&
100 no gc for you
103 git init pre-auto-gc-hook &&
104 test_hook -C pre-auto-gc-hook pre-auto-gc <<-\EOF &&
105 echo >&2 no gc for you &&
106 exit 1
109 cd pre-auto-gc-hook &&
111 git config gc.auto 3 &&
112 git config gc.autoDetach false &&
114 # We need to create two object whose sha1s start with 17
115 # since this is what git gc counts. As it happens, these
116 # two blobs will do so.
117 test_commit "$(test_oid obj1)" &&
118 test_commit "$(test_oid obj2)" &&
120 git gc --auto >../out.actual 2>../err.actual
121 ) &&
122 test_must_be_empty out.actual &&
123 test_cmp err.expect err.actual &&
125 cat >err.expect <<-\EOF &&
126 will gc for you
127 Auto packing the repository for optimum performance.
128 See "git help gc" for manual housekeeping.
131 test_hook -C pre-auto-gc-hook --clobber pre-auto-gc <<-\EOF &&
132 echo >&2 will gc for you &&
133 exit 0
136 git -C pre-auto-gc-hook gc --auto >out.actual 2>err.actual &&
138 test_must_be_empty out.actual &&
139 test_cmp err.expect err.actual
142 test_expect_success 'auto gc with too many loose objects does not attempt to create bitmaps' '
143 test_config gc.auto 3 &&
144 test_config gc.autodetach false &&
145 test_config pack.writebitmaps true &&
146 # We need to create two object whose sha1s start with 17
147 # since this is what git gc counts. As it happens, these
148 # two blobs will do so.
149 test_commit "$(test_oid obj1)" &&
150 test_commit "$(test_oid obj2)" &&
151 # Our first gc will create a pack; our second will create a second pack
152 git gc --auto &&
153 ls .git/objects/pack/pack-*.pack | sort >existing_packs &&
154 test_commit "$(test_oid obj3)" &&
155 test_commit "$(test_oid obj4)" &&
157 git gc --auto 2>err &&
158 test_i18ngrep ! "^warning:" err &&
159 ls .git/objects/pack/pack-*.pack | sort >post_packs &&
160 comm -1 -3 existing_packs post_packs >new &&
161 comm -2 -3 existing_packs post_packs >del &&
162 test_line_count = 0 del && # No packs are deleted
163 test_line_count = 1 new # There is one new pack
166 test_expect_success 'gc --no-quiet' '
167 GIT_PROGRESS_DELAY=0 git -c gc.writeCommitGraph=true gc --no-quiet >stdout 2>stderr &&
168 test_must_be_empty stdout &&
169 test_i18ngrep "Computing commit graph generation numbers" stderr
172 test_expect_success TTY 'with TTY: gc --no-quiet' '
173 test_terminal env GIT_PROGRESS_DELAY=0 \
174 git -c gc.writeCommitGraph=true gc --no-quiet >stdout 2>stderr &&
175 test_must_be_empty stdout &&
176 test_i18ngrep "Enumerating objects" stderr &&
177 test_i18ngrep "Computing commit graph generation numbers" stderr
180 test_expect_success 'gc --quiet' '
181 git -c gc.writeCommitGraph=true gc --quiet >stdout 2>stderr &&
182 test_must_be_empty stdout &&
183 test_must_be_empty stderr
186 test_expect_success 'gc.reflogExpire{Unreachable,}=never skips "expire" via "gc"' '
187 test_config gc.reflogExpire never &&
188 test_config gc.reflogExpireUnreachable never &&
190 GIT_TRACE=$(pwd)/trace.out git gc &&
192 # Check that git-pack-refs is run as a sanity check (done via
193 # gc_before_repack()) but that git-expire is not.
194 grep -E "^trace: (built-in|exec|run_command): git pack-refs --" trace.out &&
195 ! grep -E "^trace: (built-in|exec|run_command): git reflog expire --" trace.out
198 test_expect_success 'one of gc.reflogExpire{Unreachable,}=never does not skip "expire" via "gc"' '
199 >trace.out &&
200 test_config gc.reflogExpire never &&
201 GIT_TRACE=$(pwd)/trace.out git gc &&
202 grep -E "^trace: (built-in|exec|run_command): git reflog expire --" trace.out
205 prepare_cruft_history () {
206 test_commit base &&
208 test_commit --no-tag foo &&
209 test_commit --no-tag bar &&
210 git reset HEAD^^
213 assert_cruft_packs () {
214 find .git/objects/pack -name "*.mtimes" >mtimes &&
215 sed -e 's/\.mtimes$/\.pack/g' mtimes >packs &&
217 test_file_not_empty packs &&
218 while read pack
220 test_path_is_file "$pack" || return 1
221 done <packs
224 assert_no_cruft_packs () {
225 find .git/objects/pack -name "*.mtimes" >mtimes &&
226 test_must_be_empty mtimes
229 test_expect_success 'gc --cruft generates a cruft pack' '
230 test_when_finished "rm -fr crufts" &&
231 git init crufts &&
233 cd crufts &&
235 prepare_cruft_history &&
236 git gc --cruft &&
237 assert_cruft_packs
241 test_expect_success 'gc.cruftPacks=true generates a cruft pack' '
242 test_when_finished "rm -fr crufts" &&
243 git init crufts &&
245 cd crufts &&
247 prepare_cruft_history &&
248 git -c gc.cruftPacks=true gc &&
249 assert_cruft_packs
253 test_expect_success 'feature.experimental=true generates a cruft pack' '
254 git init crufts &&
255 test_when_finished "rm -fr crufts" &&
257 cd crufts &&
259 prepare_cruft_history &&
260 git -c feature.experimental=true gc &&
261 assert_cruft_packs
265 test_expect_success 'feature.experimental=false allows explicit cruft packs' '
266 git init crufts &&
267 test_when_finished "rm -fr crufts" &&
269 cd crufts &&
271 prepare_cruft_history &&
272 git -c gc.cruftPacks=true -c feature.experimental=false gc &&
273 assert_cruft_packs
277 test_expect_success 'feature.experimental=true can be overridden' '
278 git init crufts &&
279 test_when_finished "rm -fr crufts" &&
281 cd crufts &&
283 prepare_cruft_history &&
284 git -c feature.expiremental=true -c gc.cruftPacks=false gc &&
285 assert_no_cruft_packs
289 test_expect_success 'feature.experimental=false avoids cruft packs by default' '
290 git init crufts &&
291 test_when_finished "rm -fr crufts" &&
293 cd crufts &&
295 prepare_cruft_history &&
296 git -c feature.experimental=false gc &&
297 assert_no_cruft_packs
301 run_and_wait_for_auto_gc () {
302 # We read stdout from gc for the side effect of waiting until the
303 # background gc process exits, closing its fd 9. Furthermore, the
304 # variable assignment from a command substitution preserves the
305 # exit status of the main gc process.
306 # Note: this fd trickery doesn't work on Windows, but there is no
307 # need to, because on Win the auto gc always runs in the foreground.
308 doesnt_matter=$(git gc --auto 9>&1)
311 test_expect_success 'background auto gc does not run if gc.log is present and recent but does if it is old' '
312 test_commit foo &&
313 test_commit bar &&
314 git repack &&
315 test_config gc.autopacklimit 1 &&
316 test_config gc.autodetach true &&
317 echo fleem >.git/gc.log &&
318 git gc --auto 2>err &&
319 test_i18ngrep "^warning:" err &&
320 test_config gc.logexpiry 5.days &&
321 test-tool chmtime =-345600 .git/gc.log &&
322 git gc --auto &&
323 test_config gc.logexpiry 2.days &&
324 run_and_wait_for_auto_gc &&
325 ls .git/objects/pack/pack-*.pack >packs &&
326 test_line_count = 1 packs
329 test_expect_success 'background auto gc respects lock for all operations' '
330 # make sure we run a background auto-gc
331 test_commit make-pack &&
332 git repack &&
333 test_config gc.autopacklimit 1 &&
334 test_config gc.autodetach true &&
336 # create a ref whose loose presence we can use to detect a pack-refs run
337 git update-ref refs/heads/should-be-loose HEAD &&
338 (ls -1 .git/refs/heads .git/reftable >expect || true) &&
340 # now fake a concurrent gc that holds the lock; we can use our
341 # shell pid so that it looks valid.
342 hostname=$(hostname || echo unknown) &&
343 shell_pid=$$ &&
344 if test_have_prereq MINGW && test -f /proc/$shell_pid/winpid
345 then
346 # In Git for Windows, Bash (actually, the MSYS2 runtime) has a
347 # different idea of PIDs than git.exe (actually Windows). Use
348 # the Windows PID in this case.
349 shell_pid=$(cat /proc/$shell_pid/winpid)
350 fi &&
351 printf "%d %s" "$shell_pid" "$hostname" >.git/gc.pid &&
353 # our gc should exit zero without doing anything
354 run_and_wait_for_auto_gc &&
355 (ls -1 .git/refs/heads .git/reftable >actual || true) &&
356 test_cmp expect actual
359 # DO NOT leave a detached auto gc process running near the end of the
360 # test script: it can run long enough in the background to racily
361 # interfere with the cleanup in 'test_done'.
363 test_done