branch: add test for -m renaming multiple config sections
[git.git] / t / t2200-add-update.sh
blob314c73c5a708fda8f39e7a86bf3db0329191d7a7
1 #!/bin/sh
3 test_description='git add -u
5 This test creates a working tree state with three files:
7 top (previously committed, modified)
8 dir/sub (previously committed, modified)
9 dir/other (untracked)
11 and issues a git add -u with path limiting on "dir" to add
12 only the updates to dir/sub.
14 Also tested are "git add -u" without limiting, and "git add -u"
15 without contents changes, and other conditions'
17 . ./test-lib.sh
19 test_expect_success setup '
20 echo initial >check &&
21 echo initial >top &&
22 echo initial >foo &&
23 mkdir dir1 dir2 &&
24 echo initial >dir1/sub1 &&
25 echo initial >dir1/sub2 &&
26 echo initial >dir2/sub3 &&
27 git add check dir1 dir2 top foo &&
28 test_tick &&
29 git commit -m initial &&
31 echo changed >check &&
32 echo changed >top &&
33 echo changed >dir2/sub3 &&
34 rm -f dir1/sub1 &&
35 echo other >dir2/other
38 test_expect_success update '
39 git add -u dir1 dir2
42 test_expect_success 'update noticed a removal' '
43 test "$(git ls-files dir1/sub1)" = ""
46 test_expect_success 'update touched correct path' '
47 test "$(git diff-files --name-status dir2/sub3)" = ""
50 test_expect_success 'update did not touch other tracked files' '
51 test "$(git diff-files --name-status check)" = "M check" &&
52 test "$(git diff-files --name-status top)" = "M top"
55 test_expect_success 'update did not touch untracked files' '
56 test "$(git ls-files dir2/other)" = ""
59 test_expect_success 'cache tree has not been corrupted' '
61 git ls-files -s |
62 sed -e "s/ 0 / /" >expect &&
63 git ls-tree -r $(git write-tree) |
64 sed -e "s/ blob / /" >current &&
65 test_cmp expect current
69 test_expect_success 'update from a subdirectory' '
71 cd dir1 &&
72 echo more >sub2 &&
73 git add -u sub2
77 test_expect_success 'change gets noticed' '
79 test "$(git diff-files --name-status dir1)" = ""
83 test_expect_success 'non-qualified update in subdir updates from the root' '
85 cd dir1 &&
86 echo even more >>sub2 &&
87 git --literal-pathspecs add -u &&
88 echo even more >>sub2 &&
89 git add -u
90 ) &&
91 : >expect &&
92 git diff-files --name-only >actual &&
93 test_cmp expect actual
96 test_expect_success 'replace a file with a symlink' '
98 rm foo &&
99 test_ln_s_add top foo
103 test_expect_success 'add everything changed' '
105 git add -u &&
106 test -z "$(git diff-files)"
110 test_expect_success 'touch and then add -u' '
112 touch check &&
113 git add -u &&
114 test -z "$(git diff-files)"
118 test_expect_success 'touch and then add explicitly' '
120 touch check &&
121 git add check &&
122 test -z "$(git diff-files)"
126 test_expect_success 'add -n -u should not add but just report' '
129 echo "add '\''check'\''" &&
130 echo "remove '\''top'\''"
131 ) >expect &&
132 before=$(git ls-files -s check top) &&
133 echo changed >>check &&
134 rm -f top &&
135 git add -n -u >actual &&
136 after=$(git ls-files -s check top) &&
138 test "$before" = "$after" &&
139 test_i18ncmp expect actual
143 test_expect_success 'add -u resolves unmerged paths' '
144 git reset --hard &&
145 one=$(echo 1 | git hash-object -w --stdin) &&
146 two=$(echo 2 | git hash-object -w --stdin) &&
147 three=$(echo 3 | git hash-object -w --stdin) &&
149 for path in path1 path2
151 echo "100644 $one 1 $path"
152 echo "100644 $two 2 $path"
153 echo "100644 $three 3 $path"
154 done
155 echo "100644 $one 1 path3"
156 echo "100644 $one 1 path4"
157 echo "100644 $one 3 path5"
158 echo "100644 $one 3 path6"
160 git update-index --index-info &&
161 echo 3 >path1 &&
162 echo 2 >path3 &&
163 echo 2 >path5 &&
165 # Fail to explicitly resolve removed paths with "git add"
166 test_must_fail git add --no-all path4 &&
167 test_must_fail git add --no-all path6 &&
169 # "add -u" should notice removals no matter what stages
170 # the index entries are in.
171 git add -u &&
172 git ls-files -s path1 path2 path3 path4 path5 path6 >actual &&
174 echo "100644 $three 0 path1"
175 echo "100644 $two 0 path3"
176 echo "100644 $two 0 path5"
177 } >expect &&
178 test_cmp expect actual
181 test_expect_success '"add -u non-existent" should fail' '
182 test_must_fail git add -u non-existent &&
183 ! (git ls-files | grep "non-existent")
186 test_done