Add back md5sum, which is required by git tests
[msysgit/historical-msysgit.git] / git / t / t3700-add.sh
blobb216a3ae8856864b12d183c9c0dfef62789b7203
1 #!/bin/sh
3 # Copyright (c) 2006 Carl D. Worth
6 test_description='Test of git add, including the -- option.'
8 . ./test-lib.sh
10 test_expect_success \
11 'Test of git add' \
12 'touch foo && git add foo'
14 test_expect_success \
15 'Post-check that foo is in the index' \
16 'git ls-files foo | grep foo'
18 test_expect_success \
19 'Test that "git add -- -q" works' \
20 'touch -- -q && git add -- -q'
22 test_expect_success \
23 'git add: Test that executable bit is not used if core.filemode=0' \
24 'git config core.filemode 0 &&
25 echo foo >xfoo1 &&
26 chmod 755 xfoo1 &&
27 git add xfoo1 &&
28 case "`git ls-files --stage xfoo1`" in
29 100644" "*xfoo1) echo ok;;
30 *) echo fail; git ls-files --stage xfoo1; (exit 1);;
31 esac'
33 test "$no_symlinks" || {
34 test_expect_success 'git add: filemode=0 should not get confused by symlink' '
35 rm -f xfoo1 &&
36 ln -s foo xfoo1 &&
37 git add xfoo1 &&
38 case "`git ls-files --stage xfoo1`" in
39 120000" "*xfoo1) echo ok;;
40 *) echo fail; git ls-files --stage xfoo1; (exit 1);;
41 esac
45 test_expect_success \
46 'git update-index --add: Test that executable bit is not used...' \
47 'git config core.filemode 0 &&
48 echo foo >xfoo2 &&
49 chmod 755 xfoo2 &&
50 git update-index --add xfoo2 &&
51 case "`git ls-files --stage xfoo2`" in
52 100644" "*xfoo2) echo ok;;
53 *) echo fail; git ls-files --stage xfoo2; (exit 1);;
54 esac'
56 test "$no_symlinks" || {
57 test_expect_success 'git add: filemode=0 should not get confused by symlink' '
58 rm -f xfoo2 &&
59 ln -s foo xfoo2 &&
60 git update-index --add xfoo2 &&
61 case "`git ls-files --stage xfoo2`" in
62 120000" "*xfoo2) echo ok;;
63 *) echo fail; git ls-files --stage xfoo2; (exit 1);;
64 esac
67 test_expect_success \
68 'git update-index --add: Test that executable bit is not used...' \
69 'git config core.filemode 0 &&
70 ln -s xfoo2 xfoo3 &&
71 git update-index --add xfoo3 &&
72 case "`git ls-files --stage xfoo3`" in
73 120000" "*xfoo3) echo ok;;
74 *) echo fail; git ls-files --stage xfoo3; (exit 1);;
75 esac'
78 test_expect_success '.gitignore test setup' '
79 echo "*.ig" >.gitignore &&
80 mkdir c.if d.ig &&
81 >a.ig && >b.if &&
82 >c.if/c.if && >c.if/c.ig &&
83 >d.ig/d.if && >d.ig/d.ig
86 test_expect_success '.gitignore is honored' '
87 git add . &&
88 ! git ls-files | grep "\\.ig"
91 test_expect_success 'error out when attempting to add ignored ones without -f' '
92 ! git add a.?? &&
93 ! git ls-files | grep "\\.ig"
96 test_expect_success 'error out when attempting to add ignored ones without -f' '
97 ! git add d.?? &&
98 ! git ls-files | grep "\\.ig"
101 test_expect_success 'add ignored ones with -f' '
102 git add -f a.?? &&
103 git ls-files --error-unmatch a.ig
106 test_expect_success 'add ignored ones with -f' '
107 git add -f d.??/* &&
108 git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
111 mkdir 1 1/2 1/3
112 touch 1/2/a 1/3/b 1/2/c
113 test_expect_success 'check correct prefix detection' '
114 git add 1/2/a 1/3/b 1/2/c
117 test_expect_success 'git add with filemode=0, symlinks=0, and unmerged entries' '
118 for s in 1 2 3
120 echo $s > stage$s
121 echo "100755 $(git hash-object -w stage$s) $s file"
122 echo "120000 $(printf $s | git hash-object -w -t blob --stdin) $s symlink"
123 done | git update-index --index-info &&
124 git config core.filemode 0 &&
125 git config core.symlinks 0 &&
126 echo new > file &&
127 echo new > symlink &&
128 git add file symlink &&
129 git ls-files --stage | grep "^100755 .* 0 file$" &&
130 git ls-files --stage | grep "^120000 .* 0 symlink$"
133 test_expect_success 'git add with filemode=0, symlinks=0 prefers stage 2 over stage 1' '
134 git rm --cached -f file symlink &&
136 echo "100644 $(git hash-object -w stage1) 1 file"
137 echo "100755 $(git hash-object -w stage2) 2 file"
138 echo "100644 $(printf $s | git hash-object -w -t blob --stdin) 1 symlink"
139 echo "120000 $(printf $s | git hash-object -w -t blob --stdin) 2 symlink"
140 ) | git update-index --index-info &&
141 git config core.filemode 0 &&
142 git config core.symlinks 0 &&
143 echo new > file &&
144 echo new > symlink &&
145 git add file symlink &&
146 git ls-files --stage | grep "^100755 .* 0 file$" &&
147 git ls-files --stage | grep "^120000 .* 0 symlink$"
150 test_done