workaround fat/ntfs deficiencies for t3600-rm.sh (git-rm)
[git.git] / t / t3600-rm.sh
blobd1947e11c1a245dc8c9c201d0c115027f8adc54b
1 #!/bin/sh
3 # Copyright (c) 2006 Carl D. Worth
6 test_description='Test of the various options to git-rm.'
8 . ./test-lib.sh
10 # Setup some files to be removed, some with funny characters
11 touch -- foo bar baz 'space embedded' -q
12 git-add -- foo bar baz 'space embedded' -q
13 git-commit -m "add normal files"
14 test_tabs=y
15 if touch -- 'tab embedded' 'newline
16 embedded'
17 then
18 git-add -- 'tab embedded' 'newline
19 embedded'
20 git-commit -m "add files with tabs and newlines"
21 else
22 say 'Your filesystem does not allow tabs in filenames.'
23 test_tabs=n
26 test_expect_success \
27 'Pre-check that foo exists and is in index before git-rm foo' \
28 '[ -f foo ] && git-ls-files --error-unmatch foo'
30 test_expect_success \
31 'Test that git-rm foo succeeds' \
32 'git-rm foo'
34 test_expect_success \
35 'Post-check that foo exists but is not in index after git-rm foo' \
36 '[ -f foo ] && ! git-ls-files --error-unmatch foo'
38 test_expect_success \
39 'Pre-check that bar exists and is in index before "git-rm -f bar"' \
40 '[ -f bar ] && git-ls-files --error-unmatch bar'
42 test_expect_success \
43 'Test that "git-rm -f bar" succeeds' \
44 'git-rm -f bar'
46 test_expect_success \
47 'Post-check that bar does not exist and is not in index after "git-rm -f bar"' \
48 '! [ -f bar ] && ! git-ls-files --error-unmatch bar'
50 test_expect_success \
51 'Test that "git-rm -- -q" succeeds (remove a file that looks like an option)' \
52 'git-rm -- -q'
54 test "$test_tabs" = y && test_expect_success \
55 "Test that \"git-rm -f\" succeeds with embedded space, tab, or newline characters." \
56 "git-rm -f 'space embedded' 'tab embedded' 'newline
57 embedded'"
59 if test "$test_tabs" = y; then
60 chmod u-w .
61 test_expect_failure \
62 'Test that "git-rm -f" fails if its rm fails' \
63 'git-rm -f baz'
64 chmod u+w .
67 test_expect_success \
68 'When the rm in "git-rm -f" fails, it should not remove the file from the index' \
69 'git-ls-files --error-unmatch baz'
71 test_done