#!/bin/sh test_description='git maintenance builtin' . ./test-lib.sh GIT_TEST_COMMIT_GRAPH=0 GIT_TEST_MULTI_PACK_INDEX=0 test_expect_success 'help text' ' test_expect_code 129 git maintenance -h 2>err && test_i18ngrep "usage: git maintenance " err && test_expect_code 128 git maintenance barf 2>err && test_i18ngrep "invalid subcommand: barf" err && test_expect_code 129 git maintenance 2>err && test_i18ngrep "usage: git maintenance" err ' test_expect_success 'run [--auto|--quiet]' ' GIT_TRACE2_EVENT="$(pwd)/run-no-auto.txt" \ git maintenance run 2>/dev/null && GIT_TRACE2_EVENT="$(pwd)/run-auto.txt" \ git maintenance run --auto 2>/dev/null && GIT_TRACE2_EVENT="$(pwd)/run-no-quiet.txt" \ git maintenance run --no-quiet 2>/dev/null && test_subcommand git gc --quiet .enabled' ' git config maintenance.gc.enabled false && git config maintenance.commit-graph.enabled true && GIT_TRACE2_EVENT="$(pwd)/run-config.txt" git maintenance run 2>err && test_subcommand ! git gc --quiet ' ' GIT_TRACE2_EVENT="$(pwd)/run-commit-graph.txt" \ git maintenance run --task=commit-graph 2>/dev/null && GIT_TRACE2_EVENT="$(pwd)/run-gc.txt" \ git maintenance run --task=gc 2>/dev/null && GIT_TRACE2_EVENT="$(pwd)/run-commit-graph.txt" \ git maintenance run --task=commit-graph 2>/dev/null && GIT_TRACE2_EVENT="$(pwd)/run-both.txt" \ git maintenance run --task=commit-graph --task=gc 2>/dev/null && test_subcommand ! git gc --quiet err && test_i18ngrep "is not a valid task" err ' test_expect_success 'run --task duplicate' ' test_must_fail git maintenance run --task=gc --task=gc 2>err && test_i18ngrep "cannot be selected multiple times" err ' test_expect_success 'run --task=prefetch with no remotes' ' git maintenance run --task=prefetch 2>err && test_must_be_empty err ' test_expect_success 'prefetch multiple remotes' ' git clone . clone1 && git clone . clone2 && git remote add remote1 "file://$(pwd)/clone1" && git remote add remote2 "file://$(pwd)/clone2" && git -C clone1 switch -c one && git -C clone2 switch -c two && test_commit -C clone1 one && test_commit -C clone2 two && GIT_TRACE2_EVENT="$(pwd)/run-prefetch.txt" git maintenance run --task=prefetch 2>/dev/null && fetchargs="--prune --no-tags --no-write-fetch-head --recurse-submodules=no --refmap= --quiet" && test_subcommand git fetch remote1 $fetchargs +refs/heads/\\*:refs/prefetch/remote1/\\* .git/objects/maintenance.lock && # Assuming that "git commit" creates at least one loose object test_commit create-loose-object && rm .git/objects/maintenance.lock && ls .git/objects >obj-dir-before && test_file_not_empty obj-dir-before && ls .git/objects/pack/*.pack >packs-before && test_line_count = 1 packs-before && # The first run creates a pack-file # but does not delete loose objects. git maintenance run --task=loose-objects && ls .git/objects >obj-dir-between && test_cmp obj-dir-before obj-dir-between && ls .git/objects/pack/*.pack >packs-between && test_line_count = 2 packs-between && ls .git/objects/pack/loose-*.pack >loose-packs && test_line_count = 1 loose-packs && # The second run deletes loose objects # but does not create a pack-file. git maintenance run --task=loose-objects && ls .git/objects >obj-dir-after && cat >expect <<-\EOF && info pack EOF test_cmp expect obj-dir-after && ls .git/objects/pack/*.pack >packs-after && test_cmp packs-between packs-after ' test_expect_success 'maintenance.loose-objects.auto' ' git repack -adk && GIT_TRACE2_EVENT="$(pwd)/trace-lo1.txt" \ git -c maintenance.loose-objects.auto=1 maintenance \ run --auto --task=loose-objects 2>/dev/null && test_subcommand ! git prune-packed --quiet /dev/null && test_subcommand ! git prune-packed --quiet /dev/null && test_subcommand git prune-packed --quiet /dev/null && test_subcommand git prune-packed --quiet packs-before && test_line_count = 3 packs-before && # the job repacks the two into a new pack, but does not # delete the old ones. git maintenance run --task=incremental-repack && ls $packDir/*.pack >packs-between && test_line_count = 4 packs-between && # the job deletes the two old packs, and does not write # a new one because the batch size is not high enough to # pack the largest pack-file. git maintenance run --task=incremental-repack && ls .git/objects/pack/*.pack >packs-after && test_line_count = 2 packs-after ' test_expect_success EXPENSIVE 'incremental-repack 2g limit' ' for i in $(test_seq 1 5) do test-tool genrandom foo$i $((512 * 1024 * 1024 + 1)) >>big || return 1 done && git add big && git commit -m "Add big file (1)" && # ensure any possible loose objects are in a pack-file git maintenance run --task=loose-objects && rm big && for i in $(test_seq 6 10) do test-tool genrandom foo$i $((512 * 1024 * 1024 + 1)) >>big || return 1 done && git add big && git commit -m "Add big file (2)" && # ensure any possible loose objects are in a pack-file git maintenance run --task=loose-objects && # Now run the incremental-repack task and check the batch-size GIT_TRACE2_EVENT="$(pwd)/run-2g.txt" git maintenance run \ --task=incremental-repack 2>/dev/null && test_subcommand git multi-pack-index repack \ --no-progress --batch-size=2147483647 /dev/null && test_subcommand ! git multi-pack-index write --no-progress /dev/null && test_subcommand ! git multi-pack-index write --no-progress /dev/null && test_subcommand git multi-pack-index write --no-progress err && test_i18ngrep "at most one" err ' test_expect_success 'invalid --schedule value' ' test_must_fail git maintenance run --schedule=annually 2>err && test_i18ngrep "unrecognized --schedule" err ' test_expect_success '--schedule inheritance weekly -> daily -> hourly' ' git config maintenance.loose-objects.enabled true && git config maintenance.loose-objects.schedule hourly && git config maintenance.commit-graph.enabled true && git config maintenance.commit-graph.schedule daily && git config maintenance.incremental-repack.enabled true && git config maintenance.incremental-repack.schedule weekly && GIT_TRACE2_EVENT="$(pwd)/hourly.txt" \ git maintenance run --schedule=hourly 2>/dev/null && test_subcommand git prune-packed --quiet /dev/null && test_subcommand git prune-packed --quiet /dev/null && test_subcommand git prune-packed --quiet before && git maintenance register && test_cmp_config false maintenance.auto && git config --global --get-all maintenance.repo >between && cp before expect && pwd >>expect && test_cmp expect between && git maintenance unregister && git config --global --get-all maintenance.repo >actual && test_cmp before actual ' test_expect_success 'start from empty cron table' ' GIT_TEST_CRONTAB="test-tool crontab cron.txt" git maintenance start && # start registers the repo git config --get --global maintenance.repo "$(pwd)" && grep "for-each-repo --config=maintenance.repo maintenance run --schedule=daily" cron.txt && grep "for-each-repo --config=maintenance.repo maintenance run --schedule=hourly" cron.txt && grep "for-each-repo --config=maintenance.repo maintenance run --schedule=weekly" cron.txt ' test_expect_success 'stop from existing schedule' ' GIT_TEST_CRONTAB="test-tool crontab cron.txt" git maintenance stop && # stop does not unregister the repo git config --get --global maintenance.repo "$(pwd)" && # Operation is idempotent GIT_TEST_CRONTAB="test-tool crontab cron.txt" git maintenance stop && test_must_be_empty cron.txt ' test_expect_success 'start preserves existing schedule' ' echo "Important information!" >cron.txt && GIT_TEST_CRONTAB="test-tool crontab cron.txt" git maintenance start && grep "Important information!" cron.txt ' test_expect_success 'register preserves existing strategy' ' git config maintenance.strategy none && git maintenance register && test_config maintenance.strategy none && git config --unset maintenance.strategy && git maintenance register && test_config maintenance.strategy incremental ' test_done