Merge branch 'rj/add-i-leak-fix'
[git.git] / t / t3306-notes-prune.sh
blob8f4102ff9e446bce66436b5e7046c84d739c226f
1 #!/bin/sh
3 test_description='Test git notes prune'
5 . ./test-lib.sh
7 test_expect_success 'setup: create a few commits with notes' '
9 : > file1 &&
10 git add file1 &&
11 test_tick &&
12 git commit -m 1st &&
13 git notes add -m "Note #1" &&
14 first=$(git rev-parse HEAD) &&
15 : > file2 &&
16 git add file2 &&
17 test_tick &&
18 git commit -m 2nd &&
19 git notes add -m "Note #2" &&
20 second=$(git rev-parse HEAD) &&
21 : > file3 &&
22 git add file3 &&
23 test_tick &&
24 git commit -m 3rd &&
25 third=$(git rev-parse HEAD) &&
26 COMMIT_FILE=$(echo $third | sed "s!^..!.git/objects/&/!") &&
27 test -f $COMMIT_FILE &&
28 test-tool chmtime =+0 $COMMIT_FILE &&
29 git notes add -m "Note #3"
32 cat > expect <<END_OF_LOG
33 commit $third
34 Author: A U Thor <author@example.com>
35 Date: Thu Apr 7 15:15:13 2005 -0700
37 3rd
39 Notes:
40 Note #3
42 commit $second
43 Author: A U Thor <author@example.com>
44 Date: Thu Apr 7 15:14:13 2005 -0700
46 2nd
48 Notes:
49 Note #2
51 commit $first
52 Author: A U Thor <author@example.com>
53 Date: Thu Apr 7 15:13:13 2005 -0700
55 1st
57 Notes:
58 Note #1
59 END_OF_LOG
61 test_expect_success 'verify commits and notes' '
63 git log > actual &&
64 test_cmp expect actual
67 test_expect_success 'remove some commits' '
69 git reset --hard HEAD~1 &&
70 git reflog expire --expire=now HEAD &&
71 git gc --prune=now
74 test_expect_success 'verify that commits are gone' '
76 test_must_fail git cat-file -p $third &&
77 git cat-file -p $second &&
78 git cat-file -p $first
81 test_expect_success 'verify that notes are still present' '
83 git notes show $third &&
84 git notes show $second &&
85 git notes show $first
88 test_expect_success 'prune -n does not remove notes' '
90 git notes list > expect &&
91 git notes prune -n &&
92 git notes list > actual &&
93 test_cmp expect actual
97 test_expect_success 'prune -n lists prunable notes' '
99 echo $third >expect &&
100 git notes prune -n > actual &&
101 test_cmp expect actual
105 test_expect_success 'prune notes' '
107 git notes prune
110 test_expect_success 'verify that notes are gone' '
112 test_must_fail git notes show $third &&
113 git notes show $second &&
114 git notes show $first
117 test_expect_success 'remove some commits' '
119 git reset --hard HEAD~1 &&
120 git reflog expire --expire=now HEAD &&
121 git gc --prune=now
124 test_expect_success 'prune -v notes' '
126 echo $second >expect &&
127 git notes prune -v > actual &&
128 test_cmp expect actual
131 test_expect_success 'verify that notes are gone' '
133 test_must_fail git notes show $third &&
134 test_must_fail git notes show $second &&
135 git notes show $first
138 test_done