]> git.ipfire.org Git - thirdparty/git.git/blob - t/t6115-rev-list-du.sh
Merge branch 'es/maintenance-of-bare-repositories'
[thirdparty/git.git] / t / t6115-rev-list-du.sh
1 #!/bin/sh
2
3 test_description='basic tests of rev-list --disk-usage'
4 . ./test-lib.sh
5
6 # we want a mix of reachable and unreachable, as well as
7 # objects in the bitmapped pack and some outside of it
8 test_expect_success 'set up repository' '
9 test_commit --no-tag one &&
10 test_commit --no-tag two &&
11 git repack -adb &&
12 git reset --hard HEAD^ &&
13 test_commit --no-tag three &&
14 test_commit --no-tag four &&
15 git reset --hard HEAD^
16 '
17
18 # We don't want to hardcode sizes, because they depend on the exact details of
19 # packing, zlib, etc. We'll assume that the regular rev-list and cat-file
20 # machinery works and compare the --disk-usage output to that.
21 disk_usage_slow () {
22 git rev-list --no-object-names "$@" |
23 git cat-file --batch-check="%(objectsize:disk)" |
24 perl -lne '$total += $_; END { print $total}'
25 }
26
27 # check behavior with given rev-list options; note that
28 # whitespace is not preserved in args
29 check_du () {
30 args=$*
31
32 test_expect_success "generate expected size ($args)" "
33 disk_usage_slow $args >expect
34 "
35
36 test_expect_success "rev-list --disk-usage without bitmaps ($args)" "
37 git rev-list --disk-usage $args >actual &&
38 test_cmp expect actual
39 "
40
41 test_expect_success "rev-list --disk-usage with bitmaps ($args)" "
42 git rev-list --disk-usage --use-bitmap-index $args >actual &&
43 test_cmp expect actual
44 "
45 }
46
47 check_du HEAD
48 check_du --objects HEAD
49 check_du --objects HEAD^..HEAD
50
51 test_done