t / t6500-gc.shon commit Git 2.12.5 (9752ad0)
   1#!/bin/sh
   2
   3test_description='basic git gc tests
   4'
   5
   6. ./test-lib.sh
   7
   8test_expect_success 'gc empty repository' '
   9        git gc
  10'
  11
  12test_expect_success 'gc does not leave behind pid file' '
  13        git gc &&
  14        test_path_is_missing .git/gc.pid
  15'
  16
  17test_expect_success 'gc --gobbledegook' '
  18        test_expect_code 129 git gc --nonsense 2>err &&
  19        test_i18ngrep "[Uu]sage: git gc" err
  20'
  21
  22test_expect_success 'gc -h with invalid configuration' '
  23        mkdir broken &&
  24        (
  25                cd broken &&
  26                git init &&
  27                echo "[gc] pruneexpire = CORRUPT" >>.git/config &&
  28                test_expect_code 129 git gc -h >usage 2>&1
  29        ) &&
  30        test_i18ngrep "[Uu]sage" broken/usage
  31'
  32
  33test_expect_success 'gc is not aborted due to a stale symref' '
  34        git init remote &&
  35        (
  36                cd remote &&
  37                test_commit initial &&
  38                git clone . ../client &&
  39                git branch -m develop &&
  40                cd ../client &&
  41                git fetch --prune &&
  42                git gc
  43        )
  44'
  45
  46test_expect_success 'auto gc with too many loose objects does not attempt to create bitmaps' '
  47        test_config gc.auto 3 &&
  48        test_config gc.autodetach false &&
  49        test_config pack.writebitmaps true &&
  50        # We need to create two object whose sha1s start with 17
  51        # since this is what git gc counts.  As it happens, these
  52        # two blobs will do so.
  53        test_commit 263 &&
  54        test_commit 410 &&
  55        # Our first gc will create a pack; our second will create a second pack
  56        git gc --auto &&
  57        ls .git/objects/pack | sort >existing_packs &&
  58        test_commit 523 &&
  59        test_commit 790 &&
  60
  61        git gc --auto 2>err &&
  62        test_i18ngrep ! "^warning:" err &&
  63        ls .git/objects/pack/ | sort >post_packs &&
  64        comm -1 -3 existing_packs post_packs >new &&
  65        comm -2 -3 existing_packs post_packs >del &&
  66        test_line_count = 0 del && # No packs are deleted
  67        test_line_count = 2 new # There is one new pack and its .idx
  68'
  69
  70test_expect_success 'background auto gc does not run if gc.log is present and recent but does if it is old' '
  71        test_commit foo &&
  72        test_commit bar &&
  73        git repack &&
  74        test_config gc.autopacklimit 1 &&
  75        test_config gc.autodetach true &&
  76        echo fleem >.git/gc.log &&
  77        test_must_fail git gc --auto 2>err &&
  78        test_i18ngrep "^error:" err &&
  79        test_config gc.logexpiry 5.days &&
  80        test-chmtime =-345600 .git/gc.log &&
  81        test_must_fail git gc --auto &&
  82        test_config gc.logexpiry 2.days &&
  83        git gc --auto
  84'
  85
  86test_done