Deprecate usage of git-var -l for getting config vars list
[git/dscho.git] / t / t3600-rm.sh
blobacaa4d6bdc989c364d6c929167f3b8f067dbec87
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 # Later we will try removing an unremovable path to make sure
27 # git-rm barfs, but if the test is run as root that cannot be
28 # arranged.
29 : >test-file
30 chmod a-w .
31 rm -f test-file
32 test -f test-file && test_failed_remove=y
33 chmod 775 .
34 rm -f test-file
36 test_expect_success \
37 'Pre-check that foo exists and is in index before git-rm foo' \
38 '[ -f foo ] && git-ls-files --error-unmatch foo'
40 test_expect_success \
41 'Test that git-rm foo succeeds' \
42 'git-rm foo'
44 test_expect_success \
45 'Post-check that foo exists but is not in index after git-rm foo' \
46 '[ -f foo ] && ! git-ls-files --error-unmatch foo'
48 test_expect_success \
49 'Pre-check that bar exists and is in index before "git-rm -f bar"' \
50 '[ -f bar ] && git-ls-files --error-unmatch bar'
52 test_expect_success \
53 'Test that "git-rm -f bar" succeeds' \
54 'git-rm -f bar'
56 test_expect_success \
57 'Post-check that bar does not exist and is not in index after "git-rm -f bar"' \
58 '! [ -f bar ] && ! git-ls-files --error-unmatch bar'
60 test_expect_success \
61 'Test that "git-rm -- -q" succeeds (remove a file that looks like an option)' \
62 'git-rm -- -q'
64 test "$test_tabs" = y && test_expect_success \
65 "Test that \"git-rm -f\" succeeds with embedded space, tab, or newline characters." \
66 "git-rm -f 'space embedded' 'tab embedded' 'newline
67 embedded'"
69 if test "$test_failed_remove" = y; then
70 chmod a-w .
71 test_expect_failure \
72 'Test that "git-rm -f" fails if its rm fails' \
73 'git-rm -f baz'
74 chmod 775 .
75 else
76 test_expect_success 'skipping removal failure (perhaps running as root?)' :
79 test_expect_success \
80 'When the rm in "git-rm -f" fails, it should not remove the file from the index' \
81 'git-ls-files --error-unmatch baz'
83 test_done