]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7003-filter-branch.sh
diff --check: do not unconditionally complain about trailing empty lines
[thirdparty/git.git] / t / t7003-filter-branch.sh
CommitLineData
6f6826c5
JS
1#!/bin/sh
2
3test_description='git-filter-branch'
4. ./test-lib.sh
5
6make_commit () {
40a7ce64 7 lower=$(echo $1 | tr '[A-Z]' '[a-z]')
6f6826c5
JS
8 echo $lower > $lower
9 git add $lower
aee078bf 10 test_tick
6f6826c5
JS
11 git commit -m $1
12 git tag $1
13}
14
15test_expect_success 'setup' '
16 make_commit A
17 make_commit B
18 git checkout -b branch B
19 make_commit D
90356287
JS
20 mkdir dir
21 make_commit dir/D
6f6826c5
JS
22 make_commit E
23 git checkout master
24 make_commit C
25 git checkout branch
26 git merge C
27 git tag F
28 make_commit G
29 make_commit H
30'
31
5be60078 32H=$(git rev-parse H)
6f6826c5
JS
33
34test_expect_success 'rewrite identically' '
dfd05e38 35 git-filter-branch branch
6f6826c5 36'
6f6826c5 37test_expect_success 'result is really identical' '
dfd05e38 38 test $H = $(git rev-parse HEAD)
6f6826c5
JS
39'
40
a4661b01
PB
41test_expect_success 'rewrite bare repository identically' '
42 (git config core.bare true && cd .git && git-filter-branch branch)
43'
44git config core.bare false
45test_expect_success 'result is really identical' '
46 test $H = $(git rev-parse HEAD)
47'
48
6f6826c5 49test_expect_success 'rewrite, renaming a specific file' '
dfd05e38 50 git-filter-branch -f --tree-filter "mv d doh || :" HEAD
6f6826c5
JS
51'
52
53test_expect_success 'test that the file was renamed' '
90356287
JS
54 test d = "$(git show HEAD:doh --)" &&
55 ! test -f d &&
46eb449c 56 test -f doh &&
90356287
JS
57 test d = "$(cat doh)"
58'
59
60test_expect_success 'rewrite, renaming a specific directory' '
61 git-filter-branch -f --tree-filter "mv dir diroh || :" HEAD
62'
63
6a589fda 64test_expect_success 'test that the directory was renamed' '
90356287
JS
65 test dir/d = "$(git show HEAD:diroh/d --)" &&
66 ! test -d dir &&
67 test -d diroh &&
68 ! test -d diroh/dir &&
69 test -f diroh/d &&
70 test dir/d = "$(cat diroh/d)"
6f6826c5
JS
71'
72
dfd05e38 73git tag oldD HEAD~4
98409060 74test_expect_success 'rewrite one branch, keeping a side branch' '
dfd05e38
JS
75 git branch modD oldD &&
76 git-filter-branch -f --tree-filter "mv b boh || :" D..modD
98409060
JS
77'
78
79test_expect_success 'common ancestor is still common (unchanged)' '
5be60078 80 test "$(git merge-base modD D)" = "$(git rev-parse B)"
98409060
JS
81'
82
685ef546
JS
83test_expect_success 'filter subdirectory only' '
84 mkdir subdir &&
85 touch subdir/new &&
86 git add subdir/new &&
87 test_tick &&
88 git commit -m "subdir" &&
89 echo H > a &&
90 test_tick &&
91 git commit -m "not subdir" a &&
92 echo A > subdir/new &&
93 test_tick &&
94 git commit -m "again subdir" subdir/new &&
95 git rm a &&
96 test_tick &&
97 git commit -m "again not subdir" &&
dfd05e38
JS
98 git branch sub &&
99 git-filter-branch -f --subdirectory-filter subdir refs/heads/sub
685ef546
JS
100'
101
102test_expect_success 'subdirectory filter result looks okay' '
5be60078 103 test 2 = $(git rev-list sub | wc -l) &&
685ef546 104 git show sub:new &&
c8a08692 105 test_must_fail git show sub:subdir
685ef546
JS
106'
107
a17171b4 108test_expect_success 'more setup' '
cfabd6ee
JS
109 git checkout master &&
110 mkdir subdir &&
111 echo A > subdir/new &&
112 git add subdir/new &&
113 test_tick &&
114 git commit -m "subdir on master" subdir/new &&
115 git rm a &&
116 test_tick &&
117 git commit -m "again subdir on master" &&
a17171b4 118 git merge branch
cfabd6ee
JS
119'
120
55f22ff2 121test_expect_success 'use index-filter to move into a subdirectory' '
dfd05e38
JS
122 git branch directorymoved &&
123 git-filter-branch -f --index-filter \
5be60078 124 "git ls-files -s | sed \"s-\\t-&newsubdir/-\" |
55f22ff2 125 GIT_INDEX_FILE=\$GIT_INDEX_FILE.new \
5be60078 126 git update-index --index-info &&
f69e836f 127 mv \"\$GIT_INDEX_FILE.new\" \"\$GIT_INDEX_FILE\"" directorymoved &&
55f22ff2
JS
128 test -z "$(git diff HEAD directorymoved:newsubdir)"'
129
8c1ce0f4 130test_expect_success 'stops when msg filter fails' '
dfd05e38 131 old=$(git rev-parse HEAD) &&
c8a08692 132 test_must_fail git-filter-branch -f --msg-filter false HEAD &&
dfd05e38
JS
133 test $old = $(git rev-parse HEAD) &&
134 rm -rf .git-rewrite
8c1ce0f4
JS
135'
136
f6b78c6e
JS
137test_expect_success 'author information is preserved' '
138 : > i &&
139 git add i &&
140 test_tick &&
141 GIT_AUTHOR_NAME="B V Uips" git commit -m bvuips &&
dfd05e38
JS
142 git branch preserved-author &&
143 git-filter-branch -f --msg-filter "cat; \
8c1ce0f4 144 test \$GIT_COMMIT != $(git rev-parse master) || \
f6b78c6e
JS
145 echo Hallo" \
146 preserved-author &&
147 test 1 = $(git rev-list --author="B V Uips" preserved-author | wc -l)
148'
149
150test_expect_success "remove a certain author's commits" '
151 echo i > i &&
152 test_tick &&
153 git commit -m i i &&
dfd05e38
JS
154 git branch removed-author &&
155 git-filter-branch -f --commit-filter "\
f6b78c6e
JS
156 if [ \"\$GIT_AUTHOR_NAME\" = \"B V Uips\" ];\
157 then\
f95eef15 158 skip_commit \"\$@\";
f6b78c6e
JS
159 else\
160 git commit-tree \"\$@\";\
161 fi" removed-author &&
162 cnt1=$(git rev-list master | wc -l) &&
163 cnt2=$(git rev-list removed-author | wc -l) &&
164 test $cnt1 -eq $(($cnt2 + 1)) &&
165 test 0 = $(git rev-list --author="B V Uips" removed-author | wc -l)
166'
167
dfd05e38 168test_expect_success 'barf on invalid name' '
c8a08692
BC
169 test_must_fail git filter-branch -f master xy-problem &&
170 test_must_fail git filter-branch -f HEAD^
dfd05e38
JS
171'
172
7e0f1704
JS
173test_expect_success '"map" works in commit filter' '
174 git filter-branch -f --commit-filter "\
175 parent=\$(git rev-parse \$GIT_COMMIT^) &&
176 mapped=\$(map \$parent) &&
177 actual=\$(echo \"\$@\" | sed \"s/^.*-p //\") &&
178 test \$mapped = \$actual &&
179 git commit-tree \"\$@\";" master~2..master &&
180 git rev-parse --verify master
181'
182
1fe32cb9
JH
183test_expect_success 'Name needing quotes' '
184
185 git checkout -b rerere A &&
186 mkdir foo &&
187 name="れれれ" &&
188 >foo/$name &&
189 git add foo &&
190 git commit -m "Adding a file" &&
191 git filter-branch --tree-filter "rm -fr foo" &&
c8a08692 192 test_must_fail git ls-files --error-unmatch "foo/$name" &&
1fe32cb9
JH
193 test $(git rev-parse --verify rerere) != $(git rev-parse --verify A)
194
195'
196
5b044ac3
JH
197test_expect_success 'Subdirectory filter with disappearing trees' '
198 git reset --hard &&
199 git checkout master &&
200
201 mkdir foo &&
202 touch foo/bar &&
203 git add foo &&
204 test_tick &&
205 git commit -m "Adding foo" &&
206
207 git rm -r foo &&
208 test_tick &&
209 git commit -m "Removing foo" &&
210
211 mkdir foo &&
212 touch foo/bar &&
213 git add foo &&
214 test_tick &&
215 git commit -m "Re-adding foo" &&
216
217 git filter-branch -f --subdirectory-filter foo &&
218 test $(git rev-list master | wc -l) = 3
219'
220
1bf6551e
BC
221test_expect_success 'Tag name filtering retains tag message' '
222 git tag -m atag T &&
223 git cat-file tag T > expect &&
224 git filter-branch -f --tag-name-filter cat &&
225 git cat-file tag T > actual &&
3af82863 226 test_cmp expect actual
1bf6551e
BC
227'
228
229faux_gpg_tag='object XXXXXX
230type commit
231tag S
232tagger T A Gger <tagger@example.com> 1206026339 -0500
233
234This is a faux gpg signed tag.
235-----BEGIN PGP SIGNATURE-----
236Version: FauxGPG v0.0.0 (FAUX/Linux)
237
238gdsfoewhxu/6l06f1kxyxhKdZkrcbaiOMtkJUA9ITAc1mlamh0ooasxkH1XwMbYQ
239acmwXaWET20H0GeAGP+7vow=
240=agpO
241-----END PGP SIGNATURE-----
242'
243test_expect_success 'Tag name filtering strips gpg signature' '
244 sha1=$(git rev-parse HEAD) &&
245 sha1t=$(echo "$faux_gpg_tag" | sed -e s/XXXXXX/$sha1/ | git mktag) &&
246 git update-ref "refs/tags/S" "$sha1t" &&
247 echo "$faux_gpg_tag" | sed -e s/XXXXXX/$sha1/ | head -n 6 > expect &&
248 git filter-branch -f --tag-name-filter cat &&
249 git cat-file tag S > actual &&
3af82863 250 test_cmp expect actual
1bf6551e
BC
251'
252
6f6826c5 253test_done