Documentation/describe: improve one-line summary
[git.git] / t / t3210-pack-refs.sh
blobaa9eb3a3e5ef0637615c6d958a29dbd9bbbf0895
1 #!/bin/sh
3 # Copyright (c) 2005 Amos Waterland
4 # Copyright (c) 2006 Christian Couder
7 test_description='git pack-refs should not change the branch semantic
9 This test runs git pack-refs and git show-ref and checks that the branch
10 semantic is still the same.
12 . ./test-lib.sh
14 test_expect_success 'enable reflogs' '
15 git config core.logallrefupdates true
18 test_expect_success \
19 'prepare a trivial repository' \
20 'echo Hello > A &&
21 git update-index --add A &&
22 git commit -m "Initial commit." &&
23 HEAD=$(git rev-parse --verify HEAD)'
25 SHA1=
27 test_expect_success \
28 'see if git show-ref works as expected' \
29 'git branch a &&
30 SHA1=`cat .git/refs/heads/a` &&
31 echo "$SHA1 refs/heads/a" >expect &&
32 git show-ref a >result &&
33 test_cmp expect result'
35 test_expect_success \
36 'see if a branch still exists when packed' \
37 'git branch b &&
38 git pack-refs --all &&
39 rm -f .git/refs/heads/b &&
40 echo "$SHA1 refs/heads/b" >expect &&
41 git show-ref b >result &&
42 test_cmp expect result'
44 test_expect_success 'git branch c/d should barf if branch c exists' '
45 git branch c &&
46 git pack-refs --all &&
47 rm -f .git/refs/heads/c &&
48 test_must_fail git branch c/d
51 test_expect_success \
52 'see if a branch still exists after git pack-refs --prune' \
53 'git branch e &&
54 git pack-refs --all --prune &&
55 echo "$SHA1 refs/heads/e" >expect &&
56 git show-ref e >result &&
57 test_cmp expect result'
59 test_expect_success 'see if git pack-refs --prune remove ref files' '
60 git branch f &&
61 git pack-refs --all --prune &&
62 ! test -f .git/refs/heads/f
65 test_expect_success 'see if git pack-refs --prune removes empty dirs' '
66 git branch r/s/t &&
67 git pack-refs --all --prune &&
68 ! test -e .git/refs/heads/r
71 test_expect_success \
72 'git branch g should work when git branch g/h has been deleted' \
73 'git branch g/h &&
74 git pack-refs --all --prune &&
75 git branch -d g/h &&
76 git branch g &&
77 git pack-refs --all &&
78 git branch -d g'
80 test_expect_success 'git branch i/j/k should barf if branch i exists' '
81 git branch i &&
82 git pack-refs --all --prune &&
83 test_must_fail git branch i/j/k
86 test_expect_success \
87 'test git branch k after branch k/l/m and k/lm have been deleted' \
88 'git branch k/l &&
89 git branch k/lm &&
90 git branch -d k/l &&
91 git branch k/l/m &&
92 git branch -d k/l/m &&
93 git branch -d k/lm &&
94 git branch k'
96 test_expect_success \
97 'test git branch n after some branch deletion and pruning' \
98 'git branch n/o &&
99 git branch n/op &&
100 git branch -d n/o &&
101 git branch n/o/p &&
102 git branch -d n/op &&
103 git pack-refs --all --prune &&
104 git branch -d n/o/p &&
105 git branch n'
107 test_expect_success \
108 'see if up-to-date packed refs are preserved' \
109 'git branch q &&
110 git pack-refs --all --prune &&
111 git update-ref refs/heads/q refs/heads/q &&
112 ! test -f .git/refs/heads/q'
114 test_expect_success 'pack, prune and repack' '
115 git tag foo &&
116 git pack-refs --all --prune &&
117 git show-ref >all-of-them &&
118 git pack-refs &&
119 git show-ref >again &&
120 test_cmp all-of-them again
123 test_expect_success 'explicit pack-refs with dangling packed reference' '
124 git commit --allow-empty -m "soon to be garbage-collected" &&
125 git pack-refs --all &&
126 git reset --hard HEAD^ &&
127 git reflog expire --expire=all --all &&
128 git prune --expire=all &&
129 git pack-refs --all 2>result &&
130 test_cmp /dev/null result
133 test_expect_success 'delete ref with dangling packed version' '
134 git checkout -b lamb &&
135 git commit --allow-empty -m "future garbage" &&
136 git pack-refs --all &&
137 git reset --hard HEAD^ &&
138 git checkout master &&
139 git reflog expire --expire=all --all &&
140 git prune --expire=all &&
141 git branch -d lamb 2>result &&
142 test_cmp /dev/null result
145 test_expect_success 'delete ref while another dangling packed ref' '
146 git branch lamb &&
147 git commit --allow-empty -m "future garbage" &&
148 git pack-refs --all &&
149 git reset --hard HEAD^ &&
150 git reflog expire --expire=all --all &&
151 git prune --expire=all &&
152 git branch -d lamb 2>result &&
153 test_cmp /dev/null result
156 test_expect_success 'pack ref directly below refs/' '
157 git update-ref refs/top HEAD &&
158 git pack-refs --all --prune &&
159 grep refs/top .git/packed-refs &&
160 test_path_is_missing .git/refs/top
163 test_expect_success 'disable reflogs' '
164 git config core.logallrefupdates false &&
165 rm -rf .git/logs
168 test_expect_success 'create packed foo/bar/baz branch' '
169 git branch foo/bar/baz &&
170 git pack-refs --all --prune &&
171 test_path_is_missing .git/refs/heads/foo/bar/baz &&
172 test_path_is_missing .git/logs/refs/heads/foo/bar/baz
175 test_expect_success 'notice d/f conflict with existing directory' '
176 test_must_fail git branch foo &&
177 test_must_fail git branch foo/bar
180 test_expect_success 'existing directory reports concrete ref' '
181 test_must_fail git branch foo 2>stderr &&
182 grep refs/heads/foo/bar/baz stderr
185 test_expect_success 'notice d/f conflict with existing ref' '
186 test_must_fail git branch foo/bar/baz/extra &&
187 test_must_fail git branch foo/bar/baz/lots/of/extra/components
190 test_done