summaryrefslogtreecommitdiff
path: root/t/t3306-notes-prune.sh
blob: a0ed0353e69dd6dbc96f1a8e3c9251757b4f408f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh
 
test_description='Test git notes prune'
 
. ./test-lib.sh
 
test_expect_success 'setup: create a few commits with notes' '
 
	: > file1 &&
	git add file1 &&
	test_tick &&
	git commit -m 1st &&
	git notes add -m "Note #1" &&
	: > file2 &&
	git add file2 &&
	test_tick &&
	git commit -m 2nd &&
	git notes add -m "Note #2" &&
	: > file3 &&
	git add file3 &&
	test_tick &&
	git commit -m 3rd &&
	git notes add -m "Note #3"
'
 
cat > expect <<END_OF_LOG
commit 5ee1c35e83ea47cd3cc4f8cbee0568915fbbbd29
Author: A U Thor <author@example.com>
Date:   Thu Apr 7 15:15:13 2005 -0700
 
    3rd
 
Notes:
    Note #3
 
commit 08341ad9e94faa089d60fd3f523affb25c6da189
Author: A U Thor <author@example.com>
Date:   Thu Apr 7 15:14:13 2005 -0700
 
    2nd
 
Notes:
    Note #2
 
commit ab5f302035f2e7aaf04265f08b42034c23256e1f
Author: A U Thor <author@example.com>
Date:   Thu Apr 7 15:13:13 2005 -0700
 
    1st
 
Notes:
    Note #1
END_OF_LOG
 
test_expect_success 'verify commits and notes' '
 
	git log > actual &&
	test_cmp expect actual
'
 
test_expect_success 'remove some commits' '
 
	git reset --hard HEAD~2 &&
	git reflog expire --expire=now HEAD &&
	git gc --prune=now
'
 
test_expect_success 'verify that commits are gone' '
 
	! git cat-file -p 5ee1c35e83ea47cd3cc4f8cbee0568915fbbbd29 &&
	! git cat-file -p 08341ad9e94faa089d60fd3f523affb25c6da189 &&
	git cat-file -p ab5f302035f2e7aaf04265f08b42034c23256e1f
'
 
test_expect_success 'verify that notes are still present' '
 
	git notes show 5ee1c35e83ea47cd3cc4f8cbee0568915fbbbd29 &&
	git notes show 08341ad9e94faa089d60fd3f523affb25c6da189 &&
	git notes show ab5f302035f2e7aaf04265f08b42034c23256e1f
'
 
test_expect_success 'prune notes' '
 
	git notes prune
'
 
test_expect_success 'verify that notes are gone' '
 
	! git notes show 5ee1c35e83ea47cd3cc4f8cbee0568915fbbbd29 &&
	! git notes show 08341ad9e94faa089d60fd3f523affb25c6da189 &&
	git notes show ab5f302035f2e7aaf04265f08b42034c23256e1f
'
 
test_done