Merge jc/diff leftover bits.
[git.git] / t / t3600-rm.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Carl D. Worth
4 #
5
6 test_description='Test of the various options to git-rm.'
7
8 . ./test-lib.sh
9
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
24 fi
25
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'
29
30 test_expect_success \
31     'Test that git-rm foo succeeds' \
32     'git-rm foo'
33
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'
37
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'
41
42 test_expect_success \
43     'Test that "git-rm -f bar" succeeds' \
44     'git-rm -f bar'
45
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'
49
50 test_expect_success \
51     'Test that "git-rm -- -q" succeeds (remove a file that looks like an option)' \
52     'git-rm -- -q'
53
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'"
58
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 .
65 fi
66
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'
70
71 test_done