]>
Commit | Line | Data |
---|---|---|
93c44d49 JK |
1 | #!/bin/sh |
2 | ||
25487bde | 3 | test_description='git add -u |
93c44d49 JK |
4 | |
5 | This test creates a working tree state with three files: | |
6 | ||
7 | top (previously committed, modified) | |
8 | dir/sub (previously committed, modified) | |
9 | dir/other (untracked) | |
10 | ||
5be60078 | 11 | and issues a git add -u with path limiting on "dir" to add |
25487bde JH |
12 | only the updates to dir/sub. |
13 | ||
14 | Also tested are "git add -u" without limiting, and "git add -u" | |
4cc8d6c6 | 15 | without contents changes, and other conditions' |
93c44d49 JK |
16 | |
17 | . ./test-lib.sh | |
18 | ||
a4882c27 JH |
19 | test_expect_success setup ' |
20 | echo initial >check && | |
21 | echo initial >top && | |
43b98acc | 22 | echo initial >foo && |
a4882c27 JH |
23 | mkdir dir1 dir2 && |
24 | echo initial >dir1/sub1 && | |
25 | echo initial >dir1/sub2 && | |
26 | echo initial >dir2/sub3 && | |
43b98acc | 27 | git add check dir1 dir2 top foo && |
a48fcd83 | 28 | test_tick && |
0cb0e143 | 29 | git commit -m initial && |
a4882c27 JH |
30 | |
31 | echo changed >check && | |
32 | echo changed >top && | |
33 | echo changed >dir2/sub3 && | |
34 | rm -f dir1/sub1 && | |
35 | echo other >dir2/other | |
93c44d49 JK |
36 | ' |
37 | ||
a4882c27 JH |
38 | test_expect_success update ' |
39 | git add -u dir1 dir2 | |
93c44d49 | 40 | ' |
93c44d49 | 41 | |
a4882c27 | 42 | test_expect_success 'update noticed a removal' ' |
0cb0e143 | 43 | test "$(git ls-files dir1/sub1)" = "" |
a4882c27 | 44 | ' |
93c44d49 | 45 | |
a4882c27 | 46 | test_expect_success 'update touched correct path' ' |
0cb0e143 | 47 | test "$(git diff-files --name-status dir2/sub3)" = "" |
a4882c27 | 48 | ' |
93c44d49 | 49 | |
a4882c27 | 50 | test_expect_success 'update did not touch other tracked files' ' |
0cb0e143 NS |
51 | test "$(git diff-files --name-status check)" = "M check" && |
52 | test "$(git diff-files --name-status top)" = "M top" | |
a4882c27 | 53 | ' |
93c44d49 | 54 | |
a4882c27 | 55 | test_expect_success 'update did not touch untracked files' ' |
0cb0e143 | 56 | test "$(git ls-files dir2/other)" = "" |
a4882c27 | 57 | ' |
93c44d49 | 58 | |
a4882c27 | 59 | test_expect_success 'cache tree has not been corrupted' ' |
93c44d49 | 60 | |
a4882c27 JH |
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 && | |
82ebb0b6 | 65 | test_cmp expect current |
a4882c27 JH |
66 | |
67 | ' | |
93c44d49 | 68 | |
2ed2c222 SZ |
69 | test_expect_success 'update from a subdirectory' ' |
70 | ( | |
71 | cd dir1 && | |
72 | echo more >sub2 && | |
73 | git add -u sub2 | |
74 | ) | |
75 | ' | |
76 | ||
77 | test_expect_success 'change gets noticed' ' | |
78 | ||
79 | test "$(git diff-files --name-status dir1)" = "" | |
80 | ||
81 | ' | |
93c44d49 | 82 | |
808d3d71 | 83 | test_expect_success 'non-qualified update in subdir updates from the root' ' |
7bf7a92f JK |
84 | ( |
85 | cd dir1 && | |
86 | echo even more >>sub2 && | |
29abb339 JH |
87 | git --literal-pathspecs add -u && |
88 | echo even more >>sub2 && | |
7bf7a92f JK |
89 | git add -u |
90 | ) && | |
7bf7a92f | 91 | git diff-files --name-only >actual && |
1c5e94f4 | 92 | test_must_be_empty actual |
7bf7a92f JK |
93 | ' |
94 | ||
889c6f0e | 95 | test_expect_success 'replace a file with a symlink' ' |
43b98acc BS |
96 | |
97 | rm foo && | |
889c6f0e | 98 | test_ln_s_add top foo |
43b98acc BS |
99 | |
100 | ' | |
101 | ||
25487bde JH |
102 | test_expect_success 'add everything changed' ' |
103 | ||
104 | git add -u && | |
105 | test -z "$(git diff-files)" | |
106 | ||
107 | ' | |
108 | ||
109 | test_expect_success 'touch and then add -u' ' | |
110 | ||
111 | touch check && | |
112 | git add -u && | |
113 | test -z "$(git diff-files)" | |
114 | ||
115 | ' | |
116 | ||
117 | test_expect_success 'touch and then add explicitly' ' | |
118 | ||
119 | touch check && | |
120 | git add check && | |
121 | test -z "$(git diff-files)" | |
122 | ||
123 | ' | |
124 | ||
c36f9412 | 125 | test_expect_success 'add -n -u should not add but just report' ' |
38ed1d89 JH |
126 | |
127 | ( | |
128 | echo "add '\''check'\''" && | |
129 | echo "remove '\''top'\''" | |
130 | ) >expect && | |
131 | before=$(git ls-files -s check top) && | |
132 | echo changed >>check && | |
133 | rm -f top && | |
134 | git add -n -u >actual && | |
135 | after=$(git ls-files -s check top) && | |
136 | ||
137 | test "$before" = "$after" && | |
c36f9412 | 138 | test_i18ncmp expect actual |
38ed1d89 JH |
139 | |
140 | ' | |
141 | ||
4cc8d6c6 JH |
142 | test_expect_success 'add -u resolves unmerged paths' ' |
143 | git reset --hard && | |
144 | one=$(echo 1 | git hash-object -w --stdin) && | |
145 | two=$(echo 2 | git hash-object -w --stdin) && | |
146 | three=$(echo 3 | git hash-object -w --stdin) && | |
147 | { | |
148 | for path in path1 path2 | |
149 | do | |
150 | echo "100644 $one 1 $path" | |
151 | echo "100644 $two 2 $path" | |
152 | echo "100644 $three 3 $path" | |
153 | done | |
154 | echo "100644 $one 1 path3" | |
155 | echo "100644 $one 1 path4" | |
156 | echo "100644 $one 3 path5" | |
157 | echo "100644 $one 3 path6" | |
158 | } | | |
159 | git update-index --index-info && | |
160 | echo 3 >path1 && | |
161 | echo 2 >path3 && | |
162 | echo 2 >path5 && | |
4cc8d6c6 | 163 | |
45c45e30 JH |
164 | # Fail to explicitly resolve removed paths with "git add" |
165 | test_must_fail git add --no-all path4 && | |
166 | test_must_fail git add --no-all path6 && | |
4cc8d6c6 | 167 | |
75973b2c JH |
168 | # "add -u" should notice removals no matter what stages |
169 | # the index entries are in. | |
170 | git add -u && | |
171 | git ls-files -s path1 path2 path3 path4 path5 path6 >actual && | |
4cc8d6c6 JH |
172 | { |
173 | echo "100644 $three 0 path1" | |
174 | echo "100644 $two 0 path3" | |
175 | echo "100644 $two 0 path5" | |
75973b2c JH |
176 | } >expect && |
177 | test_cmp expect actual | |
4cc8d6c6 JH |
178 | ' |
179 | ||
1e7ef746 CP |
180 | test_expect_success '"add -u non-existent" should fail' ' |
181 | test_must_fail git add -u non-existent && | |
182 | ! (git ls-files | grep "non-existent") | |
183 | ' | |
184 | ||
93c44d49 | 185 | test_done |