3 # Copyright (c) 2006 Carl D. Worth
6 test_description
='Test of the various options to git rm.'
10 # Setup some files to be removed, some with funny characters
12 'Initialize test directory' \
13 "touch -- foo bar baz 'space embedded' -q &&
14 git add -- foo bar baz 'space embedded' -q &&
15 git commit -m 'add normal files'"
17 if touch -- 'tab embedded' 'newline
20 test_set_prereq FUNNYNAMES
22 say
'Your filesystem does not allow tabs in filenames.'
25 test_expect_success FUNNYNAMES
'add files with funny names' "
26 git add -- 'tab embedded' 'newline
28 git commit -m 'add files with tabs and newlines'
32 'Pre-check that foo exists and is in index before git rm foo' \
33 '[ -f foo ] && git ls-files --error-unmatch foo'
36 'Test that git rm foo succeeds' \
40 'Test that git rm --cached foo succeeds if the index matches the file' \
46 'Test that git rm --cached foo succeeds if the index matches the file' \
50 echo "other content" > foo
54 'Test that git rm --cached foo fails if the index matches neither the file nor HEAD' '
58 echo "other content" > foo
60 echo "yet another content" > foo
61 test_must_fail git rm --cached foo
65 'Test that git rm --cached -f foo works in case where --cached only did not' \
69 echo "other content" > foo
71 echo "yet another content" > foo
72 git rm --cached -f foo'
75 'Post-check that foo exists but is not in index after git rm foo' \
76 '[ -f foo ] && test_must_fail git ls-files --error-unmatch foo'
79 'Pre-check that bar exists and is in index before "git rm bar"' \
80 '[ -f bar ] && git ls-files --error-unmatch bar'
83 'Test that "git rm bar" succeeds' \
87 'Post-check that bar does not exist and is not in index after "git rm -f bar"' \
88 '! [ -f bar ] && test_must_fail git ls-files --error-unmatch bar'
91 'Test that "git rm -- -q" succeeds (remove a file that looks like an option)' \
94 test_expect_success FUNNYNAMES \
95 "Test that \"git rm -f\" succeeds with embedded space, tab, or newline characters." \
96 "git rm -f 'space embedded' 'tab embedded' 'newline
99 test_expect_success SANITY
'Test that "git rm -f" fails if its rm fails' '
101 test_must_fail git rm -f baz &&
105 test_expect_success \
106 'When the rm in "git rm -f" fails, it should not remove the file from the index' \
107 'git ls-files --error-unmatch baz'
109 test_expect_success
'Remove nonexistent file with --ignore-unmatch' '
110 git rm --ignore-unmatch nonexistent
113 test_expect_success
'"rm" command printed' '
114 echo frotz > test-file &&
116 git commit -m "add file for rm test" &&
117 git rm test-file > rm-output &&
118 test `grep "^rm " rm-output | wc -l` = 1 &&
119 rm -f test-file rm-output &&
120 git commit -m "remove file from rm test"
123 test_expect_success
'"rm" command suppressed with --quiet' '
124 echo frotz > test-file &&
126 git commit -m "add file for rm --quiet test" &&
127 git rm --quiet test-file > rm-output &&
128 test `wc -l < rm-output` = 0 &&
129 rm -f test-file rm-output &&
130 git commit -m "remove file from rm --quiet test"
133 # Now, failure cases.
134 test_expect_success
'Re-add foo and baz' '
136 git ls-files --error-unmatch foo baz
139 test_expect_success
'Modify foo -- rm should refuse' '
141 test_must_fail git rm foo baz &&
144 git ls-files --error-unmatch foo baz
147 test_expect_success
'Modified foo -- rm -f should work' '
151 test_must_fail git ls-files --error-unmatch foo &&
152 test_must_fail git ls-files --error-unmatch bar
155 test_expect_success
'Re-add foo and baz for HEAD tests' '
157 git checkout HEAD -- baz &&
159 git ls-files --error-unmatch foo baz
162 test_expect_success
'foo is different in index from HEAD -- rm should refuse' '
163 test_must_fail git rm foo baz &&
166 git ls-files --error-unmatch foo baz
169 test_expect_success
'but with -f it should work.' '
173 test_must_fail git ls-files --error-unmatch foo
174 test_must_fail git ls-files --error-unmatch baz
177 test_expect_success
'refuse to remove cached empty file with modifications' '
180 echo content >empty &&
181 test_must_fail git rm --cached empty
184 test_expect_success
'remove intent-to-add file without --force' '
185 echo content >intent-to-add &&
186 git add -N intent-to-add
187 git rm --cached intent-to-add
190 test_expect_success
'Recursive test setup' '
192 echo qfwfq >frotz/nitfol &&
194 git commit -m "subdir test"
197 test_expect_success
'Recursive without -r fails' '
198 test_must_fail git rm frotz &&
203 test_expect_success
'Recursive with -r but dirty' '
204 echo qfwfq >>frotz/nitfol
205 test_must_fail git rm -r frotz &&
210 test_expect_success
'Recursive with -r -f' '
211 git rm -f -r frotz &&
212 ! test -f frotz/nitfol &&
216 test_expect_success
'Remove nonexistent file returns nonzero exit status' '
217 test_must_fail git rm nonexistent
220 test_expect_success
'Call "rm" from outside the work tree' '
224 echo something > somefile &&
226 git commit -m "add a file" &&
228 git --git-dir=repo/.git --work-tree=repo rm somefile) &&
229 test_must_fail git ls-files --error-unmatch somefile)
232 test_expect_success
'refresh index before checking if it is up-to-date' '
235 test-chmtime -86400 frotz/nitfol &&
236 git rm frotz/nitfol &&
237 test ! -f frotz/nitfol
241 test_expect_success
'choking "git rm" should not let it die with cruft' '
242 git reset -q --hard &&
244 while test $i -lt 12000
246 echo "100644 $_z40 0 some-file-$i"
248 done | git update-index --index-info &&
249 git rm -n "some-file-*" | :;
250 test -f .git/index.lock
252 rm -f .git/index.lock
257 test_expect_success
'rm removes subdirectories recursively' '
258 mkdir -p dir/subdir/subsubdir &&
259 echo content >dir/subdir/subsubdir/file &&
260 git add dir/subdir/subsubdir/file &&
261 git rm -f dir/subdir/subsubdir/file &&
269 cat >expect.modified
<<EOF
273 test_expect_success
'rm removes empty submodules from work tree' '
275 git update-index --add --cacheinfo 160000 $(git rev-parse HEAD) submod &&
276 git config -f .gitmodules submodule.sub.url ./. &&
277 git config -f .gitmodules submodule.sub.path submod &&
278 git submodule init &&
279 git add .gitmodules &&
280 git commit -m "add submodule" &&
283 git status -s -uno --ignore-submodules=none > actual &&
284 test_cmp expect actual
287 test_expect_success
'rm removes removed submodule from index' '
289 git submodule update &&
292 git status -s -uno --ignore-submodules=none > actual &&
293 test_cmp expect actual
296 test_expect_success
'rm removes work tree of unmodified submodules' '
298 git submodule update &&
301 git status -s -uno --ignore-submodules=none > actual &&
302 test_cmp expect actual
305 test_expect_success
'rm of a populated submodule with different HEAD fails unless forced' '
307 git submodule update &&
311 test_must_fail git rm submod &&
313 test -f submod/.git &&
314 git status -s -uno --ignore-submodules=none > actual &&
315 test_cmp expect.modified actual &&
318 git status -s -uno --ignore-submodules=none > actual &&
319 test_cmp expect actual
322 test_expect_success
'rm of a populated submodule with modifications fails unless forced' '
324 git submodule update &&
328 test_must_fail git rm submod &&
330 test -f submod/.git &&
331 git status -s -uno --ignore-submodules=none > actual &&
332 test_cmp expect.modified actual &&
335 git status -s -uno --ignore-submodules=none > actual &&
336 test_cmp expect actual
339 test_expect_success
'rm of a populated submodule with untracked files fails unless forced' '
341 git submodule update &&
345 test_must_fail git rm submod &&
347 test -f submod/.git &&
348 git status -s -uno --ignore-submodules=none > actual &&
349 test_cmp expect.modified actual &&
352 git status -s -uno --ignore-submodules=none > actual &&
353 test_cmp expect actual
356 test_expect_success
'setup submodule conflict' '
358 git submodule update &&
359 git checkout -b branch1 &&
362 git commit -m "added nitfol 1" &&
363 git checkout -b branch2 master &&
366 git commit -m "added nitfol 2" &&
367 git checkout -b conflict1 master &&
373 git commit -m "submod 1" &&
374 git checkout -b conflict2 master &&
379 git commit -m "submod 2"
382 cat >expect.conflict
<<EOF
386 test_expect_success
'rm removes work tree of unmodified conflicted submodule' '
387 git checkout conflict1 &&
389 git submodule update &&
390 test_must_fail git merge conflict2 &&
393 git status -s -uno --ignore-submodules=none > actual &&
394 test_cmp expect actual
397 test_expect_success
'rm of a conflicted populated submodule with different HEAD fails unless forced' '
398 git checkout conflict1 &&
400 git submodule update &&
404 test_must_fail git merge conflict2 &&
405 test_must_fail git rm submod &&
407 test -f submod/.git &&
408 git status -s -uno --ignore-submodules=none > actual &&
409 test_cmp expect.conflict actual &&
412 git status -s -uno --ignore-submodules=none > actual &&
413 test_cmp expect actual
416 test_expect_success
'rm of a conflicted populated submodule with modifications fails unless forced' '
417 git checkout conflict1 &&
419 git submodule update &&
423 test_must_fail git merge conflict2 &&
424 test_must_fail git rm submod &&
426 test -f submod/.git &&
427 git status -s -uno --ignore-submodules=none > actual &&
428 test_cmp expect.conflict actual &&
431 git status -s -uno --ignore-submodules=none > actual &&
432 test_cmp expect actual
435 test_expect_success
'rm of a conflicted populated submodule with untracked files fails unless forced' '
436 git checkout conflict1 &&
438 git submodule update &&
442 test_must_fail git merge conflict2 &&
443 test_must_fail git rm submod &&
445 test -f submod/.git &&
446 git status -s -uno --ignore-submodules=none > actual &&
447 test_cmp expect.conflict actual &&
450 git status -s -uno --ignore-submodules=none > actual &&
451 test_cmp expect actual
454 test_expect_success
'rm of a conflicted populated submodule with a .git directory fails even when forced' '
455 git checkout conflict1 &&
457 git submodule update &&
460 cp -a ../.git/modules/sub .git &&
461 GIT_WORK_TREE=. git config --unset core.worktree
463 test_must_fail git merge conflict2 &&
464 test_must_fail git rm submod &&
466 test -d submod/.git &&
467 git status -s -uno --ignore-submodules=none > actual &&
468 test_cmp expect.conflict actual &&
469 test_must_fail git rm -f submod &&
471 test -d submod/.git &&
472 git status -s -uno --ignore-submodules=none > actual &&
473 test_cmp expect.conflict actual &&
478 test_expect_success
'rm of a conflicted unpopulated submodule succeeds' '
479 git checkout conflict1 &&
481 test_must_fail git merge conflict2 &&
484 git status -s -uno --ignore-submodules=none > actual &&
485 test_cmp expect actual
488 test_expect_success
'rm of a populated submodule with a .git directory fails even when forced' '
489 git checkout -f master &&
491 git submodule update &&
494 cp -a ../.git/modules/sub .git &&
495 GIT_WORK_TREE=. git config --unset core.worktree
497 test_must_fail git rm submod &&
499 test -d submod/.git &&
500 git status -s -uno --ignore-submodules=none > actual &&
502 test_must_fail git rm -f submod &&
504 test -d submod/.git &&
505 git status -s -uno --ignore-submodules=none > actual &&
510 cat >expect.deepmodified
<<EOF
514 test_expect_success
'setup subsubmodule' '
516 git submodule update &&
518 git update-index --add --cacheinfo 160000 $(git rev-parse HEAD) subsubmod &&
519 git config -f .gitmodules submodule.sub.url ../. &&
520 git config -f .gitmodules submodule.sub.path subsubmod &&
521 git submodule init &&
522 git add .gitmodules &&
523 git commit -m "add subsubmodule" &&
524 git submodule update subsubmod
526 git commit -a -m "added deep submodule"
529 test_expect_success
'rm recursively removes work tree of unmodified submodules' '
532 git status -s -uno --ignore-submodules=none > actual &&
533 test_cmp expect actual
536 test_expect_success
'rm of a populated nested submodule with different nested HEAD fails unless forced' '
538 git submodule update --recursive &&
539 (cd submod/subsubmod &&
542 test_must_fail git rm submod &&
544 test -f submod/.git &&
545 git status -s -uno --ignore-submodules=none > actual &&
546 test_cmp expect.modified actual &&
549 git status -s -uno --ignore-submodules=none > actual &&
550 test_cmp expect actual
553 test_expect_success
'rm of a populated nested submodule with nested modifications fails unless forced' '
555 git submodule update --recursive &&
556 (cd submod/subsubmod &&
559 test_must_fail git rm submod &&
561 test -f submod/.git &&
562 git status -s -uno --ignore-submodules=none > actual &&
563 test_cmp expect.modified actual &&
566 git status -s -uno --ignore-submodules=none > actual &&
567 test_cmp expect actual
570 test_expect_success
'rm of a populated nested submodule with nested untracked files fails unless forced' '
572 git submodule update --recursive &&
573 (cd submod/subsubmod &&
576 test_must_fail git rm submod &&
578 test -f submod/.git &&
579 git status -s -uno --ignore-submodules=none > actual &&
580 test_cmp expect.modified actual &&
583 git status -s -uno --ignore-submodules=none > actual &&
584 test_cmp expect actual
587 test_expect_success
'rm of a populated nested submodule with a nested .git directory fails even when forced' '
589 git submodule update --recursive &&
590 (cd submod/subsubmod &&
592 cp -a ../../.git/modules/sub/modules/sub .git &&
593 GIT_WORK_TREE=. git config --unset core.worktree
595 test_must_fail git rm submod &&
597 test -d submod/subsubmod/.git &&
598 git status -s -uno --ignore-submodules=none > actual &&
600 test_must_fail git rm -f submod &&
602 test -d submod/subsubmod/.git &&
603 git status -s -uno --ignore-submodules=none > actual &&