3 # Copyright (c) 2007 Michael Spang
6 test_description='git clean basic tests'
10 git config clean.requireForce no
12 test_expect_success 'setup' '
15 touch src/part1.c Makefile &&
16 echo build >.gitignore &&
17 echo \*.o >>.gitignore &&
19 git commit -m setup &&
20 touch src/part2.c README &&
25 test_expect_success 'git clean with skip-worktree .gitignore' '
26 git update-index --skip-worktree .gitignore &&
28 mkdir -p build docs &&
29 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
33 test -f src/part1.c &&
34 test -f src/part2.c &&
36 test ! -f src/part3.c &&
37 test -f docs/manual.txt &&
39 test -f build/lib.so &&
40 git update-index --no-skip-worktree .gitignore &&
41 git checkout .gitignore
44 test_expect_success 'git clean' '
46 mkdir -p build docs &&
47 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
51 test -f src/part1.c &&
52 test -f src/part2.c &&
54 test ! -f src/part3.c &&
55 test -f docs/manual.txt &&
61 test_expect_success 'git clean src/' '
63 mkdir -p build docs &&
64 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
68 test -f src/part1.c &&
69 test -f src/part2.c &&
71 test ! -f src/part3.c &&
72 test -f docs/manual.txt &&
78 test_expect_success 'git clean src/ src/' '
80 mkdir -p build docs &&
81 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
82 git clean src/ src/ &&
85 test -f src/part1.c &&
86 test -f src/part2.c &&
88 test ! -f src/part3.c &&
89 test -f docs/manual.txt &&
95 test_expect_success 'git clean with prefix' '
97 mkdir -p build docs src/test &&
98 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so src/test/1.c &&
99 (cd src/ && git clean) &&
102 test -f src/part1.c &&
103 test -f src/part2.c &&
105 test ! -f src/part3.c &&
106 test -f src/test/1.c &&
107 test -f docs/manual.txt &&
113 test_expect_success 'git clean with relative prefix' '
115 mkdir -p build docs &&
116 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
119 git clean -n ../src |
120 sed -n -e "s|^Would remove ||p"
122 test "$would_clean" = ../src/part3.c || {
123 echo "OOps <$would_clean>"
128 test_expect_success 'git clean with absolute path' '
130 mkdir -p build docs &&
131 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
134 git clean -n "$(pwd)/../src" |
135 sed -n -e "s|^Would remove ||p"
137 test "$would_clean" = ../src/part3.c || {
138 echo "OOps <$would_clean>"
143 test_expect_success 'git clean with out of work tree relative path' '
145 mkdir -p build docs &&
146 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
149 test_must_fail git clean -n ../..
153 test_expect_success 'git clean with out of work tree absolute path' '
155 mkdir -p build docs &&
156 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
157 dd=$(cd .. && pwd) &&
160 test_must_fail git clean -n $dd
164 test_expect_success 'git clean -d with prefix and path' '
166 mkdir -p build docs src/feature &&
167 touch a.out src/part3.c src/feature/file.c docs/manual.txt obj.o build/lib.so &&
168 (cd src/ && git clean -d feature/) &&
171 test -f src/part1.c &&
172 test -f src/part2.c &&
174 test -f src/part3.c &&
175 test ! -f src/feature/file.c &&
176 test -f docs/manual.txt &&
182 test_expect_success 'git clean symbolic link' '
184 mkdir -p build docs &&
185 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
186 ln -s docs/manual.txt src/part4.c &&
190 test -f src/part1.c &&
191 test -f src/part2.c &&
193 test ! -f src/part3.c &&
194 test ! -f src/part4.c &&
195 test -f docs/manual.txt &&
201 test_expect_success 'git clean with wildcard' '
203 touch a.clean b.clean other.c &&
204 git clean "*.clean" &&
207 test -f src/part1.c &&
208 test -f src/part2.c &&
215 test_expect_success 'git clean -n' '
217 mkdir -p build docs &&
218 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
222 test -f src/part1.c &&
223 test -f src/part2.c &&
225 test -f src/part3.c &&
226 test -f docs/manual.txt &&
232 test_expect_success 'git clean -d' '
234 mkdir -p build docs &&
235 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
239 test -f src/part1.c &&
240 test -f src/part2.c &&
242 test ! -f src/part3.c &&
249 test_expect_success 'git clean -d src/ examples/' '
251 mkdir -p build docs examples &&
252 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so examples/1.c &&
253 git clean -d src/ examples/ &&
256 test -f src/part1.c &&
257 test -f src/part2.c &&
259 test ! -f src/part3.c &&
260 test ! -f examples/1.c &&
261 test -f docs/manual.txt &&
267 test_expect_success 'git clean -x' '
269 mkdir -p build docs &&
270 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
274 test -f src/part1.c &&
275 test -f src/part2.c &&
277 test ! -f src/part3.c &&
278 test -f docs/manual.txt &&
284 test_expect_success 'git clean -d -x' '
286 mkdir -p build docs &&
287 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
291 test -f src/part1.c &&
292 test -f src/part2.c &&
294 test ! -f src/part3.c &&
301 test_expect_success 'git clean -X' '
303 mkdir -p build docs &&
304 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
308 test -f src/part1.c &&
309 test -f src/part2.c &&
311 test -f src/part3.c &&
312 test -f docs/manual.txt &&
318 test_expect_success 'git clean -d -X' '
320 mkdir -p build docs &&
321 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
325 test -f src/part1.c &&
326 test -f src/part2.c &&
328 test -f src/part3.c &&
329 test -f docs/manual.txt &&
335 test_expect_success 'clean.requireForce defaults to true' '
337 git config --unset clean.requireForce &&
338 test_must_fail git clean
342 test_expect_success 'clean.requireForce' '
344 git config clean.requireForce true &&
345 test_must_fail git clean
349 test_expect_success 'clean.requireForce and -n' '
351 mkdir -p build docs &&
352 touch a.out src/part3.c docs/manual.txt obj.o build/lib.so &&
356 test -f src/part1.c &&
357 test -f src/part2.c &&
359 test -f src/part3.c &&
360 test -f docs/manual.txt &&
366 test_expect_success 'clean.requireForce and -f' '
370 test -f src/part1.c &&
371 test -f src/part2.c &&
373 test ! -f src/part3.c &&
374 test -f docs/manual.txt &&
380 test_expect_success 'core.excludesfile' '
382 echo excludes >excludes &&
383 echo included >included &&
384 git config core.excludesfile excludes &&
385 output=$(git clean -n excludes included 2>&1) &&
386 expr "$output" : ".*included" >/dev/null &&
387 ! expr "$output" : ".*excludes" >/dev/null
391 test_expect_success SANITY 'removal failure' '
397 test_must_fail git clean -f -d &&
401 test_expect_success 'nested git work tree' '
409 git commit -a -m nested
416 test -f foo/.git/index &&
417 test -f foo/hello.world &&
421 test_expect_success 'force removal of nested git work tree' '
429 git commit -a -m nested
435 git clean -f -f -d &&
440 test_expect_success 'git clean -e' '
448 git clean -f -e 1 -e 2 &&