Blame


1 fccbfb98 2019-08-03 stsp #!/bin/sh
2 fccbfb98 2019-08-03 stsp #
3 fccbfb98 2019-08-03 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 fccbfb98 2019-08-03 stsp #
5 fccbfb98 2019-08-03 stsp # Permission to use, copy, modify, and distribute this software for any
6 fccbfb98 2019-08-03 stsp # purpose with or without fee is hereby granted, provided that the above
7 fccbfb98 2019-08-03 stsp # copyright notice and this permission notice appear in all copies.
8 fccbfb98 2019-08-03 stsp #
9 fccbfb98 2019-08-03 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 fccbfb98 2019-08-03 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 fccbfb98 2019-08-03 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 fccbfb98 2019-08-03 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 fccbfb98 2019-08-03 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 fccbfb98 2019-08-03 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 fccbfb98 2019-08-03 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 fccbfb98 2019-08-03 stsp
17 fccbfb98 2019-08-03 stsp . ./common.sh
18 fccbfb98 2019-08-03 stsp
19 f6cae3ed 2020-09-13 naddy test_stage_basic() {
20 fccbfb98 2019-08-03 stsp local testroot=`test_init stage_basic`
21 fccbfb98 2019-08-03 stsp
22 fccbfb98 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 fccbfb98 2019-08-03 stsp ret="$?"
24 fccbfb98 2019-08-03 stsp if [ "$ret" != "0" ]; then
25 fccbfb98 2019-08-03 stsp test_done "$testroot" "$ret"
26 fccbfb98 2019-08-03 stsp return 1
27 fccbfb98 2019-08-03 stsp fi
28 fccbfb98 2019-08-03 stsp
29 fccbfb98 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
30 fccbfb98 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
31 fccbfb98 2019-08-03 stsp echo "new file" > $testroot/wt/foo
32 fccbfb98 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
33 fccbfb98 2019-08-03 stsp
34 88d0e355 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
35 88d0e355 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
36 d3e7c587 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
37 ec9d9b2f 2019-08-08 stsp (cd $testroot/wt && got stage > $testroot/stdout)
38 d3e7c587 2019-08-03 stsp
39 d3e7c587 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
40 d3e7c587 2019-08-03 stsp ret="$?"
41 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
42 d3e7c587 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
43 d3e7c587 2019-08-03 stsp fi
44 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
45 d3e7c587 2019-08-03 stsp }
46 d3e7c587 2019-08-03 stsp
47 f6cae3ed 2020-09-13 naddy test_stage_no_changes() {
48 31b20a6e 2019-08-06 stsp local testroot=`test_init stage_no_changes`
49 31b20a6e 2019-08-06 stsp
50 31b20a6e 2019-08-06 stsp got checkout $testroot/repo $testroot/wt > /dev/null
51 31b20a6e 2019-08-06 stsp ret="$?"
52 31b20a6e 2019-08-06 stsp if [ "$ret" != "0" ]; then
53 31b20a6e 2019-08-06 stsp test_done "$testroot" "$ret"
54 31b20a6e 2019-08-06 stsp return 1
55 31b20a6e 2019-08-06 stsp fi
56 31b20a6e 2019-08-06 stsp
57 31b20a6e 2019-08-06 stsp (cd $testroot/wt && got stage alpha beta > $testroot/stdout \
58 31b20a6e 2019-08-06 stsp 2> $testroot/stderr)
59 31b20a6e 2019-08-06 stsp ret="$?"
60 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
61 31b20a6e 2019-08-06 stsp echo "got stage command succeeded unexpectedly" >&2
62 31b20a6e 2019-08-06 stsp test_done "$testroot" "1"
63 31b20a6e 2019-08-06 stsp return 1
64 31b20a6e 2019-08-06 stsp fi
65 31b20a6e 2019-08-06 stsp
66 2db2652d 2019-08-07 stsp echo "got: no changes to stage" > $testroot/stderr.expected
67 31b20a6e 2019-08-06 stsp
68 31b20a6e 2019-08-06 stsp cmp -s $testroot/stderr.expected $testroot/stderr
69 31b20a6e 2019-08-06 stsp ret="$?"
70 31b20a6e 2019-08-06 stsp if [ "$ret" != "0" ]; then
71 31b20a6e 2019-08-06 stsp diff -u $testroot/stderr.expected $testroot/stderr
72 31b20a6e 2019-08-06 stsp test_done "$testroot" "$ret"
73 31b20a6e 2019-08-06 stsp return 1
74 31b20a6e 2019-08-06 stsp fi
75 31b20a6e 2019-08-06 stsp
76 31b20a6e 2019-08-06 stsp echo -n > $testroot/stdout.expected
77 31b20a6e 2019-08-06 stsp cmp -s $testroot/stdout.expected $testroot/stdout
78 31b20a6e 2019-08-06 stsp ret="$?"
79 31b20a6e 2019-08-06 stsp if [ "$ret" != "0" ]; then
80 31b20a6e 2019-08-06 stsp diff -u $testroot/stdout.expected $testroot/stdout
81 31b20a6e 2019-08-06 stsp fi
82 31b20a6e 2019-08-06 stsp test_done "$testroot" "$ret"
83 31b20a6e 2019-08-06 stsp }
84 31b20a6e 2019-08-06 stsp
85 f6cae3ed 2020-09-13 naddy test_stage_unversioned() {
86 8b13ce36 2019-08-08 stsp local testroot=`test_init stage_unversioned`
87 8b13ce36 2019-08-08 stsp
88 8b13ce36 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
89 8b13ce36 2019-08-08 stsp ret="$?"
90 8b13ce36 2019-08-08 stsp if [ "$ret" != "0" ]; then
91 8b13ce36 2019-08-08 stsp test_done "$testroot" "$ret"
92 8b13ce36 2019-08-08 stsp return 1
93 8b13ce36 2019-08-08 stsp fi
94 8b13ce36 2019-08-08 stsp
95 8b13ce36 2019-08-08 stsp echo "modified file" > $testroot/wt/alpha
96 8b13ce36 2019-08-08 stsp touch $testroot/wt/unversioned-file
97 8b13ce36 2019-08-08 stsp
98 8b13ce36 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
99 8b13ce36 2019-08-08 stsp echo "M alpha" > $testroot/stdout.expected
100 8b13ce36 2019-08-08 stsp echo "? unversioned-file" >> $testroot/stdout.expected
101 8b13ce36 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
102 8b13ce36 2019-08-08 stsp ret="$?"
103 8b13ce36 2019-08-08 stsp if [ "$ret" != "0" ]; then
104 8b13ce36 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
105 8b13ce36 2019-08-08 stsp test_done "$testroot" "$ret"
106 8b13ce36 2019-08-08 stsp return 1
107 8b13ce36 2019-08-08 stsp fi
108 8b13ce36 2019-08-08 stsp
109 8b13ce36 2019-08-08 stsp (cd $testroot/wt && got stage > $testroot/stdout)
110 8b13ce36 2019-08-08 stsp ret="$?"
111 8b13ce36 2019-08-08 stsp if [ "$ret" != "0" ]; then
112 8b13ce36 2019-08-08 stsp echo "got stage command failed unexpectedly" >&2
113 8b13ce36 2019-08-08 stsp test_done "$testroot" "$ret"
114 8b13ce36 2019-08-08 stsp return 1
115 8b13ce36 2019-08-08 stsp fi
116 8b13ce36 2019-08-08 stsp
117 8b13ce36 2019-08-08 stsp echo " M alpha" > $testroot/stdout.expected
118 8b13ce36 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
119 8b13ce36 2019-08-08 stsp ret="$?"
120 8b13ce36 2019-08-08 stsp if [ "$ret" != "0" ]; then
121 8b13ce36 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
122 8b13ce36 2019-08-08 stsp test_done "$testroot" "$ret"
123 8b13ce36 2019-08-08 stsp return 1
124 8b13ce36 2019-08-08 stsp fi
125 8b13ce36 2019-08-08 stsp
126 8b13ce36 2019-08-08 stsp echo "modified file again" > $testroot/wt/alpha
127 8b13ce36 2019-08-08 stsp
128 8b13ce36 2019-08-08 stsp (cd $testroot/wt && got stage unversioned-file > $testroot/stdout \
129 8b13ce36 2019-08-08 stsp 2> $testroot/stderr)
130 8b13ce36 2019-08-08 stsp ret="$?"
131 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
132 8b13ce36 2019-08-08 stsp echo "got stage command succeed unexpectedly" >&2
133 8b13ce36 2019-08-08 stsp test_done "$testroot" "1"
134 8b13ce36 2019-08-08 stsp return 1
135 8b13ce36 2019-08-08 stsp fi
136 8b13ce36 2019-08-08 stsp
137 8b13ce36 2019-08-08 stsp echo "got: no changes to stage" > $testroot/stderr.expected
138 8b13ce36 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
139 8b13ce36 2019-08-08 stsp ret="$?"
140 8b13ce36 2019-08-08 stsp if [ "$ret" != "0" ]; then
141 8b13ce36 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
142 8b13ce36 2019-08-08 stsp fi
143 8b13ce36 2019-08-08 stsp test_done "$testroot" "$ret"
144 8564cb21 2019-08-08 stsp
145 8564cb21 2019-08-08 stsp }
146 8564cb21 2019-08-08 stsp
147 f6cae3ed 2020-09-13 naddy test_stage_nonexistent() {
148 8564cb21 2019-08-08 stsp local testroot=`test_init stage_nonexistent`
149 8564cb21 2019-08-08 stsp
150 8564cb21 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
151 8564cb21 2019-08-08 stsp ret="$?"
152 8564cb21 2019-08-08 stsp if [ "$ret" != "0" ]; then
153 8564cb21 2019-08-08 stsp test_done "$testroot" "$ret"
154 8564cb21 2019-08-08 stsp return 1
155 8564cb21 2019-08-08 stsp fi
156 8b13ce36 2019-08-08 stsp
157 8564cb21 2019-08-08 stsp (cd $testroot/wt && got stage nonexistent-file \
158 8564cb21 2019-08-08 stsp > $testroot/stdout 2> $testroot/stderr)
159 2a06fe5f 2019-08-24 stsp echo "got: nonexistent-file: No such file or directory" \
160 2a06fe5f 2019-08-24 stsp > $testroot/stderr.expected
161 8564cb21 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
162 8564cb21 2019-08-08 stsp ret="$?"
163 8564cb21 2019-08-08 stsp if [ "$ret" != "0" ]; then
164 8564cb21 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
165 8564cb21 2019-08-08 stsp fi
166 8564cb21 2019-08-08 stsp test_done "$testroot" "$ret"
167 8b13ce36 2019-08-08 stsp }
168 8b13ce36 2019-08-08 stsp
169 f6cae3ed 2020-09-13 naddy test_stage_list() {
170 a4f692bb 2019-08-04 stsp local testroot=`test_init stage_list`
171 a4f692bb 2019-08-04 stsp
172 a4f692bb 2019-08-04 stsp got checkout $testroot/repo $testroot/wt > /dev/null
173 a4f692bb 2019-08-04 stsp ret="$?"
174 a4f692bb 2019-08-04 stsp if [ "$ret" != "0" ]; then
175 a4f692bb 2019-08-04 stsp test_done "$testroot" "$ret"
176 a4f692bb 2019-08-04 stsp return 1
177 a4f692bb 2019-08-04 stsp fi
178 a4f692bb 2019-08-04 stsp
179 a4f692bb 2019-08-04 stsp echo "modified file" > $testroot/wt/alpha
180 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got rm beta > /dev/null)
181 a4f692bb 2019-08-04 stsp echo "new file" > $testroot/wt/foo
182 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got add foo > /dev/null)
183 a4f692bb 2019-08-04 stsp
184 a4f692bb 2019-08-04 stsp echo ' M alpha' > $testroot/stdout.expected
185 a4f692bb 2019-08-04 stsp echo ' D beta' >> $testroot/stdout.expected
186 a4f692bb 2019-08-04 stsp echo ' A foo' >> $testroot/stdout.expected
187 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
188 a4f692bb 2019-08-04 stsp
189 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got stage -l > $testroot/stdout)
190 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got diff -s alpha | grep '^blob +' | \
191 a4f692bb 2019-08-04 stsp cut -d' ' -f3 | tr -d '\n' > $testroot/stdout.expected)
192 a4f692bb 2019-08-04 stsp echo " M alpha" >> $testroot/stdout.expected
193 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got diff -s beta | grep '^blob -' | \
194 a4f692bb 2019-08-04 stsp cut -d' ' -f3 | tr -d '\n' >> $testroot/stdout.expected)
195 a4f692bb 2019-08-04 stsp echo " D beta" >> $testroot/stdout.expected
196 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got diff -s foo | grep '^blob +' | \
197 a4f692bb 2019-08-04 stsp cut -d' ' -f3 | tr -d '\n' >> $testroot/stdout.expected)
198 a4f692bb 2019-08-04 stsp echo " A foo" >> $testroot/stdout.expected
199 a4f692bb 2019-08-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
200 a4f692bb 2019-08-04 stsp ret="$?"
201 a4f692bb 2019-08-04 stsp if [ "$ret" != "0" ]; then
202 a4f692bb 2019-08-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
203 a4f692bb 2019-08-04 stsp test_done "$testroot" "$ret"
204 a4f692bb 2019-08-04 stsp return 1
205 a4f692bb 2019-08-04 stsp fi
206 a4f692bb 2019-08-04 stsp
207 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got stage -l epsilon nonexistent \
208 a4f692bb 2019-08-04 stsp > $testroot/stdout)
209 a4f692bb 2019-08-04 stsp
210 a4f692bb 2019-08-04 stsp echo -n > $testroot/stdout.expected
211 a4f692bb 2019-08-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
212 a4f692bb 2019-08-04 stsp ret="$?"
213 a4f692bb 2019-08-04 stsp if [ "$ret" != "0" ]; then
214 a4f692bb 2019-08-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
215 a4f692bb 2019-08-04 stsp test_done "$testroot" "$ret"
216 a4f692bb 2019-08-04 stsp return 1
217 a4f692bb 2019-08-04 stsp fi
218 a4f692bb 2019-08-04 stsp
219 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got stage -l alpha > $testroot/stdout)
220 a4f692bb 2019-08-04 stsp
221 a4f692bb 2019-08-04 stsp (cd $testroot/wt && got diff -s alpha | grep '^blob +' | \
222 a4f692bb 2019-08-04 stsp cut -d' ' -f3 | tr -d '\n' > $testroot/stdout.expected)
223 a4f692bb 2019-08-04 stsp echo " M alpha" >> $testroot/stdout.expected
224 a4f692bb 2019-08-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
225 a4f692bb 2019-08-04 stsp ret="$?"
226 a4f692bb 2019-08-04 stsp if [ "$ret" != "0" ]; then
227 a4f692bb 2019-08-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
228 a4f692bb 2019-08-04 stsp fi
229 a4f692bb 2019-08-04 stsp test_done "$testroot" "$ret"
230 a4f692bb 2019-08-04 stsp
231 a4f692bb 2019-08-04 stsp }
232 a4f692bb 2019-08-04 stsp
233 f6cae3ed 2020-09-13 naddy test_stage_conflict() {
234 ebf48fd5 2019-08-03 stsp local testroot=`test_init stage_conflict`
235 ebf48fd5 2019-08-03 stsp local initial_commit=`git_show_head $testroot/repo`
236 ebf48fd5 2019-08-03 stsp
237 ebf48fd5 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
238 ebf48fd5 2019-08-03 stsp ret="$?"
239 ebf48fd5 2019-08-03 stsp if [ "$ret" != "0" ]; then
240 ebf48fd5 2019-08-03 stsp test_done "$testroot" "$ret"
241 ebf48fd5 2019-08-03 stsp return 1
242 ebf48fd5 2019-08-03 stsp fi
243 ebf48fd5 2019-08-03 stsp
244 ebf48fd5 2019-08-03 stsp echo "modified alpha" > $testroot/wt/alpha
245 ebf48fd5 2019-08-03 stsp (cd $testroot/wt && got commit -m "modified alpha" >/dev/null)
246 ebf48fd5 2019-08-03 stsp
247 ebf48fd5 2019-08-03 stsp (cd $testroot/wt && got update -c $initial_commit > /dev/null)
248 ebf48fd5 2019-08-03 stsp
249 ebf48fd5 2019-08-03 stsp echo "modified alpha, too" > $testroot/wt/alpha
250 ebf48fd5 2019-08-03 stsp
251 ebf48fd5 2019-08-03 stsp echo "C alpha" > $testroot/stdout.expected
252 4f3c844b 2021-09-14 stsp echo -n "Updated to refs/heads/master: " >> $testroot/stdout.expected
253 ebf48fd5 2019-08-03 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
254 ebf48fd5 2019-08-03 stsp echo >> $testroot/stdout.expected
255 9627c110 2020-04-18 stsp echo "Files with new merge conflicts: 1" >> $testroot/stdout.expected
256 ebf48fd5 2019-08-03 stsp
257 ebf48fd5 2019-08-03 stsp (cd $testroot/wt && got update > $testroot/stdout)
258 ebf48fd5 2019-08-03 stsp
259 ebf48fd5 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
260 ebf48fd5 2019-08-03 stsp ret="$?"
261 ebf48fd5 2019-08-03 stsp if [ "$ret" != "0" ]; then
262 ebf48fd5 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
263 ebf48fd5 2019-08-03 stsp test_done "$testroot" "$ret"
264 ebf48fd5 2019-08-03 stsp return 1
265 ebf48fd5 2019-08-03 stsp fi
266 ebf48fd5 2019-08-03 stsp
267 ebf48fd5 2019-08-03 stsp (cd $testroot/wt && got stage alpha > $testroot/stdout \
268 ebf48fd5 2019-08-03 stsp 2> $testroot/stderr)
269 ebf48fd5 2019-08-03 stsp ret="$?"
270 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
271 ebf48fd5 2019-08-03 stsp echo "got stage command succeeded unexpectedly" >&2
272 ebf48fd5 2019-08-03 stsp test_done "$testroot" "1"
273 ebf48fd5 2019-08-03 stsp return 1
274 ebf48fd5 2019-08-03 stsp fi
275 ebf48fd5 2019-08-03 stsp
276 ebf48fd5 2019-08-03 stsp echo -n > $testroot/stdout.expected
277 ebf48fd5 2019-08-03 stsp echo "got: alpha: cannot stage file in conflicted status" \
278 735ef5ac 2019-08-03 stsp > $testroot/stderr.expected
279 735ef5ac 2019-08-03 stsp
280 735ef5ac 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
281 735ef5ac 2019-08-03 stsp ret="$?"
282 735ef5ac 2019-08-03 stsp if [ "$ret" != "0" ]; then
283 735ef5ac 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
284 735ef5ac 2019-08-03 stsp test_done "$testroot" "$ret"
285 735ef5ac 2019-08-03 stsp return 1
286 735ef5ac 2019-08-03 stsp fi
287 735ef5ac 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
288 735ef5ac 2019-08-03 stsp ret="$?"
289 735ef5ac 2019-08-03 stsp if [ "$ret" != "0" ]; then
290 735ef5ac 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
291 735ef5ac 2019-08-03 stsp fi
292 735ef5ac 2019-08-03 stsp test_done "$testroot" "$ret"
293 735ef5ac 2019-08-03 stsp }
294 735ef5ac 2019-08-03 stsp
295 f6cae3ed 2020-09-13 naddy test_stage_out_of_date() {
296 735ef5ac 2019-08-03 stsp local testroot=`test_init stage_out_of_date`
297 735ef5ac 2019-08-03 stsp local initial_commit=`git_show_head $testroot/repo`
298 735ef5ac 2019-08-03 stsp
299 735ef5ac 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
300 735ef5ac 2019-08-03 stsp ret="$?"
301 735ef5ac 2019-08-03 stsp if [ "$ret" != "0" ]; then
302 735ef5ac 2019-08-03 stsp test_done "$testroot" "$ret"
303 735ef5ac 2019-08-03 stsp return 1
304 735ef5ac 2019-08-03 stsp fi
305 735ef5ac 2019-08-03 stsp
306 735ef5ac 2019-08-03 stsp echo "modified alpha" > $testroot/wt/alpha
307 735ef5ac 2019-08-03 stsp (cd $testroot/wt && got commit -m "modified alpha" >/dev/null)
308 735ef5ac 2019-08-03 stsp
309 735ef5ac 2019-08-03 stsp (cd $testroot/wt && got update -c $initial_commit > /dev/null)
310 735ef5ac 2019-08-03 stsp
311 735ef5ac 2019-08-03 stsp echo "modified alpha again" > $testroot/wt/alpha
312 735ef5ac 2019-08-03 stsp (cd $testroot/wt && got stage alpha > $testroot/stdout \
313 735ef5ac 2019-08-03 stsp 2> $testroot/stderr)
314 735ef5ac 2019-08-03 stsp ret="$?"
315 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
316 735ef5ac 2019-08-03 stsp echo "got stage command succeeded unexpectedly" >&2
317 735ef5ac 2019-08-03 stsp test_done "$testroot" "1"
318 735ef5ac 2019-08-03 stsp return 1
319 735ef5ac 2019-08-03 stsp fi
320 735ef5ac 2019-08-03 stsp
321 735ef5ac 2019-08-03 stsp echo -n > $testroot/stdout.expected
322 735ef5ac 2019-08-03 stsp echo "got: work tree must be updated before changes can be staged" \
323 ebf48fd5 2019-08-03 stsp > $testroot/stderr.expected
324 ebf48fd5 2019-08-03 stsp
325 ebf48fd5 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
326 ebf48fd5 2019-08-03 stsp ret="$?"
327 ebf48fd5 2019-08-03 stsp if [ "$ret" != "0" ]; then
328 ebf48fd5 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
329 ebf48fd5 2019-08-03 stsp test_done "$testroot" "$ret"
330 ebf48fd5 2019-08-03 stsp return 1
331 ebf48fd5 2019-08-03 stsp fi
332 ebf48fd5 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
333 ebf48fd5 2019-08-03 stsp ret="$?"
334 ebf48fd5 2019-08-03 stsp if [ "$ret" != "0" ]; then
335 ebf48fd5 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
336 ebf48fd5 2019-08-03 stsp fi
337 ebf48fd5 2019-08-03 stsp test_done "$testroot" "$ret"
338 ebf48fd5 2019-08-03 stsp }
339 ebf48fd5 2019-08-03 stsp
340 ebf48fd5 2019-08-03 stsp
341 f6cae3ed 2020-09-13 naddy test_double_stage() {
342 d3e7c587 2019-08-03 stsp local testroot=`test_init double_stage`
343 d3e7c587 2019-08-03 stsp
344 d3e7c587 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
345 d3e7c587 2019-08-03 stsp ret="$?"
346 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
347 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
348 d3e7c587 2019-08-03 stsp return 1
349 d3e7c587 2019-08-03 stsp fi
350 d3e7c587 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
351 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
352 d3e7c587 2019-08-03 stsp echo "new file" > $testroot/wt/foo
353 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
354 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
355 d3e7c587 2019-08-03 stsp
356 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
357 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got stage alpha 2> $testroot/stderr)
358 d3e7c587 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
359 d3e7c587 2019-08-03 stsp ret="$?"
360 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
361 d3e7c587 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
362 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
363 d3e7c587 2019-08-03 stsp return 1
364 d3e7c587 2019-08-03 stsp fi
365 d3e7c587 2019-08-03 stsp
366 7b5dc508 2019-10-28 stsp (cd $testroot/wt && got stage beta \
367 7b5dc508 2019-10-28 stsp > $testroot/stdout 2> $testroot/stderr)
368 9c5c5eed 2019-08-03 stsp ret="$?"
369 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
370 7b5dc508 2019-10-28 stsp echo "got stage command succeeded unexpectedly" >&2
371 7b5dc508 2019-10-28 stsp test_done "$testroot" "1"
372 7b5dc508 2019-10-28 stsp return 1
373 7b5dc508 2019-10-28 stsp fi
374 7b5dc508 2019-10-28 stsp echo -n > $testroot/stdout.expected
375 7b5dc508 2019-10-28 stsp cmp -s $testroot/stdout.expected $testroot/stdout
376 7b5dc508 2019-10-28 stsp ret="$?"
377 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
378 7b5dc508 2019-10-28 stsp diff -u $testroot/stdout.expected $testroot/stdout
379 7b5dc508 2019-10-28 stsp test_done "$testroot" "$ret"
380 7b5dc508 2019-10-28 stsp return 1
381 7b5dc508 2019-10-28 stsp fi
382 7b5dc508 2019-10-28 stsp
383 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
384 7b5dc508 2019-10-28 stsp (cd $testroot/wt && got stage foo 2> $testroot/stderr)
385 7b5dc508 2019-10-28 stsp cmp -s $testroot/stderr.expected $testroot/stderr
386 7b5dc508 2019-10-28 stsp ret="$?"
387 7b5dc508 2019-10-28 stsp if [ "$ret" != "0" ]; then
388 7b5dc508 2019-10-28 stsp diff -u $testroot/stderr.expected $testroot/stderr
389 7b5dc508 2019-10-28 stsp test_done "$testroot" "$ret"
390 7b5dc508 2019-10-28 stsp return 1
391 7b5dc508 2019-10-28 stsp fi
392 7b5dc508 2019-10-28 stsp
393 7b5dc508 2019-10-28 stsp printf "q\n" > $testroot/patchscript
394 7b5dc508 2019-10-28 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
395 7b5dc508 2019-10-28 stsp > $testroot/stdout 2> $testroot/stderr)
396 7b5dc508 2019-10-28 stsp ret="$?"
397 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
398 7b5dc508 2019-10-28 stsp echo "got stage command succeeded unexpectedly" >&2
399 d3e7c587 2019-08-03 stsp test_done "$testroot" "1"
400 d3e7c587 2019-08-03 stsp return 1
401 d3e7c587 2019-08-03 stsp fi
402 d3e7c587 2019-08-03 stsp echo -n > $testroot/stdout.expected
403 d3e7c587 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
404 d3e7c587 2019-08-03 stsp ret="$?"
405 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
406 d3e7c587 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
407 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
408 d3e7c587 2019-08-03 stsp return 1
409 d3e7c587 2019-08-03 stsp fi
410 d3e7c587 2019-08-03 stsp
411 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
412 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got stage foo 2> $testroot/stderr)
413 d3e7c587 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
414 d3e7c587 2019-08-03 stsp ret="$?"
415 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
416 d3e7c587 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
417 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
418 d3e7c587 2019-08-03 stsp return 1
419 d3e7c587 2019-08-03 stsp fi
420 d3e7c587 2019-08-03 stsp
421 d3e7c587 2019-08-03 stsp echo "modified file again" > $testroot/wt/alpha
422 d3e7c587 2019-08-03 stsp echo "modified new file" > $testroot/wt/foo
423 d3e7c587 2019-08-03 stsp
424 d3e7c587 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
425 88d0e355 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
426 fccbfb98 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > $testroot/stdout)
427 d3e7c587 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
428 d3e7c587 2019-08-03 stsp ret="$?"
429 d3e7c587 2019-08-03 stsp if [ "$ret" != "0" ]; then
430 d3e7c587 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
431 d3e7c587 2019-08-03 stsp test_done "$testroot" "$ret"
432 d3e7c587 2019-08-03 stsp return 1
433 d3e7c587 2019-08-03 stsp fi
434 d3e7c587 2019-08-03 stsp
435 d3e7c587 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
436 d3e7c587 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
437 d3e7c587 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
438 fccbfb98 2019-08-03 stsp
439 d3e7c587 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
440 fccbfb98 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
441 fccbfb98 2019-08-03 stsp ret="$?"
442 fccbfb98 2019-08-03 stsp if [ "$ret" != "0" ]; then
443 fccbfb98 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
444 fccbfb98 2019-08-03 stsp fi
445 fccbfb98 2019-08-03 stsp test_done "$testroot" "$ret"
446 fccbfb98 2019-08-03 stsp }
447 fccbfb98 2019-08-03 stsp
448 f6cae3ed 2020-09-13 naddy test_stage_status() {
449 c363b2c1 2019-08-03 stsp local testroot=`test_init stage_status`
450 c363b2c1 2019-08-03 stsp
451 c363b2c1 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
452 c363b2c1 2019-08-03 stsp ret="$?"
453 c363b2c1 2019-08-03 stsp if [ "$ret" != "0" ]; then
454 c363b2c1 2019-08-03 stsp test_done "$testroot" "$ret"
455 c363b2c1 2019-08-03 stsp return 1
456 c363b2c1 2019-08-03 stsp fi
457 c363b2c1 2019-08-03 stsp
458 c363b2c1 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
459 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
460 c363b2c1 2019-08-03 stsp echo "new file" > $testroot/wt/foo
461 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
462 c363b2c1 2019-08-03 stsp echo "new file" > $testroot/wt/epsilon/new
463 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got add epsilon/new > /dev/null)
464 c363b2c1 2019-08-03 stsp echo "modified file" > $testroot/wt/epsilon/zeta
465 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got rm gamma/delta > /dev/null)
466 c363b2c1 2019-08-03 stsp
467 c363b2c1 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
468 c363b2c1 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
469 c363b2c1 2019-08-03 stsp echo 'A epsilon/new' >> $testroot/stdout.expected
470 c363b2c1 2019-08-03 stsp echo 'M epsilon/zeta' >> $testroot/stdout.expected
471 c363b2c1 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
472 c363b2c1 2019-08-03 stsp echo 'D gamma/delta' >> $testroot/stdout.expected
473 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
474 c363b2c1 2019-08-03 stsp
475 c363b2c1 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
476 c363b2c1 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
477 c363b2c1 2019-08-03 stsp ret="$?"
478 c363b2c1 2019-08-03 stsp if [ "$ret" != "0" ]; then
479 c363b2c1 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
480 244725f2 2019-08-03 stsp test_done "$testroot" "$ret"
481 244725f2 2019-08-03 stsp return 1
482 c363b2c1 2019-08-03 stsp fi
483 244725f2 2019-08-03 stsp
484 244725f2 2019-08-03 stsp echo "modified file again" >> $testroot/wt/alpha
485 244725f2 2019-08-03 stsp echo "modified added file again" >> $testroot/wt/foo
486 244725f2 2019-08-03 stsp
487 244725f2 2019-08-03 stsp echo 'MM alpha' > $testroot/stdout.expected
488 244725f2 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
489 244725f2 2019-08-03 stsp echo 'A epsilon/new' >> $testroot/stdout.expected
490 244725f2 2019-08-03 stsp echo 'M epsilon/zeta' >> $testroot/stdout.expected
491 244725f2 2019-08-03 stsp echo 'MA foo' >> $testroot/stdout.expected
492 244725f2 2019-08-03 stsp echo 'D gamma/delta' >> $testroot/stdout.expected
493 244725f2 2019-08-03 stsp
494 244725f2 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
495 244725f2 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
496 244725f2 2019-08-03 stsp ret="$?"
497 244725f2 2019-08-03 stsp if [ "$ret" != "0" ]; then
498 244725f2 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
499 244725f2 2019-08-03 stsp test_done "$testroot" "$ret"
500 244725f2 2019-08-03 stsp return 1
501 244725f2 2019-08-03 stsp fi
502 244725f2 2019-08-03 stsp
503 244725f2 2019-08-03 stsp # test no-op change of added file with new stat(2) timestamp
504 244725f2 2019-08-03 stsp echo "new file" > $testroot/wt/foo
505 244725f2 2019-08-03 stsp echo ' A foo' > $testroot/stdout.expected
506 244725f2 2019-08-03 stsp (cd $testroot/wt && got status foo > $testroot/stdout)
507 244725f2 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
508 244725f2 2019-08-03 stsp ret="$?"
509 244725f2 2019-08-03 stsp if [ "$ret" != "0" ]; then
510 244725f2 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
511 244725f2 2019-08-03 stsp test_done "$testroot" "$ret"
512 244725f2 2019-08-03 stsp return 1
513 244725f2 2019-08-03 stsp fi
514 244725f2 2019-08-03 stsp
515 244725f2 2019-08-03 stsp # test staged deleted file which is restored on disk
516 244725f2 2019-08-03 stsp echo "new file" > $testroot/wt/beta
517 244725f2 2019-08-03 stsp echo ' D beta' > $testroot/stdout.expected
518 244725f2 2019-08-03 stsp (cd $testroot/wt && got status beta > $testroot/stdout)
519 244725f2 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
520 244725f2 2019-08-03 stsp ret="$?"
521 244725f2 2019-08-03 stsp if [ "$ret" != "0" ]; then
522 244725f2 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
523 244725f2 2019-08-03 stsp fi
524 c363b2c1 2019-08-03 stsp test_done "$testroot" "$ret"
525 244725f2 2019-08-03 stsp
526 c363b2c1 2019-08-03 stsp }
527 c363b2c1 2019-08-03 stsp
528 f6cae3ed 2020-09-13 naddy test_stage_add_already_staged_file() {
529 1e1446d3 2019-08-03 stsp local testroot=`test_init stage_add_already_staged_file`
530 1e1446d3 2019-08-03 stsp
531 1e1446d3 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
532 1e1446d3 2019-08-03 stsp ret="$?"
533 1e1446d3 2019-08-03 stsp if [ "$ret" != "0" ]; then
534 1e1446d3 2019-08-03 stsp test_done "$testroot" "$ret"
535 1e1446d3 2019-08-03 stsp return 1
536 1e1446d3 2019-08-03 stsp fi
537 1e1446d3 2019-08-03 stsp
538 1e1446d3 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
539 1e1446d3 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
540 1e1446d3 2019-08-03 stsp echo "new file" > $testroot/wt/foo
541 1e1446d3 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
542 1e1446d3 2019-08-03 stsp
543 1e1446d3 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > $testroot/stdout)
544 1e1446d3 2019-08-03 stsp
545 1e1446d3 2019-08-03 stsp echo -n > $testroot/stdout.expected
546 6d022e97 2019-08-04 stsp for f in alpha beta foo; do
547 1e1446d3 2019-08-03 stsp (cd $testroot/wt && got add $f \
548 1e1446d3 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
549 6d022e97 2019-08-04 stsp echo "got: $f: file has unexpected status" \
550 6d022e97 2019-08-04 stsp > $testroot/stderr.expected
551 6d022e97 2019-08-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
552 1e1446d3 2019-08-03 stsp ret="$?"
553 1e1446d3 2019-08-03 stsp if [ "$ret" != "0" ]; then
554 6d022e97 2019-08-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
555 6d022e97 2019-08-04 stsp test_done "$testroot" "$ret"
556 1e1446d3 2019-08-03 stsp return 1
557 1e1446d3 2019-08-03 stsp fi
558 1e1446d3 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
559 1e1446d3 2019-08-03 stsp ret="$?"
560 1e1446d3 2019-08-03 stsp if [ "$ret" != "0" ]; then
561 1e1446d3 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
562 1e1446d3 2019-08-03 stsp test_done "$testroot" "$ret"
563 1e1446d3 2019-08-03 stsp return 1
564 1e1446d3 2019-08-03 stsp fi
565 1e1446d3 2019-08-03 stsp done
566 1e1446d3 2019-08-03 stsp
567 1e1446d3 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
568 1e1446d3 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
569 1e1446d3 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
570 1e1446d3 2019-08-03 stsp
571 1e1446d3 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
572 1e1446d3 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
573 1e1446d3 2019-08-03 stsp ret="$?"
574 1e1446d3 2019-08-03 stsp if [ "$ret" != "0" ]; then
575 1e1446d3 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
576 1e1446d3 2019-08-03 stsp fi
577 1e1446d3 2019-08-03 stsp test_done "$testroot" "$ret"
578 1e1446d3 2019-08-03 stsp }
579 1e1446d3 2019-08-03 stsp
580 f6cae3ed 2020-09-13 naddy test_stage_rm_already_staged_file() {
581 9acbc4fa 2019-08-03 stsp local testroot=`test_init stage_rm_already_staged_file`
582 9acbc4fa 2019-08-03 stsp
583 9acbc4fa 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
584 9acbc4fa 2019-08-03 stsp ret="$?"
585 9acbc4fa 2019-08-03 stsp if [ "$ret" != "0" ]; then
586 9acbc4fa 2019-08-03 stsp test_done "$testroot" "$ret"
587 9acbc4fa 2019-08-03 stsp return 1
588 9acbc4fa 2019-08-03 stsp fi
589 9acbc4fa 2019-08-03 stsp
590 9acbc4fa 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
591 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
592 9acbc4fa 2019-08-03 stsp echo "new file" > $testroot/wt/foo
593 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
594 9acbc4fa 2019-08-03 stsp
595 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > $testroot/stdout)
596 9acbc4fa 2019-08-03 stsp
597 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got rm beta \
598 9acbc4fa 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
599 9acbc4fa 2019-08-03 stsp ret="$?"
600 6d022e97 2019-08-04 stsp if [ "$ret" != "0" ]; then
601 6d022e97 2019-08-04 stsp echo "got rm command failed unexpectedly" >&2
602 9acbc4fa 2019-08-03 stsp test_done "$testroot" "1"
603 9acbc4fa 2019-08-03 stsp return 1
604 9acbc4fa 2019-08-03 stsp fi
605 6d022e97 2019-08-04 stsp echo -n > $testroot/stdout.expected
606 6d022e97 2019-08-04 stsp cmp -s $testroot/stdout.expected $testroot/stdout
607 6d022e97 2019-08-04 stsp ret="$?"
608 6d022e97 2019-08-04 stsp if [ "$ret" != "0" ]; then
609 6d022e97 2019-08-04 stsp diff -u $testroot/stdout.expected $testroot/stdout
610 6d022e97 2019-08-04 stsp test_done "$testroot" "$ret"
611 6d022e97 2019-08-04 stsp return 1
612 6d022e97 2019-08-04 stsp fi
613 6d022e97 2019-08-04 stsp echo -n > $testroot/stderr.expected
614 9acbc4fa 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
615 9acbc4fa 2019-08-03 stsp ret="$?"
616 9acbc4fa 2019-08-03 stsp if [ "$ret" != "0" ]; then
617 9acbc4fa 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
618 9acbc4fa 2019-08-03 stsp test_done "$testroot" "$ret"
619 9acbc4fa 2019-08-03 stsp return 1
620 9acbc4fa 2019-08-03 stsp fi
621 9acbc4fa 2019-08-03 stsp
622 9acbc4fa 2019-08-03 stsp for f in alpha foo; do
623 24278f30 2019-08-03 stsp echo "got: $f: file is staged" > $testroot/stderr.expected
624 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got rm $f \
625 9acbc4fa 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
626 9acbc4fa 2019-08-03 stsp ret="$?"
627 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
628 9acbc4fa 2019-08-03 stsp echo "got rm command succeeded unexpectedly" >&2
629 9acbc4fa 2019-08-03 stsp test_done "$testroot" "1"
630 9acbc4fa 2019-08-03 stsp return 1
631 9acbc4fa 2019-08-03 stsp fi
632 9acbc4fa 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
633 9acbc4fa 2019-08-03 stsp ret="$?"
634 9acbc4fa 2019-08-03 stsp if [ "$ret" != "0" ]; then
635 9acbc4fa 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
636 9acbc4fa 2019-08-03 stsp test_done "$testroot" "$ret"
637 9acbc4fa 2019-08-03 stsp return 1
638 9acbc4fa 2019-08-03 stsp fi
639 9acbc4fa 2019-08-03 stsp done
640 9acbc4fa 2019-08-03 stsp
641 9acbc4fa 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
642 9acbc4fa 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
643 9acbc4fa 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
644 9acbc4fa 2019-08-03 stsp
645 9acbc4fa 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
646 9acbc4fa 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
647 9acbc4fa 2019-08-03 stsp ret="$?"
648 9acbc4fa 2019-08-03 stsp if [ "$ret" != "0" ]; then
649 9acbc4fa 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
650 9acbc4fa 2019-08-03 stsp fi
651 9acbc4fa 2019-08-03 stsp test_done "$testroot" "$ret"
652 9acbc4fa 2019-08-03 stsp }
653 24278f30 2019-08-03 stsp
654 f6cae3ed 2020-09-13 naddy test_stage_revert() {
655 24278f30 2019-08-03 stsp local testroot=`test_init stage_revert`
656 24278f30 2019-08-03 stsp
657 24278f30 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
658 24278f30 2019-08-03 stsp ret="$?"
659 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
660 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
661 24278f30 2019-08-03 stsp return 1
662 24278f30 2019-08-03 stsp fi
663 24278f30 2019-08-03 stsp
664 24278f30 2019-08-03 stsp echo "modified alpha" > $testroot/wt/alpha
665 24278f30 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
666 24278f30 2019-08-03 stsp echo "new file" > $testroot/wt/foo
667 24278f30 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
668 24278f30 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
669 24278f30 2019-08-03 stsp
670 24278f30 2019-08-03 stsp echo "modified file again" >> $testroot/wt/alpha
671 24278f30 2019-08-03 stsp echo "modified added file again" >> $testroot/wt/foo
672 24278f30 2019-08-03 stsp
673 24278f30 2019-08-03 stsp (cd $testroot/wt && got revert alpha > $testroot/stdout)
674 24278f30 2019-08-03 stsp ret="$?"
675 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
676 24278f30 2019-08-03 stsp echo "revert command failed unexpectedly" >&2
677 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
678 24278f30 2019-08-03 stsp return 1
679 24278f30 2019-08-03 stsp fi
680 24278f30 2019-08-03 stsp
681 24278f30 2019-08-03 stsp echo "R alpha" > $testroot/stdout.expected
682 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
683 24278f30 2019-08-03 stsp ret="$?"
684 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
685 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
686 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
687 24278f30 2019-08-03 stsp return 1
688 24278f30 2019-08-03 stsp fi
689 24278f30 2019-08-03 stsp
690 24278f30 2019-08-03 stsp echo "modified alpha" > $testroot/content.expected
691 24278f30 2019-08-03 stsp cat $testroot/wt/alpha > $testroot/content
692 24278f30 2019-08-03 stsp cmp -s $testroot/content.expected $testroot/content
693 24278f30 2019-08-03 stsp ret="$?"
694 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
695 24278f30 2019-08-03 stsp diff -u $testroot/content.expected $testroot/content
696 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
697 24278f30 2019-08-03 stsp return 1
698 24278f30 2019-08-03 stsp fi
699 9acbc4fa 2019-08-03 stsp
700 24278f30 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
701 24278f30 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
702 24278f30 2019-08-03 stsp echo 'MA foo' >> $testroot/stdout.expected
703 24278f30 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
704 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
705 24278f30 2019-08-03 stsp ret="$?"
706 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
707 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
708 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
709 24278f30 2019-08-03 stsp return 1
710 24278f30 2019-08-03 stsp fi
711 24278f30 2019-08-03 stsp
712 24278f30 2019-08-03 stsp (cd $testroot/wt && got revert alpha > $testroot/stdout)
713 24278f30 2019-08-03 stsp ret="$?"
714 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
715 24278f30 2019-08-03 stsp echo "revert command failed unexpectedly" >&2
716 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
717 24278f30 2019-08-03 stsp return 1
718 24278f30 2019-08-03 stsp fi
719 24278f30 2019-08-03 stsp
720 24278f30 2019-08-03 stsp echo -n > $testroot/stdout.expected
721 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
722 24278f30 2019-08-03 stsp ret="$?"
723 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
724 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
725 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
726 24278f30 2019-08-03 stsp return 1
727 24278f30 2019-08-03 stsp fi
728 24278f30 2019-08-03 stsp
729 24278f30 2019-08-03 stsp echo "modified alpha" > $testroot/content.expected
730 24278f30 2019-08-03 stsp cat $testroot/wt/alpha > $testroot/content
731 24278f30 2019-08-03 stsp cmp -s $testroot/content.expected $testroot/content
732 24278f30 2019-08-03 stsp ret="$?"
733 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
734 24278f30 2019-08-03 stsp diff -u $testroot/content.expected $testroot/content
735 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
736 24278f30 2019-08-03 stsp return 1
737 24278f30 2019-08-03 stsp fi
738 24278f30 2019-08-03 stsp
739 24278f30 2019-08-03 stsp (cd $testroot/wt && got revert beta > $testroot/stdout \
740 24278f30 2019-08-03 stsp 2> $testroot/stderr)
741 24278f30 2019-08-03 stsp ret="$?"
742 d3bcc3d1 2019-08-08 stsp if [ "$ret" != "0" ]; then
743 d3bcc3d1 2019-08-08 stsp echo "revert command failed unexpectedly" >&2
744 d3bcc3d1 2019-08-08 stsp test_done "$testroot" "$ret"
745 24278f30 2019-08-03 stsp return 1
746 24278f30 2019-08-03 stsp fi
747 24278f30 2019-08-03 stsp
748 d3bcc3d1 2019-08-08 stsp echo -n > $testroot/stdout.expected
749 d3bcc3d1 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
750 d3bcc3d1 2019-08-08 stsp ret="$?"
751 d3bcc3d1 2019-08-08 stsp if [ "$ret" != "0" ]; then
752 d3bcc3d1 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
753 d3bcc3d1 2019-08-08 stsp test_done "$testroot" "$ret"
754 d3bcc3d1 2019-08-08 stsp return 1
755 d3bcc3d1 2019-08-08 stsp fi
756 d3bcc3d1 2019-08-08 stsp
757 d3bcc3d1 2019-08-08 stsp echo -n > $testroot/stderr.expected
758 24278f30 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
759 24278f30 2019-08-03 stsp ret="$?"
760 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
761 24278f30 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
762 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
763 24278f30 2019-08-03 stsp return 1
764 24278f30 2019-08-03 stsp fi
765 24278f30 2019-08-03 stsp
766 24278f30 2019-08-03 stsp (cd $testroot/wt && got revert foo > $testroot/stdout)
767 24278f30 2019-08-03 stsp ret="$?"
768 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
769 24278f30 2019-08-03 stsp echo "revert command failed unexpectedly" >&2
770 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
771 24278f30 2019-08-03 stsp return 1
772 24278f30 2019-08-03 stsp fi
773 24278f30 2019-08-03 stsp
774 24278f30 2019-08-03 stsp echo "R foo" > $testroot/stdout.expected
775 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
776 24278f30 2019-08-03 stsp ret="$?"
777 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
778 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
779 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
780 24278f30 2019-08-03 stsp return 1
781 24278f30 2019-08-03 stsp fi
782 24278f30 2019-08-03 stsp
783 24278f30 2019-08-03 stsp echo "new file" > $testroot/content.expected
784 24278f30 2019-08-03 stsp cat $testroot/wt/foo > $testroot/content
785 24278f30 2019-08-03 stsp cmp -s $testroot/content.expected $testroot/content
786 24278f30 2019-08-03 stsp ret="$?"
787 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
788 24278f30 2019-08-03 stsp diff -u $testroot/content.expected $testroot/content
789 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
790 24278f30 2019-08-03 stsp return 1
791 24278f30 2019-08-03 stsp fi
792 24278f30 2019-08-03 stsp
793 24278f30 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
794 24278f30 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
795 24278f30 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
796 24278f30 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
797 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
798 24278f30 2019-08-03 stsp ret="$?"
799 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
800 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
801 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
802 24278f30 2019-08-03 stsp return 1
803 24278f30 2019-08-03 stsp fi
804 24278f30 2019-08-03 stsp
805 24278f30 2019-08-03 stsp (cd $testroot/wt && got revert foo > $testroot/stdout)
806 24278f30 2019-08-03 stsp ret="$?"
807 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
808 24278f30 2019-08-03 stsp echo "revert command failed unexpectedly" >&2
809 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
810 24278f30 2019-08-03 stsp return 1
811 24278f30 2019-08-03 stsp fi
812 24278f30 2019-08-03 stsp
813 24278f30 2019-08-03 stsp echo -n > $testroot/stdout.expected
814 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
815 24278f30 2019-08-03 stsp ret="$?"
816 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
817 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
818 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
819 24278f30 2019-08-03 stsp return 1
820 24278f30 2019-08-03 stsp fi
821 24278f30 2019-08-03 stsp
822 24278f30 2019-08-03 stsp echo "new file" > $testroot/content.expected
823 24278f30 2019-08-03 stsp cat $testroot/wt/foo > $testroot/content
824 24278f30 2019-08-03 stsp cmp -s $testroot/content.expected $testroot/content
825 24278f30 2019-08-03 stsp ret="$?"
826 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
827 24278f30 2019-08-03 stsp diff -u $testroot/content.expected $testroot/content
828 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
829 24278f30 2019-08-03 stsp return 1
830 24278f30 2019-08-03 stsp fi
831 24278f30 2019-08-03 stsp
832 24278f30 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
833 24278f30 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
834 24278f30 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
835 0f6d7415 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
836 0f6d7415 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
837 0f6d7415 2019-08-08 stsp ret="$?"
838 0f6d7415 2019-08-08 stsp if [ "$ret" != "0" ]; then
839 0f6d7415 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
840 0f6d7415 2019-08-08 stsp test_done "$testroot" "$ret"
841 0f6d7415 2019-08-08 stsp return 1
842 0f6d7415 2019-08-08 stsp fi
843 0f6d7415 2019-08-08 stsp
844 0f6d7415 2019-08-08 stsp echo "modified file again" >> $testroot/wt/alpha
845 0f6d7415 2019-08-08 stsp echo "modified added file again" >> $testroot/wt/foo
846 0f6d7415 2019-08-08 stsp
847 0f6d7415 2019-08-08 stsp (cd $testroot/wt && got revert -R . > $testroot/stdout \
848 0f6d7415 2019-08-08 stsp 2> $testroot/stderr)
849 0f6d7415 2019-08-08 stsp ret="$?"
850 d3bcc3d1 2019-08-08 stsp if [ "$ret" != "0" ]; then
851 d3bcc3d1 2019-08-08 stsp echo "revert command failed unexpectedly" >&2
852 0f6d7415 2019-08-08 stsp test_done "$testroot" "$ret"
853 0f6d7415 2019-08-08 stsp return 1
854 0f6d7415 2019-08-08 stsp fi
855 0f6d7415 2019-08-08 stsp
856 0f6d7415 2019-08-08 stsp echo "R alpha" > $testroot/stdout.expected
857 d3bcc3d1 2019-08-08 stsp echo "R foo" >> $testroot/stdout.expected
858 0f6d7415 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
859 0f6d7415 2019-08-08 stsp ret="$?"
860 0f6d7415 2019-08-08 stsp if [ "$ret" != "0" ]; then
861 0f6d7415 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
862 0f6d7415 2019-08-08 stsp test_done "$testroot" "$ret"
863 0f6d7415 2019-08-08 stsp return 1
864 0f6d7415 2019-08-08 stsp fi
865 0f6d7415 2019-08-08 stsp
866 d3bcc3d1 2019-08-08 stsp echo -n > $testroot/stderr.expected
867 0f6d7415 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
868 0f6d7415 2019-08-08 stsp ret="$?"
869 0f6d7415 2019-08-08 stsp if [ "$ret" != "0" ]; then
870 0f6d7415 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
871 0f6d7415 2019-08-08 stsp test_done "$testroot" "$ret"
872 0f6d7415 2019-08-08 stsp return 1
873 0f6d7415 2019-08-08 stsp fi
874 0f6d7415 2019-08-08 stsp
875 0f6d7415 2019-08-08 stsp echo ' M alpha' > $testroot/stdout.expected
876 0f6d7415 2019-08-08 stsp echo ' D beta' >> $testroot/stdout.expected
877 d3bcc3d1 2019-08-08 stsp echo ' A foo' >> $testroot/stdout.expected
878 24278f30 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
879 408b4ebc 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
880 408b4ebc 2019-08-03 stsp ret="$?"
881 408b4ebc 2019-08-03 stsp if [ "$ret" != "0" ]; then
882 408b4ebc 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
883 408b4ebc 2019-08-03 stsp fi
884 408b4ebc 2019-08-03 stsp test_done "$testroot" "$ret"
885 408b4ebc 2019-08-03 stsp }
886 408b4ebc 2019-08-03 stsp
887 f6cae3ed 2020-09-13 naddy test_stage_diff() {
888 408b4ebc 2019-08-03 stsp local testroot=`test_init stage_diff`
889 408b4ebc 2019-08-03 stsp local head_commit=`git_show_head $testroot/repo`
890 408b4ebc 2019-08-03 stsp
891 408b4ebc 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
892 408b4ebc 2019-08-03 stsp ret="$?"
893 408b4ebc 2019-08-03 stsp if [ "$ret" != "0" ]; then
894 408b4ebc 2019-08-03 stsp test_done "$testroot" "$ret"
895 408b4ebc 2019-08-03 stsp return 1
896 408b4ebc 2019-08-03 stsp fi
897 408b4ebc 2019-08-03 stsp
898 408b4ebc 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
899 408b4ebc 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
900 408b4ebc 2019-08-03 stsp echo "new file" > $testroot/wt/foo
901 408b4ebc 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
902 98eaaa12 2019-08-03 stsp
903 98eaaa12 2019-08-03 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
904 98eaaa12 2019-08-03 stsp echo -n > $testroot/stdout.expected
905 98eaaa12 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
906 98eaaa12 2019-08-03 stsp ret="$?"
907 98eaaa12 2019-08-03 stsp if [ "$ret" != "0" ]; then
908 98eaaa12 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
909 98eaaa12 2019-08-03 stsp test_done "$testroot" "$ret"
910 98eaaa12 2019-08-03 stsp return 1
911 98eaaa12 2019-08-03 stsp fi
912 408b4ebc 2019-08-03 stsp
913 408b4ebc 2019-08-03 stsp echo ' M alpha' > $testroot/stdout.expected
914 408b4ebc 2019-08-03 stsp echo ' D beta' >> $testroot/stdout.expected
915 408b4ebc 2019-08-03 stsp echo ' A foo' >> $testroot/stdout.expected
916 408b4ebc 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
917 408b4ebc 2019-08-03 stsp
918 408b4ebc 2019-08-03 stsp (cd $testroot/wt && got diff > $testroot/stdout)
919 408b4ebc 2019-08-03 stsp echo -n > $testroot/stdout.expected
920 408b4ebc 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
921 408b4ebc 2019-08-03 stsp ret="$?"
922 408b4ebc 2019-08-03 stsp if [ "$ret" != "0" ]; then
923 408b4ebc 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
924 408b4ebc 2019-08-03 stsp test_done "$testroot" "$ret"
925 408b4ebc 2019-08-03 stsp return 1
926 408b4ebc 2019-08-03 stsp fi
927 408b4ebc 2019-08-03 stsp
928 408b4ebc 2019-08-03 stsp echo "modified file again" > $testroot/wt/alpha
929 408b4ebc 2019-08-03 stsp echo "new file changed" > $testroot/wt/foo
930 408b4ebc 2019-08-03 stsp
931 408b4ebc 2019-08-03 stsp (cd $testroot/wt && got diff > $testroot/stdout)
932 408b4ebc 2019-08-03 stsp
933 408b4ebc 2019-08-03 stsp echo "diff $head_commit $testroot/wt" > $testroot/stdout.expected
934 408b4ebc 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
935 4ce46740 2019-08-08 stsp (cd $testroot/wt && got stage -l alpha) | cut -d' ' -f 1 | tr -d '\n' \
936 408b4ebc 2019-08-03 stsp >> $testroot/stdout.expected
937 4ce46740 2019-08-08 stsp echo ' (staged)' >> $testroot/stdout.expected
938 408b4ebc 2019-08-03 stsp echo 'file + alpha' >> $testroot/stdout.expected
939 408b4ebc 2019-08-03 stsp echo '--- alpha' >> $testroot/stdout.expected
940 408b4ebc 2019-08-03 stsp echo '+++ alpha' >> $testroot/stdout.expected
941 408b4ebc 2019-08-03 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
942 408b4ebc 2019-08-03 stsp echo '-modified file' >> $testroot/stdout.expected
943 408b4ebc 2019-08-03 stsp echo '+modified file again' >> $testroot/stdout.expected
944 408b4ebc 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
945 4ce46740 2019-08-08 stsp (cd $testroot/wt && got stage -l foo) | cut -d' ' -f 1 | tr -d '\n' \
946 408b4ebc 2019-08-03 stsp >> $testroot/stdout.expected
947 4ce46740 2019-08-08 stsp echo " (staged)" >> $testroot/stdout.expected
948 408b4ebc 2019-08-03 stsp echo 'file + foo' >> $testroot/stdout.expected
949 408b4ebc 2019-08-03 stsp echo '--- foo' >> $testroot/stdout.expected
950 408b4ebc 2019-08-03 stsp echo '+++ foo' >> $testroot/stdout.expected
951 408b4ebc 2019-08-03 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
952 408b4ebc 2019-08-03 stsp echo '-new file' >> $testroot/stdout.expected
953 408b4ebc 2019-08-03 stsp echo '+new file changed' >> $testroot/stdout.expected
954 98eaaa12 2019-08-03 stsp
955 98eaaa12 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
956 98eaaa12 2019-08-03 stsp ret="$?"
957 98eaaa12 2019-08-03 stsp if [ "$ret" != "0" ]; then
958 98eaaa12 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
959 98eaaa12 2019-08-03 stsp test_done "$testroot" "$ret"
960 98eaaa12 2019-08-03 stsp return 1
961 98eaaa12 2019-08-03 stsp fi
962 98eaaa12 2019-08-03 stsp
963 98eaaa12 2019-08-03 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
964 98eaaa12 2019-08-03 stsp
965 98eaaa12 2019-08-03 stsp echo "diff $head_commit $testroot/wt (staged changes)" \
966 98eaaa12 2019-08-03 stsp > $testroot/stdout.expected
967 98eaaa12 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
968 98eaaa12 2019-08-03 stsp got tree -r $testroot/repo -i | grep 'alpha$' | cut -d' ' -f 1 \
969 98eaaa12 2019-08-03 stsp >> $testroot/stdout.expected
970 98eaaa12 2019-08-03 stsp echo -n 'blob + ' >> $testroot/stdout.expected
971 98eaaa12 2019-08-03 stsp (cd $testroot/wt && got stage -l alpha) | cut -d' ' -f 1 \
972 98eaaa12 2019-08-03 stsp >> $testroot/stdout.expected
973 98eaaa12 2019-08-03 stsp echo '--- alpha' >> $testroot/stdout.expected
974 98eaaa12 2019-08-03 stsp echo '+++ alpha' >> $testroot/stdout.expected
975 98eaaa12 2019-08-03 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
976 98eaaa12 2019-08-03 stsp echo '-alpha' >> $testroot/stdout.expected
977 98eaaa12 2019-08-03 stsp echo '+modified file' >> $testroot/stdout.expected
978 98eaaa12 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
979 98eaaa12 2019-08-03 stsp got tree -r $testroot/repo -i | grep 'beta$' | cut -d' ' -f 1 \
980 98eaaa12 2019-08-03 stsp >> $testroot/stdout.expected
981 98eaaa12 2019-08-03 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
982 98eaaa12 2019-08-03 stsp echo '--- beta' >> $testroot/stdout.expected
983 98eaaa12 2019-08-03 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
984 98eaaa12 2019-08-03 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
985 98eaaa12 2019-08-03 stsp echo '-beta' >> $testroot/stdout.expected
986 98eaaa12 2019-08-03 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
987 98eaaa12 2019-08-03 stsp echo -n 'blob + ' >> $testroot/stdout.expected
988 98eaaa12 2019-08-03 stsp (cd $testroot/wt && got stage -l foo) | cut -d' ' -f 1 \
989 98eaaa12 2019-08-03 stsp >> $testroot/stdout.expected
990 98eaaa12 2019-08-03 stsp echo '--- /dev/null' >> $testroot/stdout.expected
991 98eaaa12 2019-08-03 stsp echo '+++ foo' >> $testroot/stdout.expected
992 98eaaa12 2019-08-03 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
993 98eaaa12 2019-08-03 stsp echo '+new file' >> $testroot/stdout.expected
994 408b4ebc 2019-08-03 stsp
995 24278f30 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
996 24278f30 2019-08-03 stsp ret="$?"
997 24278f30 2019-08-03 stsp if [ "$ret" != "0" ]; then
998 24278f30 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
999 24278f30 2019-08-03 stsp fi
1000 24278f30 2019-08-03 stsp test_done "$testroot" "$ret"
1001 408b4ebc 2019-08-03 stsp
1002 24278f30 2019-08-03 stsp }
1003 b9622844 2019-08-03 stsp
1004 f6cae3ed 2020-09-13 naddy test_stage_histedit() {
1005 b9622844 2019-08-03 stsp local testroot=`test_init stage_histedit`
1006 b9622844 2019-08-03 stsp local orig_commit=`git_show_head $testroot/repo`
1007 b9622844 2019-08-03 stsp
1008 b9622844 2019-08-03 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1009 b9622844 2019-08-03 stsp ret="$?"
1010 b9622844 2019-08-03 stsp if [ "$ret" != "0" ]; then
1011 b9622844 2019-08-03 stsp test_done "$testroot" "$ret"
1012 b9622844 2019-08-03 stsp return 1
1013 b9622844 2019-08-03 stsp fi
1014 b9622844 2019-08-03 stsp
1015 b9622844 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1016 b9622844 2019-08-03 stsp (cd $testroot/wt && got stage alpha > /dev/null)
1017 b9622844 2019-08-03 stsp
1018 b9622844 2019-08-03 stsp echo "modified alpha on master" > $testroot/repo/alpha
1019 b9622844 2019-08-03 stsp (cd $testroot/repo && git rm -q beta)
1020 b9622844 2019-08-03 stsp echo "new file on master" > $testroot/repo/epsilon/new
1021 b9622844 2019-08-03 stsp (cd $testroot/repo && git add epsilon/new)
1022 b9622844 2019-08-03 stsp git_commit $testroot/repo -m "committing changes"
1023 b9622844 2019-08-03 stsp local old_commit1=`git_show_head $testroot/repo`
1024 24278f30 2019-08-03 stsp
1025 b9622844 2019-08-03 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1026 b9622844 2019-08-03 stsp git_commit $testroot/repo -m "committing to zeta on master"
1027 b9622844 2019-08-03 stsp local old_commit2=`git_show_head $testroot/repo`
1028 b9622844 2019-08-03 stsp
1029 b9622844 2019-08-03 stsp echo "pick $old_commit1" > $testroot/histedit-script
1030 b9622844 2019-08-03 stsp echo "pick $old_commit2" >> $testroot/histedit-script
1031 b9622844 2019-08-03 stsp
1032 b9622844 2019-08-03 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1033 b9622844 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
1034 b9622844 2019-08-03 stsp ret="$?"
1035 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1036 b9622844 2019-08-03 stsp echo "got histedit command succeeded unexpectedly" >&2
1037 b9622844 2019-08-03 stsp test_done "$testroot" "1"
1038 b9622844 2019-08-03 stsp return 1
1039 b9622844 2019-08-03 stsp fi
1040 b9622844 2019-08-03 stsp
1041 b9622844 2019-08-03 stsp echo -n > $testroot/stdout.expected
1042 b9622844 2019-08-03 stsp echo "got: alpha: file is staged" > $testroot/stderr.expected
1043 b9622844 2019-08-03 stsp
1044 b9622844 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1045 b9622844 2019-08-03 stsp ret="$?"
1046 b9622844 2019-08-03 stsp if [ "$ret" != "0" ]; then
1047 b9622844 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
1048 b9622844 2019-08-03 stsp test_done "$testroot" "$ret"
1049 b9622844 2019-08-03 stsp return 1
1050 b9622844 2019-08-03 stsp fi
1051 b9622844 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1052 b9622844 2019-08-03 stsp ret="$?"
1053 b9622844 2019-08-03 stsp if [ "$ret" != "0" ]; then
1054 b9622844 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1055 b9622844 2019-08-03 stsp fi
1056 b9622844 2019-08-03 stsp test_done "$testroot" "$ret"
1057 243d7cf1 2019-08-03 stsp
1058 243d7cf1 2019-08-03 stsp }
1059 243d7cf1 2019-08-03 stsp
1060 f6cae3ed 2020-09-13 naddy test_stage_rebase() {
1061 243d7cf1 2019-08-03 stsp local testroot=`test_init stage_rebase`
1062 243d7cf1 2019-08-03 stsp
1063 243d7cf1 2019-08-03 stsp (cd $testroot/repo && git checkout -q -b newbranch)
1064 243d7cf1 2019-08-03 stsp echo "modified delta on branch" > $testroot/repo/gamma/delta
1065 243d7cf1 2019-08-03 stsp git_commit $testroot/repo -m "committing to delta on newbranch"
1066 243d7cf1 2019-08-03 stsp
1067 243d7cf1 2019-08-03 stsp echo "modified alpha on branch" > $testroot/repo/alpha
1068 243d7cf1 2019-08-03 stsp (cd $testroot/repo && git rm -q beta)
1069 243d7cf1 2019-08-03 stsp echo "new file on branch" > $testroot/repo/epsilon/new
1070 243d7cf1 2019-08-03 stsp (cd $testroot/repo && git add epsilon/new)
1071 243d7cf1 2019-08-03 stsp git_commit $testroot/repo -m "committing more changes on newbranch"
1072 243d7cf1 2019-08-03 stsp
1073 243d7cf1 2019-08-03 stsp local orig_commit1=`git_show_parent_commit $testroot/repo`
1074 243d7cf1 2019-08-03 stsp local orig_commit2=`git_show_head $testroot/repo`
1075 243d7cf1 2019-08-03 stsp
1076 243d7cf1 2019-08-03 stsp (cd $testroot/repo && git checkout -q master)
1077 243d7cf1 2019-08-03 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1078 243d7cf1 2019-08-03 stsp git_commit $testroot/repo -m "committing to zeta on master"
1079 243d7cf1 2019-08-03 stsp local master_commit=`git_show_head $testroot/repo`
1080 243d7cf1 2019-08-03 stsp
1081 243d7cf1 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1082 243d7cf1 2019-08-03 stsp ret="$?"
1083 243d7cf1 2019-08-03 stsp if [ "$ret" != "0" ]; then
1084 243d7cf1 2019-08-03 stsp test_done "$testroot" "$ret"
1085 243d7cf1 2019-08-03 stsp return 1
1086 243d7cf1 2019-08-03 stsp fi
1087 243d7cf1 2019-08-03 stsp
1088 243d7cf1 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1089 243d7cf1 2019-08-03 stsp (cd $testroot/wt && got stage alpha > /dev/null)
1090 b9622844 2019-08-03 stsp
1091 243d7cf1 2019-08-03 stsp (cd $testroot/wt && got rebase newbranch \
1092 243d7cf1 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
1093 243d7cf1 2019-08-03 stsp ret="$?"
1094 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1095 243d7cf1 2019-08-03 stsp echo "got rebase command succeeded unexpectedly" >&2
1096 243d7cf1 2019-08-03 stsp test_done "$testroot" "1"
1097 243d7cf1 2019-08-03 stsp return 1
1098 243d7cf1 2019-08-03 stsp fi
1099 243d7cf1 2019-08-03 stsp
1100 243d7cf1 2019-08-03 stsp echo -n > $testroot/stdout.expected
1101 243d7cf1 2019-08-03 stsp echo "got: alpha: file is staged" > $testroot/stderr.expected
1102 243d7cf1 2019-08-03 stsp
1103 243d7cf1 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1104 243d7cf1 2019-08-03 stsp ret="$?"
1105 243d7cf1 2019-08-03 stsp if [ "$ret" != "0" ]; then
1106 243d7cf1 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
1107 243d7cf1 2019-08-03 stsp test_done "$testroot" "$ret"
1108 243d7cf1 2019-08-03 stsp return 1
1109 243d7cf1 2019-08-03 stsp fi
1110 243d7cf1 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1111 243d7cf1 2019-08-03 stsp ret="$?"
1112 243d7cf1 2019-08-03 stsp if [ "$ret" != "0" ]; then
1113 243d7cf1 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1114 243d7cf1 2019-08-03 stsp fi
1115 243d7cf1 2019-08-03 stsp test_done "$testroot" "$ret"
1116 b9622844 2019-08-03 stsp }
1117 b9622844 2019-08-03 stsp
1118 f6cae3ed 2020-09-13 naddy test_stage_update() {
1119 a76c42e6 2019-08-03 stsp local testroot=`test_init stage_update`
1120 a76c42e6 2019-08-03 stsp
1121 a76c42e6 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1122 a76c42e6 2019-08-03 stsp ret="$?"
1123 a76c42e6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1124 a76c42e6 2019-08-03 stsp test_done "$testroot" "$ret"
1125 a76c42e6 2019-08-03 stsp return 1
1126 a76c42e6 2019-08-03 stsp fi
1127 243d7cf1 2019-08-03 stsp
1128 a76c42e6 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1129 a76c42e6 2019-08-03 stsp (cd $testroot/wt && got stage alpha > /dev/null)
1130 a76c42e6 2019-08-03 stsp
1131 a76c42e6 2019-08-03 stsp echo "modified alpha" > $testroot/repo/alpha
1132 a76c42e6 2019-08-03 stsp git_commit $testroot/repo -m "modified alpha"
1133 a76c42e6 2019-08-03 stsp
1134 a76c42e6 2019-08-03 stsp (cd $testroot/wt && got update > $testroot/stdout \
1135 a76c42e6 2019-08-03 stsp 2> $testroot/stderr)
1136 a76c42e6 2019-08-03 stsp ret="$?"
1137 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1138 a76c42e6 2019-08-03 stsp echo "got update command succeeded unexpectedly" >&2
1139 a76c42e6 2019-08-03 stsp test_done "$testroot" "1"
1140 a76c42e6 2019-08-03 stsp return 1
1141 a76c42e6 2019-08-03 stsp fi
1142 a76c42e6 2019-08-03 stsp
1143 a76c42e6 2019-08-03 stsp echo -n > $testroot/stdout.expected
1144 a76c42e6 2019-08-03 stsp echo "got: alpha: file is staged" > $testroot/stderr.expected
1145 a76c42e6 2019-08-03 stsp
1146 a76c42e6 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1147 a76c42e6 2019-08-03 stsp ret="$?"
1148 a76c42e6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1149 a76c42e6 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
1150 a76c42e6 2019-08-03 stsp test_done "$testroot" "$ret"
1151 a76c42e6 2019-08-03 stsp return 1
1152 a76c42e6 2019-08-03 stsp fi
1153 a76c42e6 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1154 a76c42e6 2019-08-03 stsp ret="$?"
1155 a76c42e6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1156 a76c42e6 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1157 a76c42e6 2019-08-03 stsp fi
1158 a76c42e6 2019-08-03 stsp test_done "$testroot" "$ret"
1159 a76c42e6 2019-08-03 stsp }
1160 f0b75401 2019-08-03 stsp
1161 f6cae3ed 2020-09-13 naddy test_stage_commit_non_staged() {
1162 f0b75401 2019-08-03 stsp local testroot=`test_init stage_commit_non_staged`
1163 f0b75401 2019-08-03 stsp
1164 f0b75401 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1165 f0b75401 2019-08-03 stsp ret="$?"
1166 f0b75401 2019-08-03 stsp if [ "$ret" != "0" ]; then
1167 f0b75401 2019-08-03 stsp test_done "$testroot" "$ret"
1168 f0b75401 2019-08-03 stsp return 1
1169 f0b75401 2019-08-03 stsp fi
1170 f0b75401 2019-08-03 stsp
1171 f0b75401 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1172 f0b75401 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
1173 f0b75401 2019-08-03 stsp echo "new file" > $testroot/wt/foo
1174 f0b75401 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
1175 f0b75401 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
1176 a76c42e6 2019-08-03 stsp
1177 f0b75401 2019-08-03 stsp echo "modified file" > $testroot/wt/gamma/delta
1178 f0b75401 2019-08-03 stsp (cd $testroot/wt && got commit -m "change delta" gamma/delta \
1179 f0b75401 2019-08-03 stsp > $testroot/stdout 2> $testroot/stderr)
1180 f0b75401 2019-08-03 stsp ret="$?"
1181 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1182 f0b75401 2019-08-03 stsp echo "got commit command succeeded unexpectedly" >&2
1183 f0b75401 2019-08-03 stsp test_done "$testroot" "1"
1184 f0b75401 2019-08-03 stsp return 1
1185 f0b75401 2019-08-03 stsp fi
1186 f0b75401 2019-08-03 stsp
1187 f0b75401 2019-08-03 stsp echo -n > $testroot/stdout.expected
1188 f0b75401 2019-08-03 stsp echo "got: gamma/delta: file is not staged" > $testroot/stderr.expected
1189 f0b75401 2019-08-03 stsp
1190 f0b75401 2019-08-03 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1191 f0b75401 2019-08-03 stsp ret="$?"
1192 f0b75401 2019-08-03 stsp if [ "$ret" != "0" ]; then
1193 f0b75401 2019-08-03 stsp diff -u $testroot/stderr.expected $testroot/stderr
1194 5f8a88c6 2019-08-03 stsp test_done "$testroot" "$ret"
1195 5f8a88c6 2019-08-03 stsp return 1
1196 5f8a88c6 2019-08-03 stsp fi
1197 5f8a88c6 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1198 5f8a88c6 2019-08-03 stsp ret="$?"
1199 5f8a88c6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1200 5f8a88c6 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1201 5f8a88c6 2019-08-03 stsp fi
1202 5f8a88c6 2019-08-03 stsp test_done "$testroot" "$ret"
1203 5f8a88c6 2019-08-03 stsp }
1204 0f1cfa7f 2019-08-08 stsp
1205 f6cae3ed 2020-09-13 naddy test_stage_commit_out_of_date() {
1206 0f1cfa7f 2019-08-08 stsp local testroot=`test_init stage_commit_out_of_date`
1207 0f1cfa7f 2019-08-08 stsp
1208 0f1cfa7f 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1209 0f1cfa7f 2019-08-08 stsp ret="$?"
1210 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1211 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1212 0f1cfa7f 2019-08-08 stsp return 1
1213 0f1cfa7f 2019-08-08 stsp fi
1214 0f1cfa7f 2019-08-08 stsp
1215 0f1cfa7f 2019-08-08 stsp echo "modified file" > $testroot/wt/alpha
1216 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got rm beta > /dev/null)
1217 0f1cfa7f 2019-08-08 stsp echo "new file" > $testroot/wt/foo
1218 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got add foo > /dev/null)
1219 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
1220 0f1cfa7f 2019-08-08 stsp
1221 0f1cfa7f 2019-08-08 stsp echo "changed file" > $testroot/repo/alpha
1222 0f1cfa7f 2019-08-08 stsp git_commit $testroot/repo -m "changed alpha in repo"
1223 0f1cfa7f 2019-08-08 stsp
1224 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got commit -m "try to commit" > $testroot/stdout \
1225 0f1cfa7f 2019-08-08 stsp 2> $testroot/stderr)
1226 0f1cfa7f 2019-08-08 stsp ret="$?"
1227 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1228 0f1cfa7f 2019-08-08 stsp echo "got commit command succeeded unexpectedly" >&2
1229 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "1"
1230 0f1cfa7f 2019-08-08 stsp return 1
1231 0f1cfa7f 2019-08-08 stsp fi
1232 0f1cfa7f 2019-08-08 stsp
1233 0f1cfa7f 2019-08-08 stsp echo -n > $testroot/stdout.expected
1234 0f1cfa7f 2019-08-08 stsp echo -n "got: work tree must be updated before these changes " \
1235 0f1cfa7f 2019-08-08 stsp > $testroot/stderr.expected
1236 0f1cfa7f 2019-08-08 stsp echo "can be committed" >> $testroot/stderr.expected
1237 5f8a88c6 2019-08-03 stsp
1238 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1239 0f1cfa7f 2019-08-08 stsp ret="$?"
1240 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1241 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
1242 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1243 0f1cfa7f 2019-08-08 stsp return 1
1244 0f1cfa7f 2019-08-08 stsp fi
1245 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1246 0f1cfa7f 2019-08-08 stsp ret="$?"
1247 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1248 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1249 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1250 0f1cfa7f 2019-08-08 stsp return 1
1251 0f1cfa7f 2019-08-08 stsp fi
1252 0f1cfa7f 2019-08-08 stsp
1253 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got update > $testroot/stdout \
1254 0f1cfa7f 2019-08-08 stsp 2> $testroot/stderr)
1255 0f1cfa7f 2019-08-08 stsp echo -n > $testroot/stdout.expected
1256 0f1cfa7f 2019-08-08 stsp echo "got: alpha: file is staged" > $testroot/stderr.expected
1257 0f1cfa7f 2019-08-08 stsp
1258 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1259 0f1cfa7f 2019-08-08 stsp ret="$?"
1260 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1261 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
1262 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1263 0f1cfa7f 2019-08-08 stsp return 1
1264 0f1cfa7f 2019-08-08 stsp fi
1265 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1266 0f1cfa7f 2019-08-08 stsp ret="$?"
1267 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1268 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1269 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1270 0f1cfa7f 2019-08-08 stsp return 1
1271 0f1cfa7f 2019-08-08 stsp fi
1272 0f1cfa7f 2019-08-08 stsp
1273 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got unstage > /dev/null)
1274 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got update > $testroot/stdout)
1275 0f1cfa7f 2019-08-08 stsp ret="$?"
1276 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1277 0f1cfa7f 2019-08-08 stsp echo "got update command failed unexpectedly" >&2
1278 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1279 0f1cfa7f 2019-08-08 stsp return 1
1280 0f1cfa7f 2019-08-08 stsp fi
1281 0f1cfa7f 2019-08-08 stsp
1282 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
1283 0f1cfa7f 2019-08-08 stsp echo "C alpha" > $testroot/stdout.expected
1284 0f1cfa7f 2019-08-08 stsp echo "D beta" >> $testroot/stdout.expected
1285 0f1cfa7f 2019-08-08 stsp echo "A foo" >> $testroot/stdout.expected
1286 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1287 0f1cfa7f 2019-08-08 stsp ret="$?"
1288 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1289 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1290 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1291 0f1cfa7f 2019-08-08 stsp return 1
1292 0f1cfa7f 2019-08-08 stsp fi
1293 0f1cfa7f 2019-08-08 stsp
1294 0f1cfa7f 2019-08-08 stsp # resolve conflict
1295 0f1cfa7f 2019-08-08 stsp echo "resolved file" > $testroot/wt/alpha
1296 0f1cfa7f 2019-08-08 stsp
1297 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got stage > /dev/null)
1298 0f1cfa7f 2019-08-08 stsp
1299 0f1cfa7f 2019-08-08 stsp (cd $testroot/wt && got commit -m "try again" > $testroot/stdout)
1300 0f1cfa7f 2019-08-08 stsp ret="$?"
1301 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1302 0f1cfa7f 2019-08-08 stsp echo "got commit command failed unexpectedly" >&2
1303 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1304 0f1cfa7f 2019-08-08 stsp return 1
1305 0f1cfa7f 2019-08-08 stsp fi
1306 0f1cfa7f 2019-08-08 stsp
1307 0f1cfa7f 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
1308 0f1cfa7f 2019-08-08 stsp echo "A foo" > $testroot/stdout.expected
1309 0f1cfa7f 2019-08-08 stsp echo "M alpha" >> $testroot/stdout.expected
1310 0f1cfa7f 2019-08-08 stsp echo "D beta" >> $testroot/stdout.expected
1311 0f1cfa7f 2019-08-08 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
1312 0f1cfa7f 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1313 0f1cfa7f 2019-08-08 stsp ret="$?"
1314 0f1cfa7f 2019-08-08 stsp if [ "$ret" != "0" ]; then
1315 0f1cfa7f 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1316 0f1cfa7f 2019-08-08 stsp fi
1317 0f1cfa7f 2019-08-08 stsp test_done "$testroot" "$ret"
1318 0f1cfa7f 2019-08-08 stsp
1319 0f1cfa7f 2019-08-08 stsp }
1320 0f1cfa7f 2019-08-08 stsp
1321 f6cae3ed 2020-09-13 naddy test_stage_commit() {
1322 5f8a88c6 2019-08-03 stsp local testroot=`test_init stage_commit`
1323 5f8a88c6 2019-08-03 stsp local first_commit=`git_show_head $testroot/repo`
1324 5f8a88c6 2019-08-03 stsp
1325 5f8a88c6 2019-08-03 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1326 5f8a88c6 2019-08-03 stsp ret="$?"
1327 5f8a88c6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1328 5f8a88c6 2019-08-03 stsp test_done "$testroot" "$ret"
1329 5f8a88c6 2019-08-03 stsp return 1
1330 5f8a88c6 2019-08-03 stsp fi
1331 5f8a88c6 2019-08-03 stsp
1332 5f8a88c6 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1333 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got rm beta > /dev/null)
1334 5f8a88c6 2019-08-03 stsp echo "new file" > $testroot/wt/foo
1335 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got add foo > /dev/null)
1336 5f8a88c6 2019-08-03 stsp echo "modified file" > $testroot/wt/alpha
1337 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got stage alpha beta foo > /dev/null)
1338 5f8a88c6 2019-08-03 stsp
1339 5f8a88c6 2019-08-03 stsp echo "modified file again" > $testroot/wt/alpha
1340 5f8a88c6 2019-08-03 stsp echo "new file changed" > $testroot/wt/foo
1341 5f8a88c6 2019-08-03 stsp echo "non-staged change" > $testroot/wt/gamma/delta
1342 5f8a88c6 2019-08-03 stsp echo "non-staged new file" > $testroot/wt/epsilon/new
1343 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got add epsilon/new > /dev/null)
1344 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got rm epsilon/zeta > /dev/null)
1345 5f8a88c6 2019-08-03 stsp
1346 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got stage -l alpha) | cut -d' ' -f 1 \
1347 5f8a88c6 2019-08-03 stsp > $testroot/blob_id_alpha
1348 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got stage -l foo) | cut -d' ' -f 1 \
1349 5f8a88c6 2019-08-03 stsp > $testroot/blob_id_foo
1350 5f8a88c6 2019-08-03 stsp
1351 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got commit -m "staged changes" \
1352 5f8a88c6 2019-08-03 stsp > $testroot/stdout)
1353 5f8a88c6 2019-08-03 stsp ret="$?"
1354 5f8a88c6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1355 5f8a88c6 2019-08-03 stsp echo "got commit command failed unexpectedly" >&2
1356 5f8a88c6 2019-08-03 stsp test_done "$testroot" "1"
1357 5f8a88c6 2019-08-03 stsp return 1
1358 5f8a88c6 2019-08-03 stsp fi
1359 5f8a88c6 2019-08-03 stsp
1360 5f8a88c6 2019-08-03 stsp local head_commit=`git_show_head $testroot/repo`
1361 5f8a88c6 2019-08-03 stsp echo "A foo" > $testroot/stdout.expected
1362 5f8a88c6 2019-08-03 stsp echo "M alpha" >> $testroot/stdout.expected
1363 5f8a88c6 2019-08-03 stsp echo "D beta" >> $testroot/stdout.expected
1364 5f8a88c6 2019-08-03 stsp echo "Created commit $head_commit" >> $testroot/stdout.expected
1365 5f8a88c6 2019-08-03 stsp
1366 5f8a88c6 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1367 5f8a88c6 2019-08-03 stsp ret="$?"
1368 5f8a88c6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1369 5f8a88c6 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1370 f0b75401 2019-08-03 stsp test_done "$testroot" "$ret"
1371 f0b75401 2019-08-03 stsp return 1
1372 f0b75401 2019-08-03 stsp fi
1373 5f8a88c6 2019-08-03 stsp
1374 5f8a88c6 2019-08-03 stsp got diff -r $testroot/repo $first_commit $head_commit \
1375 5f8a88c6 2019-08-03 stsp > $testroot/stdout
1376 5f8a88c6 2019-08-03 stsp
1377 5f8a88c6 2019-08-03 stsp echo "diff $first_commit $head_commit" \
1378 5f8a88c6 2019-08-03 stsp > $testroot/stdout.expected
1379 5f8a88c6 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1380 5f8a88c6 2019-08-03 stsp got tree -r $testroot/repo -i -c $first_commit | \
1381 5f8a88c6 2019-08-03 stsp grep 'alpha$' | cut -d' ' -f 1 \
1382 5f8a88c6 2019-08-03 stsp >> $testroot/stdout.expected
1383 5f8a88c6 2019-08-03 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1384 5f8a88c6 2019-08-03 stsp cat $testroot/blob_id_alpha >> $testroot/stdout.expected
1385 5f8a88c6 2019-08-03 stsp echo '--- alpha' >> $testroot/stdout.expected
1386 5f8a88c6 2019-08-03 stsp echo '+++ alpha' >> $testroot/stdout.expected
1387 5f8a88c6 2019-08-03 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
1388 5f8a88c6 2019-08-03 stsp echo '-alpha' >> $testroot/stdout.expected
1389 5f8a88c6 2019-08-03 stsp echo '+modified file' >> $testroot/stdout.expected
1390 5f8a88c6 2019-08-03 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1391 5f8a88c6 2019-08-03 stsp got tree -r $testroot/repo -i -c $first_commit \
1392 46f68b20 2019-10-19 stsp | grep 'beta$' | cut -d' ' -f 1 | tr -d '\n' \
1393 5f8a88c6 2019-08-03 stsp >> $testroot/stdout.expected
1394 46f68b20 2019-10-19 stsp echo " (mode 644)" >> $testroot/stdout.expected
1395 5f8a88c6 2019-08-03 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
1396 5f8a88c6 2019-08-03 stsp echo '--- beta' >> $testroot/stdout.expected
1397 5f8a88c6 2019-08-03 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
1398 5f8a88c6 2019-08-03 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
1399 5f8a88c6 2019-08-03 stsp echo '-beta' >> $testroot/stdout.expected
1400 5f8a88c6 2019-08-03 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
1401 5f8a88c6 2019-08-03 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1402 46f68b20 2019-10-19 stsp cat $testroot/blob_id_foo | tr -d '\n' >> $testroot/stdout.expected
1403 46f68b20 2019-10-19 stsp echo " (mode 644)" >> $testroot/stdout.expected
1404 5f8a88c6 2019-08-03 stsp echo '--- /dev/null' >> $testroot/stdout.expected
1405 5f8a88c6 2019-08-03 stsp echo '+++ foo' >> $testroot/stdout.expected
1406 5f8a88c6 2019-08-03 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
1407 5f8a88c6 2019-08-03 stsp echo '+new file' >> $testroot/stdout.expected
1408 5f8a88c6 2019-08-03 stsp
1409 f0b75401 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1410 f0b75401 2019-08-03 stsp ret="$?"
1411 f0b75401 2019-08-03 stsp if [ "$ret" != "0" ]; then
1412 f0b75401 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1413 5f8a88c6 2019-08-03 stsp test_done "$testroot" "$ret"
1414 5f8a88c6 2019-08-03 stsp return 1
1415 f0b75401 2019-08-03 stsp fi
1416 5f8a88c6 2019-08-03 stsp
1417 72fd46fa 2019-09-06 stsp echo 'M alpha' > $testroot/stdout.expected
1418 72fd46fa 2019-09-06 stsp echo 'A epsilon/new' >> $testroot/stdout.expected
1419 5f8a88c6 2019-08-03 stsp echo 'D epsilon/zeta' >> $testroot/stdout.expected
1420 72fd46fa 2019-09-06 stsp echo 'M foo' >> $testroot/stdout.expected
1421 5f8a88c6 2019-08-03 stsp echo 'M gamma/delta' >> $testroot/stdout.expected
1422 5f8a88c6 2019-08-03 stsp
1423 5f8a88c6 2019-08-03 stsp (cd $testroot/wt && got status > $testroot/stdout)
1424 5f8a88c6 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1425 5f8a88c6 2019-08-03 stsp ret="$?"
1426 5f8a88c6 2019-08-03 stsp if [ "$ret" != "0" ]; then
1427 5f8a88c6 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
1428 5f8a88c6 2019-08-03 stsp fi
1429 f0b75401 2019-08-03 stsp test_done "$testroot" "$ret"
1430 f0b75401 2019-08-03 stsp }
1431 dc424a06 2019-08-07 stsp
1432 f6cae3ed 2020-09-13 naddy test_stage_patch() {
1433 dc424a06 2019-08-07 stsp local testroot=`test_init stage_patch`
1434 dc424a06 2019-08-07 stsp
1435 dc424a06 2019-08-07 stsp jot 16 > $testroot/repo/numbers
1436 dc424a06 2019-08-07 stsp (cd $testroot/repo && git add numbers)
1437 dc424a06 2019-08-07 stsp git_commit $testroot/repo -m "added numbers file"
1438 dc424a06 2019-08-07 stsp local commit_id=`git_show_head $testroot/repo`
1439 dc424a06 2019-08-07 stsp
1440 dc424a06 2019-08-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1441 dc424a06 2019-08-07 stsp ret="$?"
1442 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1443 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1444 dc424a06 2019-08-07 stsp return 1
1445 dc424a06 2019-08-07 stsp fi
1446 dc424a06 2019-08-07 stsp
1447 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
1448 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
1449 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
1450 dc424a06 2019-08-07 stsp
1451 dc424a06 2019-08-07 stsp # don't stage any hunks
1452 dc424a06 2019-08-07 stsp printf "n\nn\nn\n" > $testroot/patchscript
1453 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1454 7b5dc508 2019-10-28 stsp numbers > $testroot/stdout 2> $testroot/stderr)
1455 dc424a06 2019-08-07 stsp ret="$?"
1456 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
1457 7b5dc508 2019-10-28 stsp echo "got stage command succeeded unexpectedly" >&2
1458 dc424a06 2019-08-07 stsp test_done "$testroot" "1"
1459 dc424a06 2019-08-07 stsp return 1
1460 dc424a06 2019-08-07 stsp fi
1461 dc424a06 2019-08-07 stsp cat > $testroot/stdout.expected <<EOF
1462 dc424a06 2019-08-07 stsp -----------------------------------------------
1463 dc424a06 2019-08-07 stsp @@ -1,5 +1,5 @@
1464 dc424a06 2019-08-07 stsp 1
1465 dc424a06 2019-08-07 stsp -2
1466 dc424a06 2019-08-07 stsp +a
1467 dc424a06 2019-08-07 stsp 3
1468 dc424a06 2019-08-07 stsp 4
1469 dc424a06 2019-08-07 stsp 5
1470 dc424a06 2019-08-07 stsp -----------------------------------------------
1471 a7c9878d 2019-08-08 stsp M numbers (change 1 of 3)
1472 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1473 dc424a06 2019-08-07 stsp -----------------------------------------------
1474 dc424a06 2019-08-07 stsp @@ -4,7 +4,7 @@
1475 dc424a06 2019-08-07 stsp 4
1476 dc424a06 2019-08-07 stsp 5
1477 dc424a06 2019-08-07 stsp 6
1478 dc424a06 2019-08-07 stsp -7
1479 dc424a06 2019-08-07 stsp +b
1480 dc424a06 2019-08-07 stsp 8
1481 dc424a06 2019-08-07 stsp 9
1482 dc424a06 2019-08-07 stsp 10
1483 dc424a06 2019-08-07 stsp -----------------------------------------------
1484 a7c9878d 2019-08-08 stsp M numbers (change 2 of 3)
1485 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1486 dc424a06 2019-08-07 stsp -----------------------------------------------
1487 dc424a06 2019-08-07 stsp @@ -13,4 +13,4 @@
1488 dc424a06 2019-08-07 stsp 13
1489 dc424a06 2019-08-07 stsp 14
1490 dc424a06 2019-08-07 stsp 15
1491 dc424a06 2019-08-07 stsp -16
1492 dc424a06 2019-08-07 stsp +c
1493 dc424a06 2019-08-07 stsp -----------------------------------------------
1494 a7c9878d 2019-08-08 stsp M numbers (change 3 of 3)
1495 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1496 dc424a06 2019-08-07 stsp EOF
1497 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1498 dc424a06 2019-08-07 stsp ret="$?"
1499 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1500 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1501 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1502 dc424a06 2019-08-07 stsp return 1
1503 dc424a06 2019-08-07 stsp fi
1504 f0b75401 2019-08-03 stsp
1505 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
1506 7b5dc508 2019-10-28 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1507 7b5dc508 2019-10-28 stsp ret="$?"
1508 7b5dc508 2019-10-28 stsp if [ "$ret" != "0" ]; then
1509 7b5dc508 2019-10-28 stsp diff -u $testroot/stderr.expected $testroot/stderr
1510 7b5dc508 2019-10-28 stsp test_done "$testroot" "$ret"
1511 7b5dc508 2019-10-28 stsp return 1
1512 7b5dc508 2019-10-28 stsp fi
1513 7b5dc508 2019-10-28 stsp
1514 7b5dc508 2019-10-28 stsp
1515 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1516 dc424a06 2019-08-07 stsp echo "M numbers" > $testroot/stdout.expected
1517 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1518 dc424a06 2019-08-07 stsp ret="$?"
1519 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1520 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1521 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1522 dc424a06 2019-08-07 stsp return 1
1523 dc424a06 2019-08-07 stsp fi
1524 dc424a06 2019-08-07 stsp
1525 dc424a06 2019-08-07 stsp # stage middle hunk
1526 dc424a06 2019-08-07 stsp printf "n\ny\nn\n" > $testroot/patchscript
1527 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1528 dc424a06 2019-08-07 stsp numbers > $testroot/stdout)
1529 dc424a06 2019-08-07 stsp
1530 dc424a06 2019-08-07 stsp cat > $testroot/stdout.expected <<EOF
1531 dc424a06 2019-08-07 stsp -----------------------------------------------
1532 dc424a06 2019-08-07 stsp @@ -1,5 +1,5 @@
1533 dc424a06 2019-08-07 stsp 1
1534 dc424a06 2019-08-07 stsp -2
1535 dc424a06 2019-08-07 stsp +a
1536 dc424a06 2019-08-07 stsp 3
1537 dc424a06 2019-08-07 stsp 4
1538 dc424a06 2019-08-07 stsp 5
1539 dc424a06 2019-08-07 stsp -----------------------------------------------
1540 a7c9878d 2019-08-08 stsp M numbers (change 1 of 3)
1541 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1542 dc424a06 2019-08-07 stsp -----------------------------------------------
1543 dc424a06 2019-08-07 stsp @@ -4,7 +4,7 @@
1544 dc424a06 2019-08-07 stsp 4
1545 dc424a06 2019-08-07 stsp 5
1546 dc424a06 2019-08-07 stsp 6
1547 dc424a06 2019-08-07 stsp -7
1548 dc424a06 2019-08-07 stsp +b
1549 dc424a06 2019-08-07 stsp 8
1550 dc424a06 2019-08-07 stsp 9
1551 dc424a06 2019-08-07 stsp 10
1552 dc424a06 2019-08-07 stsp -----------------------------------------------
1553 a7c9878d 2019-08-08 stsp M numbers (change 2 of 3)
1554 b353a198 2019-08-07 stsp stage this change? [y/n/q] y
1555 dc424a06 2019-08-07 stsp -----------------------------------------------
1556 dc424a06 2019-08-07 stsp @@ -13,4 +13,4 @@
1557 dc424a06 2019-08-07 stsp 13
1558 dc424a06 2019-08-07 stsp 14
1559 dc424a06 2019-08-07 stsp 15
1560 dc424a06 2019-08-07 stsp -16
1561 dc424a06 2019-08-07 stsp +c
1562 dc424a06 2019-08-07 stsp -----------------------------------------------
1563 a7c9878d 2019-08-08 stsp M numbers (change 3 of 3)
1564 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1565 dc424a06 2019-08-07 stsp EOF
1566 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1567 dc424a06 2019-08-07 stsp ret="$?"
1568 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1569 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1570 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1571 dc424a06 2019-08-07 stsp return 1
1572 dc424a06 2019-08-07 stsp fi
1573 dc424a06 2019-08-07 stsp
1574 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1575 dc424a06 2019-08-07 stsp echo "MM numbers" > $testroot/stdout.expected
1576 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1577 dc424a06 2019-08-07 stsp ret="$?"
1578 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1579 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1580 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1581 dc424a06 2019-08-07 stsp return 1
1582 dc424a06 2019-08-07 stsp fi
1583 dc424a06 2019-08-07 stsp
1584 dc424a06 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
1585 dc424a06 2019-08-07 stsp
1586 dc424a06 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
1587 dc424a06 2019-08-07 stsp > $testroot/stdout.expected
1588 dc424a06 2019-08-07 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1589 dc424a06 2019-08-07 stsp got tree -r $testroot/repo -i -c $commit_id \
1590 dc424a06 2019-08-07 stsp | grep 'numbers$' | cut -d' ' -f 1 \
1591 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
1592 dc424a06 2019-08-07 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1593 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 \
1594 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
1595 dc424a06 2019-08-07 stsp echo "--- numbers" >> $testroot/stdout.expected
1596 dc424a06 2019-08-07 stsp echo "+++ numbers" >> $testroot/stdout.expected
1597 dc424a06 2019-08-07 stsp echo "@@ -4,7 +4,7 @@" >> $testroot/stdout.expected
1598 dc424a06 2019-08-07 stsp echo " 4" >> $testroot/stdout.expected
1599 dc424a06 2019-08-07 stsp echo " 5" >> $testroot/stdout.expected
1600 dc424a06 2019-08-07 stsp echo " 6" >> $testroot/stdout.expected
1601 dc424a06 2019-08-07 stsp echo "-7" >> $testroot/stdout.expected
1602 dc424a06 2019-08-07 stsp echo "+b" >> $testroot/stdout.expected
1603 dc424a06 2019-08-07 stsp echo " 8" >> $testroot/stdout.expected
1604 dc424a06 2019-08-07 stsp echo " 9" >> $testroot/stdout.expected
1605 dc424a06 2019-08-07 stsp echo " 10" >> $testroot/stdout.expected
1606 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1607 dc424a06 2019-08-07 stsp ret="$?"
1608 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1609 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1610 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1611 dc424a06 2019-08-07 stsp return 1
1612 dc424a06 2019-08-07 stsp fi
1613 dc424a06 2019-08-07 stsp
1614 dc424a06 2019-08-07 stsp (cd $testroot/wt && got unstage >/dev/null)
1615 dc424a06 2019-08-07 stsp ret="$?"
1616 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1617 dc424a06 2019-08-07 stsp echo "got stage command failed unexpectedly" >&2
1618 dc424a06 2019-08-07 stsp test_done "$testroot" "1"
1619 dc424a06 2019-08-07 stsp return 1
1620 dc424a06 2019-08-07 stsp fi
1621 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1622 dc424a06 2019-08-07 stsp echo "M numbers" > $testroot/stdout.expected
1623 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1624 dc424a06 2019-08-07 stsp ret="$?"
1625 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1626 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1627 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1628 dc424a06 2019-08-07 stsp return 1
1629 dc424a06 2019-08-07 stsp fi
1630 dc424a06 2019-08-07 stsp
1631 dc424a06 2019-08-07 stsp # stage last hunk
1632 dc424a06 2019-08-07 stsp printf "n\nn\ny\n" > $testroot/patchscript
1633 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1634 dc424a06 2019-08-07 stsp numbers > $testroot/stdout)
1635 dc424a06 2019-08-07 stsp
1636 dc424a06 2019-08-07 stsp cat > $testroot/stdout.expected <<EOF
1637 dc424a06 2019-08-07 stsp -----------------------------------------------
1638 dc424a06 2019-08-07 stsp @@ -1,5 +1,5 @@
1639 dc424a06 2019-08-07 stsp 1
1640 dc424a06 2019-08-07 stsp -2
1641 dc424a06 2019-08-07 stsp +a
1642 dc424a06 2019-08-07 stsp 3
1643 dc424a06 2019-08-07 stsp 4
1644 dc424a06 2019-08-07 stsp 5
1645 dc424a06 2019-08-07 stsp -----------------------------------------------
1646 a7c9878d 2019-08-08 stsp M numbers (change 1 of 3)
1647 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1648 dc424a06 2019-08-07 stsp -----------------------------------------------
1649 dc424a06 2019-08-07 stsp @@ -4,7 +4,7 @@
1650 dc424a06 2019-08-07 stsp 4
1651 dc424a06 2019-08-07 stsp 5
1652 dc424a06 2019-08-07 stsp 6
1653 dc424a06 2019-08-07 stsp -7
1654 dc424a06 2019-08-07 stsp +b
1655 dc424a06 2019-08-07 stsp 8
1656 dc424a06 2019-08-07 stsp 9
1657 dc424a06 2019-08-07 stsp 10
1658 dc424a06 2019-08-07 stsp -----------------------------------------------
1659 a7c9878d 2019-08-08 stsp M numbers (change 2 of 3)
1660 b353a198 2019-08-07 stsp stage this change? [y/n/q] n
1661 dc424a06 2019-08-07 stsp -----------------------------------------------
1662 dc424a06 2019-08-07 stsp @@ -13,4 +13,4 @@
1663 dc424a06 2019-08-07 stsp 13
1664 dc424a06 2019-08-07 stsp 14
1665 dc424a06 2019-08-07 stsp 15
1666 dc424a06 2019-08-07 stsp -16
1667 dc424a06 2019-08-07 stsp +c
1668 dc424a06 2019-08-07 stsp -----------------------------------------------
1669 a7c9878d 2019-08-08 stsp M numbers (change 3 of 3)
1670 b353a198 2019-08-07 stsp stage this change? [y/n/q] y
1671 dc424a06 2019-08-07 stsp EOF
1672 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1673 dc424a06 2019-08-07 stsp ret="$?"
1674 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1675 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1676 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1677 dc424a06 2019-08-07 stsp return 1
1678 dc424a06 2019-08-07 stsp fi
1679 dc424a06 2019-08-07 stsp
1680 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1681 dc424a06 2019-08-07 stsp echo "MM numbers" > $testroot/stdout.expected
1682 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1683 dc424a06 2019-08-07 stsp ret="$?"
1684 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1685 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1686 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1687 dc424a06 2019-08-07 stsp return 1
1688 dc424a06 2019-08-07 stsp fi
1689 dc424a06 2019-08-07 stsp
1690 dc424a06 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
1691 dc424a06 2019-08-07 stsp
1692 dc424a06 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
1693 dc424a06 2019-08-07 stsp > $testroot/stdout.expected
1694 dc424a06 2019-08-07 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1695 dc424a06 2019-08-07 stsp got tree -r $testroot/repo -i -c $commit_id \
1696 dc424a06 2019-08-07 stsp | grep 'numbers$' | cut -d' ' -f 1 \
1697 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
1698 dc424a06 2019-08-07 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1699 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 \
1700 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
1701 dc424a06 2019-08-07 stsp echo "--- numbers" >> $testroot/stdout.expected
1702 dc424a06 2019-08-07 stsp echo "+++ numbers" >> $testroot/stdout.expected
1703 dc424a06 2019-08-07 stsp echo "@@ -13,4 +13,4 @@" >> $testroot/stdout.expected
1704 dc424a06 2019-08-07 stsp echo " 13" >> $testroot/stdout.expected
1705 dc424a06 2019-08-07 stsp echo " 14" >> $testroot/stdout.expected
1706 dc424a06 2019-08-07 stsp echo " 15" >> $testroot/stdout.expected
1707 dc424a06 2019-08-07 stsp echo "-16" >> $testroot/stdout.expected
1708 dc424a06 2019-08-07 stsp echo "+c" >> $testroot/stdout.expected
1709 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1710 af5a81b2 2019-08-08 stsp ret="$?"
1711 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1712 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1713 af5a81b2 2019-08-08 stsp fi
1714 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1715 af5a81b2 2019-08-08 stsp }
1716 af5a81b2 2019-08-08 stsp
1717 f6cae3ed 2020-09-13 naddy test_stage_patch_twice() {
1718 af5a81b2 2019-08-08 stsp local testroot=`test_init stage_patch_twice`
1719 af5a81b2 2019-08-08 stsp
1720 af5a81b2 2019-08-08 stsp jot 16 > $testroot/repo/numbers
1721 af5a81b2 2019-08-08 stsp (cd $testroot/repo && git add numbers)
1722 af5a81b2 2019-08-08 stsp git_commit $testroot/repo -m "added numbers file"
1723 af5a81b2 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
1724 af5a81b2 2019-08-08 stsp
1725 af5a81b2 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1726 af5a81b2 2019-08-08 stsp ret="$?"
1727 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1728 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1729 af5a81b2 2019-08-08 stsp return 1
1730 af5a81b2 2019-08-08 stsp fi
1731 af5a81b2 2019-08-08 stsp
1732 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
1733 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
1734 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
1735 af5a81b2 2019-08-08 stsp
1736 af5a81b2 2019-08-08 stsp # stage middle hunk
1737 af5a81b2 2019-08-08 stsp printf "n\ny\nn\n" > $testroot/patchscript
1738 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1739 af5a81b2 2019-08-08 stsp numbers > $testroot/stdout)
1740 af5a81b2 2019-08-08 stsp
1741 af5a81b2 2019-08-08 stsp cat > $testroot/stdout.expected <<EOF
1742 af5a81b2 2019-08-08 stsp -----------------------------------------------
1743 af5a81b2 2019-08-08 stsp @@ -1,5 +1,5 @@
1744 af5a81b2 2019-08-08 stsp 1
1745 af5a81b2 2019-08-08 stsp -2
1746 af5a81b2 2019-08-08 stsp +a
1747 af5a81b2 2019-08-08 stsp 3
1748 af5a81b2 2019-08-08 stsp 4
1749 af5a81b2 2019-08-08 stsp 5
1750 af5a81b2 2019-08-08 stsp -----------------------------------------------
1751 af5a81b2 2019-08-08 stsp M numbers (change 1 of 3)
1752 af5a81b2 2019-08-08 stsp stage this change? [y/n/q] n
1753 af5a81b2 2019-08-08 stsp -----------------------------------------------
1754 af5a81b2 2019-08-08 stsp @@ -4,7 +4,7 @@
1755 af5a81b2 2019-08-08 stsp 4
1756 af5a81b2 2019-08-08 stsp 5
1757 af5a81b2 2019-08-08 stsp 6
1758 af5a81b2 2019-08-08 stsp -7
1759 af5a81b2 2019-08-08 stsp +b
1760 af5a81b2 2019-08-08 stsp 8
1761 af5a81b2 2019-08-08 stsp 9
1762 af5a81b2 2019-08-08 stsp 10
1763 af5a81b2 2019-08-08 stsp -----------------------------------------------
1764 af5a81b2 2019-08-08 stsp M numbers (change 2 of 3)
1765 af5a81b2 2019-08-08 stsp stage this change? [y/n/q] y
1766 af5a81b2 2019-08-08 stsp -----------------------------------------------
1767 af5a81b2 2019-08-08 stsp @@ -13,4 +13,4 @@
1768 af5a81b2 2019-08-08 stsp 13
1769 af5a81b2 2019-08-08 stsp 14
1770 af5a81b2 2019-08-08 stsp 15
1771 af5a81b2 2019-08-08 stsp -16
1772 af5a81b2 2019-08-08 stsp +c
1773 af5a81b2 2019-08-08 stsp -----------------------------------------------
1774 af5a81b2 2019-08-08 stsp M numbers (change 3 of 3)
1775 af5a81b2 2019-08-08 stsp stage this change? [y/n/q] n
1776 af5a81b2 2019-08-08 stsp EOF
1777 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1778 af5a81b2 2019-08-08 stsp ret="$?"
1779 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1780 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1781 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1782 af5a81b2 2019-08-08 stsp return 1
1783 af5a81b2 2019-08-08 stsp fi
1784 af5a81b2 2019-08-08 stsp
1785 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
1786 af5a81b2 2019-08-08 stsp echo "MM numbers" > $testroot/stdout.expected
1787 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1788 af5a81b2 2019-08-08 stsp ret="$?"
1789 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1790 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1791 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1792 af5a81b2 2019-08-08 stsp return 1
1793 af5a81b2 2019-08-08 stsp fi
1794 af5a81b2 2019-08-08 stsp
1795 af5a81b2 2019-08-08 stsp # stage last hunk
1796 af5a81b2 2019-08-08 stsp printf "n\ny\n" > $testroot/patchscript
1797 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1798 af5a81b2 2019-08-08 stsp numbers > $testroot/stdout)
1799 af5a81b2 2019-08-08 stsp
1800 af5a81b2 2019-08-08 stsp cat > $testroot/stdout.expected <<EOF
1801 af5a81b2 2019-08-08 stsp -----------------------------------------------
1802 fe621944 2020-11-10 stsp @@ -1,5 +1,5 @@
1803 af5a81b2 2019-08-08 stsp 1
1804 af5a81b2 2019-08-08 stsp -2
1805 af5a81b2 2019-08-08 stsp +a
1806 af5a81b2 2019-08-08 stsp 3
1807 af5a81b2 2019-08-08 stsp 4
1808 af5a81b2 2019-08-08 stsp 5
1809 af5a81b2 2019-08-08 stsp -----------------------------------------------
1810 af5a81b2 2019-08-08 stsp M numbers (change 1 of 2)
1811 af5a81b2 2019-08-08 stsp stage this change? [y/n/q] n
1812 af5a81b2 2019-08-08 stsp -----------------------------------------------
1813 af5a81b2 2019-08-08 stsp @@ -13,4 +13,4 @@ b
1814 af5a81b2 2019-08-08 stsp 13
1815 af5a81b2 2019-08-08 stsp 14
1816 af5a81b2 2019-08-08 stsp 15
1817 af5a81b2 2019-08-08 stsp -16
1818 af5a81b2 2019-08-08 stsp +c
1819 af5a81b2 2019-08-08 stsp -----------------------------------------------
1820 af5a81b2 2019-08-08 stsp M numbers (change 2 of 2)
1821 af5a81b2 2019-08-08 stsp stage this change? [y/n/q] y
1822 af5a81b2 2019-08-08 stsp EOF
1823 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1824 af5a81b2 2019-08-08 stsp ret="$?"
1825 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1826 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1827 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1828 af5a81b2 2019-08-08 stsp return 1
1829 af5a81b2 2019-08-08 stsp fi
1830 af5a81b2 2019-08-08 stsp
1831 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
1832 af5a81b2 2019-08-08 stsp echo "MM numbers" > $testroot/stdout.expected
1833 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1834 af5a81b2 2019-08-08 stsp ret="$?"
1835 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1836 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1837 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1838 af5a81b2 2019-08-08 stsp return 1
1839 af5a81b2 2019-08-08 stsp fi
1840 af5a81b2 2019-08-08 stsp
1841 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
1842 af5a81b2 2019-08-08 stsp
1843 af5a81b2 2019-08-08 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
1844 af5a81b2 2019-08-08 stsp > $testroot/stdout.expected
1845 af5a81b2 2019-08-08 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1846 af5a81b2 2019-08-08 stsp got tree -r $testroot/repo -i -c $commit_id \
1847 af5a81b2 2019-08-08 stsp | grep 'numbers$' | cut -d' ' -f 1 \
1848 af5a81b2 2019-08-08 stsp >> $testroot/stdout.expected
1849 af5a81b2 2019-08-08 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1850 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 \
1851 af5a81b2 2019-08-08 stsp >> $testroot/stdout.expected
1852 af5a81b2 2019-08-08 stsp echo "--- numbers" >> $testroot/stdout.expected
1853 af5a81b2 2019-08-08 stsp echo "+++ numbers" >> $testroot/stdout.expected
1854 af5a81b2 2019-08-08 stsp cat >> $testroot/stdout.expected <<EOF
1855 af5a81b2 2019-08-08 stsp @@ -4,7 +4,7 @@
1856 af5a81b2 2019-08-08 stsp 4
1857 af5a81b2 2019-08-08 stsp 5
1858 af5a81b2 2019-08-08 stsp 6
1859 af5a81b2 2019-08-08 stsp -7
1860 af5a81b2 2019-08-08 stsp +b
1861 af5a81b2 2019-08-08 stsp 8
1862 af5a81b2 2019-08-08 stsp 9
1863 af5a81b2 2019-08-08 stsp 10
1864 af5a81b2 2019-08-08 stsp @@ -13,4 +13,4 @@
1865 af5a81b2 2019-08-08 stsp 13
1866 af5a81b2 2019-08-08 stsp 14
1867 af5a81b2 2019-08-08 stsp 15
1868 af5a81b2 2019-08-08 stsp -16
1869 af5a81b2 2019-08-08 stsp +c
1870 af5a81b2 2019-08-08 stsp EOF
1871 af5a81b2 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1872 af5a81b2 2019-08-08 stsp ret="$?"
1873 af5a81b2 2019-08-08 stsp if [ "$ret" != "0" ]; then
1874 af5a81b2 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1875 af5a81b2 2019-08-08 stsp test_done "$testroot" "$ret"
1876 af5a81b2 2019-08-08 stsp return 1
1877 af5a81b2 2019-08-08 stsp fi
1878 af5a81b2 2019-08-08 stsp
1879 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got diff > $testroot/stdout)
1880 af5a81b2 2019-08-08 stsp
1881 af5a81b2 2019-08-08 stsp echo "diff $commit_id $testroot/wt" > $testroot/stdout.expected
1882 af5a81b2 2019-08-08 stsp echo -n 'blob - ' >> $testroot/stdout.expected
1883 af5a81b2 2019-08-08 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 | \
1884 af5a81b2 2019-08-08 stsp tr -d '\n' >> $testroot/stdout.expected
1885 af5a81b2 2019-08-08 stsp echo " (staged)" >> $testroot/stdout.expected
1886 af5a81b2 2019-08-08 stsp echo 'file + numbers' >> $testroot/stdout.expected
1887 af5a81b2 2019-08-08 stsp echo "--- numbers" >> $testroot/stdout.expected
1888 af5a81b2 2019-08-08 stsp echo "+++ numbers" >> $testroot/stdout.expected
1889 af5a81b2 2019-08-08 stsp cat >> $testroot/stdout.expected <<EOF
1890 af5a81b2 2019-08-08 stsp @@ -1,5 +1,5 @@
1891 af5a81b2 2019-08-08 stsp 1
1892 af5a81b2 2019-08-08 stsp -2
1893 af5a81b2 2019-08-08 stsp +a
1894 af5a81b2 2019-08-08 stsp 3
1895 af5a81b2 2019-08-08 stsp 4
1896 af5a81b2 2019-08-08 stsp 5
1897 af5a81b2 2019-08-08 stsp EOF
1898 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1899 dc424a06 2019-08-07 stsp ret="$?"
1900 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1901 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1902 dc424a06 2019-08-07 stsp fi
1903 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1904 dc424a06 2019-08-07 stsp }
1905 dc424a06 2019-08-07 stsp
1906 f6cae3ed 2020-09-13 naddy test_stage_patch_added() {
1907 dc424a06 2019-08-07 stsp local testroot=`test_init stage_patch_added`
1908 dc424a06 2019-08-07 stsp local commit_id=`git_show_head $testroot/repo`
1909 dc424a06 2019-08-07 stsp
1910 dc424a06 2019-08-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1911 dc424a06 2019-08-07 stsp ret="$?"
1912 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1913 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1914 dc424a06 2019-08-07 stsp return 1
1915 dc424a06 2019-08-07 stsp fi
1916 dc424a06 2019-08-07 stsp
1917 dc424a06 2019-08-07 stsp echo "new" > $testroot/wt/epsilon/new
1918 dc424a06 2019-08-07 stsp (cd $testroot/wt && got add epsilon/new > /dev/null)
1919 dc424a06 2019-08-07 stsp
1920 dc424a06 2019-08-07 stsp printf "y\n" > $testroot/patchscript
1921 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1922 dc424a06 2019-08-07 stsp epsilon/new > $testroot/stdout)
1923 dc424a06 2019-08-07 stsp
1924 dc424a06 2019-08-07 stsp echo "A epsilon/new" > $testroot/stdout.expected
1925 c8ede203 2019-08-08 stsp echo "stage this addition? [y/n] y" >> $testroot/stdout.expected
1926 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1927 dc424a06 2019-08-07 stsp ret="$?"
1928 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1929 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1930 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1931 dc424a06 2019-08-07 stsp return 1
1932 dc424a06 2019-08-07 stsp fi
1933 dc424a06 2019-08-07 stsp
1934 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
1935 dc424a06 2019-08-07 stsp echo " A epsilon/new" > $testroot/stdout.expected
1936 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1937 dc424a06 2019-08-07 stsp ret="$?"
1938 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1939 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1940 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
1941 dc424a06 2019-08-07 stsp return 1
1942 dc424a06 2019-08-07 stsp fi
1943 dc424a06 2019-08-07 stsp
1944 dc424a06 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
1945 dc424a06 2019-08-07 stsp
1946 dc424a06 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
1947 dc424a06 2019-08-07 stsp > $testroot/stdout.expected
1948 dc424a06 2019-08-07 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
1949 dc424a06 2019-08-07 stsp echo -n 'blob + ' >> $testroot/stdout.expected
1950 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -l epsilon/new) | cut -d' ' -f 1 \
1951 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
1952 dc424a06 2019-08-07 stsp echo "--- /dev/null" >> $testroot/stdout.expected
1953 dc424a06 2019-08-07 stsp echo "+++ epsilon/new" >> $testroot/stdout.expected
1954 dc424a06 2019-08-07 stsp echo "@@ -0,0 +1 @@" >> $testroot/stdout.expected
1955 dc424a06 2019-08-07 stsp echo "+new" >> $testroot/stdout.expected
1956 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1957 e70a841e 2019-08-08 stsp ret="$?"
1958 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
1959 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1960 e70a841e 2019-08-08 stsp fi
1961 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
1962 e70a841e 2019-08-08 stsp }
1963 e70a841e 2019-08-08 stsp
1964 f6cae3ed 2020-09-13 naddy test_stage_patch_added_twice() {
1965 e70a841e 2019-08-08 stsp local testroot=`test_init stage_patch_added_twice`
1966 e70a841e 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
1967 e70a841e 2019-08-08 stsp
1968 e70a841e 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1969 e70a841e 2019-08-08 stsp ret="$?"
1970 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
1971 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
1972 e70a841e 2019-08-08 stsp return 1
1973 e70a841e 2019-08-08 stsp fi
1974 e70a841e 2019-08-08 stsp
1975 e70a841e 2019-08-08 stsp echo "new" > $testroot/wt/epsilon/new
1976 e70a841e 2019-08-08 stsp (cd $testroot/wt && got add epsilon/new > /dev/null)
1977 e70a841e 2019-08-08 stsp
1978 e70a841e 2019-08-08 stsp printf "y\n" > $testroot/patchscript
1979 e70a841e 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
1980 e70a841e 2019-08-08 stsp epsilon/new > $testroot/stdout)
1981 e70a841e 2019-08-08 stsp
1982 e70a841e 2019-08-08 stsp echo "A epsilon/new" > $testroot/stdout.expected
1983 e70a841e 2019-08-08 stsp echo "stage this addition? [y/n] y" >> $testroot/stdout.expected
1984 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1985 e70a841e 2019-08-08 stsp ret="$?"
1986 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
1987 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
1988 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
1989 e70a841e 2019-08-08 stsp return 1
1990 e70a841e 2019-08-08 stsp fi
1991 e70a841e 2019-08-08 stsp
1992 e70a841e 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
1993 e70a841e 2019-08-08 stsp echo " A epsilon/new" > $testroot/stdout.expected
1994 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1995 dc424a06 2019-08-07 stsp ret="$?"
1996 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
1997 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
1998 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
1999 e70a841e 2019-08-08 stsp return 1
2000 dc424a06 2019-08-07 stsp fi
2001 e70a841e 2019-08-08 stsp
2002 e70a841e 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2003 e70a841e 2019-08-08 stsp epsilon/new > $testroot/stdout 2> $testroot/stderr)
2004 e70a841e 2019-08-08 stsp ret="$?"
2005 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
2006 e70a841e 2019-08-08 stsp echo "got stage command succeeded unexpectedly" >&2
2007 e70a841e 2019-08-08 stsp test_done "$testroot" "1"
2008 e70a841e 2019-08-08 stsp return 1
2009 e70a841e 2019-08-08 stsp fi
2010 e70a841e 2019-08-08 stsp
2011 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
2012 e70a841e 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2013 e70a841e 2019-08-08 stsp ret="$?"
2014 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2015 e70a841e 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
2016 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2017 e70a841e 2019-08-08 stsp return 1
2018 e70a841e 2019-08-08 stsp fi
2019 e70a841e 2019-08-08 stsp
2020 e70a841e 2019-08-08 stsp echo -n > $testroot/stdout.expected
2021 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2022 e70a841e 2019-08-08 stsp ret="$?"
2023 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2024 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2025 e70a841e 2019-08-08 stsp fi
2026 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
2027 dc424a06 2019-08-07 stsp }
2028 dc424a06 2019-08-07 stsp
2029 f6cae3ed 2020-09-13 naddy test_stage_patch_removed() {
2030 dc424a06 2019-08-07 stsp local testroot=`test_init stage_patch_removed`
2031 dc424a06 2019-08-07 stsp local commit_id=`git_show_head $testroot/repo`
2032 dc424a06 2019-08-07 stsp
2033 dc424a06 2019-08-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2034 dc424a06 2019-08-07 stsp ret="$?"
2035 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
2036 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
2037 dc424a06 2019-08-07 stsp return 1
2038 dc424a06 2019-08-07 stsp fi
2039 dc424a06 2019-08-07 stsp
2040 dc424a06 2019-08-07 stsp (cd $testroot/wt && got rm beta > /dev/null)
2041 dc424a06 2019-08-07 stsp
2042 dc424a06 2019-08-07 stsp printf "y\n" > $testroot/patchscript
2043 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2044 dc424a06 2019-08-07 stsp beta > $testroot/stdout)
2045 dc424a06 2019-08-07 stsp
2046 dc424a06 2019-08-07 stsp echo -n > $testroot/stdout.expected
2047 dc424a06 2019-08-07 stsp
2048 dc424a06 2019-08-07 stsp echo "D beta" > $testroot/stdout.expected
2049 f5a17245 2019-08-08 stsp echo "stage this deletion? [y/n] y" >> $testroot/stdout.expected
2050 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2051 dc424a06 2019-08-07 stsp ret="$?"
2052 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
2053 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2054 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
2055 dc424a06 2019-08-07 stsp return 1
2056 dc424a06 2019-08-07 stsp fi
2057 dc424a06 2019-08-07 stsp
2058 dc424a06 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
2059 dc424a06 2019-08-07 stsp echo " D beta" > $testroot/stdout.expected
2060 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2061 dc424a06 2019-08-07 stsp ret="$?"
2062 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
2063 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2064 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
2065 dc424a06 2019-08-07 stsp return 1
2066 dc424a06 2019-08-07 stsp fi
2067 dc424a06 2019-08-07 stsp
2068 dc424a06 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2069 dc424a06 2019-08-07 stsp
2070 dc424a06 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
2071 dc424a06 2019-08-07 stsp > $testroot/stdout.expected
2072 dc424a06 2019-08-07 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2073 dc424a06 2019-08-07 stsp (cd $testroot/wt && got stage -l beta) | cut -d' ' -f 1 \
2074 dc424a06 2019-08-07 stsp >> $testroot/stdout.expected
2075 dc424a06 2019-08-07 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
2076 dc424a06 2019-08-07 stsp echo "--- beta" >> $testroot/stdout.expected
2077 dc424a06 2019-08-07 stsp echo "+++ /dev/null" >> $testroot/stdout.expected
2078 dc424a06 2019-08-07 stsp echo "@@ -1 +0,0 @@" >> $testroot/stdout.expected
2079 dc424a06 2019-08-07 stsp echo "-beta" >> $testroot/stdout.expected
2080 dc424a06 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2081 dc424a06 2019-08-07 stsp ret="$?"
2082 dc424a06 2019-08-07 stsp if [ "$ret" != "0" ]; then
2083 dc424a06 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2084 dc424a06 2019-08-07 stsp fi
2085 dc424a06 2019-08-07 stsp test_done "$testroot" "$ret"
2086 dc424a06 2019-08-07 stsp }
2087 b353a198 2019-08-07 stsp
2088 f6cae3ed 2020-09-13 naddy test_stage_patch_removed_twice() {
2089 e70a841e 2019-08-08 stsp local testroot=`test_init stage_patch_removed_twice`
2090 e70a841e 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
2091 e70a841e 2019-08-08 stsp
2092 e70a841e 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2093 e70a841e 2019-08-08 stsp ret="$?"
2094 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2095 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2096 e70a841e 2019-08-08 stsp return 1
2097 e70a841e 2019-08-08 stsp fi
2098 e70a841e 2019-08-08 stsp
2099 e70a841e 2019-08-08 stsp (cd $testroot/wt && got rm beta > /dev/null)
2100 e70a841e 2019-08-08 stsp
2101 e70a841e 2019-08-08 stsp printf "y\n" > $testroot/patchscript
2102 e70a841e 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2103 e70a841e 2019-08-08 stsp beta > $testroot/stdout)
2104 e70a841e 2019-08-08 stsp
2105 e70a841e 2019-08-08 stsp echo -n > $testroot/stdout.expected
2106 e70a841e 2019-08-08 stsp
2107 e70a841e 2019-08-08 stsp echo "D beta" > $testroot/stdout.expected
2108 e70a841e 2019-08-08 stsp echo "stage this deletion? [y/n] y" >> $testroot/stdout.expected
2109 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2110 e70a841e 2019-08-08 stsp ret="$?"
2111 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2112 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2113 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2114 e70a841e 2019-08-08 stsp return 1
2115 e70a841e 2019-08-08 stsp fi
2116 e70a841e 2019-08-08 stsp
2117 e70a841e 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
2118 e70a841e 2019-08-08 stsp echo " D beta" > $testroot/stdout.expected
2119 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2120 e70a841e 2019-08-08 stsp ret="$?"
2121 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2122 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2123 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2124 e70a841e 2019-08-08 stsp return 1
2125 e70a841e 2019-08-08 stsp fi
2126 e70a841e 2019-08-08 stsp
2127 e70a841e 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p beta \
2128 e70a841e 2019-08-08 stsp > $testroot/stdout 2> $testroot/stderr)
2129 e70a841e 2019-08-08 stsp ret="$?"
2130 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
2131 7b5dc508 2019-10-28 stsp echo "got stage command succeeded unexpectedly" >&2
2132 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2133 e70a841e 2019-08-08 stsp return 1
2134 e70a841e 2019-08-08 stsp fi
2135 e70a841e 2019-08-08 stsp
2136 7b5dc508 2019-10-28 stsp echo "got: no changes to stage" > $testroot/stderr.expected
2137 e70a841e 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2138 e70a841e 2019-08-08 stsp ret="$?"
2139 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2140 e70a841e 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
2141 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2142 e70a841e 2019-08-08 stsp return 1
2143 e70a841e 2019-08-08 stsp fi
2144 e70a841e 2019-08-08 stsp
2145 e70a841e 2019-08-08 stsp echo -n > $testroot/stdout.expected
2146 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2147 e70a841e 2019-08-08 stsp ret="$?"
2148 e70a841e 2019-08-08 stsp if [ "$ret" != "0" ]; then
2149 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2150 e70a841e 2019-08-08 stsp fi
2151 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2152 e70a841e 2019-08-08 stsp }
2153 e70a841e 2019-08-08 stsp
2154 f6cae3ed 2020-09-13 naddy test_stage_patch_quit() {
2155 b353a198 2019-08-07 stsp local testroot=`test_init stage_patch_quit`
2156 b353a198 2019-08-07 stsp
2157 b353a198 2019-08-07 stsp jot 16 > $testroot/repo/numbers
2158 88f33a19 2019-08-08 stsp echo zzz > $testroot/repo/zzz
2159 88f33a19 2019-08-08 stsp (cd $testroot/repo && git add numbers zzz)
2160 88f33a19 2019-08-08 stsp git_commit $testroot/repo -m "added files"
2161 b353a198 2019-08-07 stsp local commit_id=`git_show_head $testroot/repo`
2162 b353a198 2019-08-07 stsp
2163 b353a198 2019-08-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2164 b353a198 2019-08-07 stsp ret="$?"
2165 b353a198 2019-08-07 stsp if [ "$ret" != "0" ]; then
2166 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2167 b353a198 2019-08-07 stsp return 1
2168 b353a198 2019-08-07 stsp fi
2169 dc424a06 2019-08-07 stsp
2170 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
2171 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
2172 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
2173 88f33a19 2019-08-08 stsp (cd $testroot/wt && got rm zzz > /dev/null)
2174 b353a198 2019-08-07 stsp
2175 88f33a19 2019-08-08 stsp # stage first hunk and quit; and don't pass a path argument to
2176 88f33a19 2019-08-08 stsp # ensure that we don't skip asking about the 'zzz' file after 'quit'
2177 88f33a19 2019-08-08 stsp printf "y\nq\nn\n" > $testroot/patchscript
2178 b353a198 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2179 2db2652d 2019-08-07 stsp > $testroot/stdout)
2180 b353a198 2019-08-07 stsp ret="$?"
2181 b353a198 2019-08-07 stsp if [ "$ret" != "0" ]; then
2182 b353a198 2019-08-07 stsp echo "got stage command failed unexpectedly" >&2
2183 b353a198 2019-08-07 stsp test_done "$testroot" "1"
2184 b353a198 2019-08-07 stsp return 1
2185 b353a198 2019-08-07 stsp fi
2186 b353a198 2019-08-07 stsp cat > $testroot/stdout.expected <<EOF
2187 b353a198 2019-08-07 stsp -----------------------------------------------
2188 b353a198 2019-08-07 stsp @@ -1,5 +1,5 @@
2189 b353a198 2019-08-07 stsp 1
2190 b353a198 2019-08-07 stsp -2
2191 b353a198 2019-08-07 stsp +a
2192 b353a198 2019-08-07 stsp 3
2193 b353a198 2019-08-07 stsp 4
2194 b353a198 2019-08-07 stsp 5
2195 b353a198 2019-08-07 stsp -----------------------------------------------
2196 a7c9878d 2019-08-08 stsp M numbers (change 1 of 3)
2197 b353a198 2019-08-07 stsp stage this change? [y/n/q] y
2198 b353a198 2019-08-07 stsp -----------------------------------------------
2199 b353a198 2019-08-07 stsp @@ -4,7 +4,7 @@
2200 b353a198 2019-08-07 stsp 4
2201 b353a198 2019-08-07 stsp 5
2202 b353a198 2019-08-07 stsp 6
2203 b353a198 2019-08-07 stsp -7
2204 b353a198 2019-08-07 stsp +b
2205 b353a198 2019-08-07 stsp 8
2206 b353a198 2019-08-07 stsp 9
2207 b353a198 2019-08-07 stsp 10
2208 b353a198 2019-08-07 stsp -----------------------------------------------
2209 a7c9878d 2019-08-08 stsp M numbers (change 2 of 3)
2210 b353a198 2019-08-07 stsp stage this change? [y/n/q] q
2211 88f33a19 2019-08-08 stsp D zzz
2212 f5a17245 2019-08-08 stsp stage this deletion? [y/n] n
2213 b353a198 2019-08-07 stsp EOF
2214 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2215 b353a198 2019-08-07 stsp ret="$?"
2216 b353a198 2019-08-07 stsp if [ "$ret" != "0" ]; then
2217 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2218 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2219 b353a198 2019-08-07 stsp return 1
2220 b353a198 2019-08-07 stsp fi
2221 b353a198 2019-08-07 stsp
2222 b353a198 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
2223 b353a198 2019-08-07 stsp echo "MM numbers" > $testroot/stdout.expected
2224 88f33a19 2019-08-08 stsp echo "D zzz" >> $testroot/stdout.expected
2225 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2226 b353a198 2019-08-07 stsp ret="$?"
2227 b353a198 2019-08-07 stsp if [ "$ret" != "0" ]; then
2228 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2229 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2230 b353a198 2019-08-07 stsp return 1
2231 b353a198 2019-08-07 stsp fi
2232 b353a198 2019-08-07 stsp
2233 b353a198 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2234 b353a198 2019-08-07 stsp
2235 b353a198 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
2236 b353a198 2019-08-07 stsp > $testroot/stdout.expected
2237 b353a198 2019-08-07 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2238 b353a198 2019-08-07 stsp got tree -r $testroot/repo -i -c $commit_id \
2239 b353a198 2019-08-07 stsp | grep 'numbers$' | cut -d' ' -f 1 \
2240 b353a198 2019-08-07 stsp >> $testroot/stdout.expected
2241 b353a198 2019-08-07 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2242 b353a198 2019-08-07 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 \
2243 b353a198 2019-08-07 stsp >> $testroot/stdout.expected
2244 b353a198 2019-08-07 stsp echo "--- numbers" >> $testroot/stdout.expected
2245 b353a198 2019-08-07 stsp echo "+++ numbers" >> $testroot/stdout.expected
2246 b353a198 2019-08-07 stsp echo "@@ -1,5 +1,5 @@" >> $testroot/stdout.expected
2247 b353a198 2019-08-07 stsp echo " 1" >> $testroot/stdout.expected
2248 b353a198 2019-08-07 stsp echo "-2" >> $testroot/stdout.expected
2249 b353a198 2019-08-07 stsp echo "+a" >> $testroot/stdout.expected
2250 b353a198 2019-08-07 stsp echo " 3" >> $testroot/stdout.expected
2251 b353a198 2019-08-07 stsp echo " 4" >> $testroot/stdout.expected
2252 b353a198 2019-08-07 stsp echo " 5" >> $testroot/stdout.expected
2253 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2254 b353a198 2019-08-07 stsp ret="$?"
2255 b353a198 2019-08-07 stsp if [ "$ret" != "0" ]; then
2256 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2257 b353a198 2019-08-07 stsp fi
2258 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2259 b353a198 2019-08-07 stsp
2260 b353a198 2019-08-07 stsp }
2261 b353a198 2019-08-07 stsp
2262 f6cae3ed 2020-09-13 naddy test_stage_patch_incomplete_script() {
2263 eba70f38 2019-08-08 stsp local testroot=`test_init stage_incomplete_script`
2264 eba70f38 2019-08-08 stsp
2265 eba70f38 2019-08-08 stsp jot 16 > $testroot/repo/numbers
2266 eba70f38 2019-08-08 stsp echo zzz > $testroot/repo/zzz
2267 eba70f38 2019-08-08 stsp (cd $testroot/repo && git add numbers zzz)
2268 eba70f38 2019-08-08 stsp git_commit $testroot/repo -m "added files"
2269 eba70f38 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
2270 eba70f38 2019-08-08 stsp
2271 eba70f38 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2272 eba70f38 2019-08-08 stsp ret="$?"
2273 eba70f38 2019-08-08 stsp if [ "$ret" != "0" ]; then
2274 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2275 eba70f38 2019-08-08 stsp return 1
2276 eba70f38 2019-08-08 stsp fi
2277 eba70f38 2019-08-08 stsp
2278 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
2279 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
2280 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
2281 eba70f38 2019-08-08 stsp
2282 eba70f38 2019-08-08 stsp # stage first hunk and then stop responding; got should error out
2283 eba70f38 2019-08-08 stsp printf "y\n" > $testroot/patchscript
2284 eba70f38 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2285 eba70f38 2019-08-08 stsp > $testroot/stdout 2> $testroot/stderr)
2286 eba70f38 2019-08-08 stsp ret="$?"
2287 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
2288 eba70f38 2019-08-08 stsp echo "got stage command succeeded unexpectedly" >&2
2289 eba70f38 2019-08-08 stsp test_done "$testroot" "1"
2290 eba70f38 2019-08-08 stsp return 1
2291 eba70f38 2019-08-08 stsp fi
2292 eba70f38 2019-08-08 stsp cat > $testroot/stdout.expected <<EOF
2293 eba70f38 2019-08-08 stsp -----------------------------------------------
2294 eba70f38 2019-08-08 stsp @@ -1,5 +1,5 @@
2295 eba70f38 2019-08-08 stsp 1
2296 eba70f38 2019-08-08 stsp -2
2297 eba70f38 2019-08-08 stsp +a
2298 eba70f38 2019-08-08 stsp 3
2299 eba70f38 2019-08-08 stsp 4
2300 eba70f38 2019-08-08 stsp 5
2301 eba70f38 2019-08-08 stsp -----------------------------------------------
2302 eba70f38 2019-08-08 stsp M numbers (change 1 of 3)
2303 eba70f38 2019-08-08 stsp stage this change? [y/n/q] y
2304 eba70f38 2019-08-08 stsp -----------------------------------------------
2305 eba70f38 2019-08-08 stsp @@ -4,7 +4,7 @@
2306 eba70f38 2019-08-08 stsp 4
2307 eba70f38 2019-08-08 stsp 5
2308 eba70f38 2019-08-08 stsp 6
2309 eba70f38 2019-08-08 stsp -7
2310 eba70f38 2019-08-08 stsp +b
2311 eba70f38 2019-08-08 stsp 8
2312 eba70f38 2019-08-08 stsp 9
2313 eba70f38 2019-08-08 stsp 10
2314 eba70f38 2019-08-08 stsp -----------------------------------------------
2315 eba70f38 2019-08-08 stsp M numbers (change 2 of 3)
2316 eba70f38 2019-08-08 stsp EOF
2317 eba70f38 2019-08-08 stsp echo -n "stage this change? [y/n/q] " >> $testroot/stdout.expected
2318 eba70f38 2019-08-08 stsp echo "got: invalid patch choice" > $testroot/stderr.expected
2319 eba70f38 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2320 eba70f38 2019-08-08 stsp ret="$?"
2321 eba70f38 2019-08-08 stsp if [ "$ret" != "0" ]; then
2322 eba70f38 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
2323 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2324 eba70f38 2019-08-08 stsp return 1
2325 eba70f38 2019-08-08 stsp fi
2326 eba70f38 2019-08-08 stsp
2327 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2328 eba70f38 2019-08-08 stsp ret="$?"
2329 eba70f38 2019-08-08 stsp if [ "$ret" != "0" ]; then
2330 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2331 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2332 eba70f38 2019-08-08 stsp return 1
2333 eba70f38 2019-08-08 stsp fi
2334 eba70f38 2019-08-08 stsp
2335 eba70f38 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
2336 eba70f38 2019-08-08 stsp echo "M numbers" > $testroot/stdout.expected
2337 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2338 eba70f38 2019-08-08 stsp ret="$?"
2339 eba70f38 2019-08-08 stsp if [ "$ret" != "0" ]; then
2340 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2341 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2342 eba70f38 2019-08-08 stsp return 1
2343 eba70f38 2019-08-08 stsp fi
2344 eba70f38 2019-08-08 stsp
2345 eba70f38 2019-08-08 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2346 eba70f38 2019-08-08 stsp echo -n > $testroot/stdout.expected
2347 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2348 eba70f38 2019-08-08 stsp ret="$?"
2349 eba70f38 2019-08-08 stsp if [ "$ret" != "0" ]; then
2350 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2351 eba70f38 2019-08-08 stsp fi
2352 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2353 c631b115 2020-07-23 stsp
2354 c631b115 2020-07-23 stsp }
2355 c631b115 2020-07-23 stsp
2356 f6cae3ed 2020-09-13 naddy test_stage_symlink() {
2357 c631b115 2020-07-23 stsp local testroot=`test_init stage_symlink`
2358 c631b115 2020-07-23 stsp
2359 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
2360 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
2361 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
2362 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
2363 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
2364 c631b115 2020-07-23 stsp (cd $testroot/repo && git add .)
2365 c631b115 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
2366 c631b115 2020-07-23 stsp local head_commit=`git_show_head $testroot/repo`
2367 c631b115 2020-07-23 stsp
2368 c631b115 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2369 c631b115 2020-07-23 stsp ret="$?"
2370 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2371 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2372 c631b115 2020-07-23 stsp return 1
2373 c631b115 2020-07-23 stsp fi
2374 c631b115 2020-07-23 stsp
2375 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
2376 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT gamma epsilon.link)
2377 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf ../gamma/delta epsilon/beta.link)
2378 c631b115 2020-07-23 stsp echo 'this is regular file foo' > $testroot/wt/dotgotfoo.link
2379 c631b115 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
2380 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf .got/bar dotgotbar.link)
2381 c631b115 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
2382 c631b115 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
2383 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta zeta.link)
2384 c631b115 2020-07-23 stsp (cd $testroot/wt && got add zeta.link > /dev/null)
2385 c631b115 2020-07-23 stsp
2386 35213c7c 2020-07-23 stsp (cd $testroot/wt && got stage > $testroot/stdout 2> $testroot/stderr)
2387 35213c7c 2020-07-23 stsp ret="$?"
2388 54c39596 2020-12-28 stsp if [ "$ret" = "0" ]; then
2389 35213c7c 2020-07-23 stsp echo "got stage succeeded unexpectedly" >&2
2390 35213c7c 2020-07-23 stsp test_done "$testroot" "$ret"
2391 35213c7c 2020-07-23 stsp return 1
2392 35213c7c 2020-07-23 stsp fi
2393 35213c7c 2020-07-23 stsp echo -n "got: $testroot/wt/dotgotbar.link: " > $testroot/stderr.expected
2394 35213c7c 2020-07-23 stsp echo "symbolic link points outside of paths under version control" \
2395 35213c7c 2020-07-23 stsp >> $testroot/stderr.expected
2396 35213c7c 2020-07-23 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2397 35213c7c 2020-07-23 stsp ret="$?"
2398 35213c7c 2020-07-23 stsp if [ "$ret" != "0" ]; then
2399 35213c7c 2020-07-23 stsp diff -u $testroot/stderr.expected $testroot/stderr
2400 35213c7c 2020-07-23 stsp test_done "$testroot" "$ret"
2401 35213c7c 2020-07-23 stsp return 1
2402 35213c7c 2020-07-23 stsp fi
2403 35213c7c 2020-07-23 stsp
2404 35213c7c 2020-07-23 stsp (cd $testroot/wt && got stage -S > $testroot/stdout)
2405 c631b115 2020-07-23 stsp
2406 c631b115 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2407 c631b115 2020-07-23 stsp M alpha.link
2408 c631b115 2020-07-23 stsp A dotgotbar.link
2409 c631b115 2020-07-23 stsp A dotgotfoo.link
2410 c631b115 2020-07-23 stsp M epsilon/beta.link
2411 c631b115 2020-07-23 stsp M epsilon.link
2412 c631b115 2020-07-23 stsp D nonexistent.link
2413 c631b115 2020-07-23 stsp A zeta.link
2414 c631b115 2020-07-23 stsp EOF
2415 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2416 c631b115 2020-07-23 stsp ret="$?"
2417 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2418 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2419 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2420 c631b115 2020-07-23 stsp return 1
2421 c631b115 2020-07-23 stsp fi
2422 0aeb8099 2020-07-23 stsp
2423 0aeb8099 2020-07-23 stsp rm $testroot/wt/alpha.link
2424 0aeb8099 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/wt/alpha.link
2425 c631b115 2020-07-23 stsp
2426 c631b115 2020-07-23 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2427 c631b115 2020-07-23 stsp
2428 c631b115 2020-07-23 stsp echo "diff $head_commit $testroot/wt (staged changes)" \
2429 c631b115 2020-07-23 stsp > $testroot/stdout.expected
2430 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2431 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'alpha.link@ -> alpha$' | \
2432 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2433 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2434 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l alpha.link) | cut -d' ' -f 1 \
2435 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2436 c631b115 2020-07-23 stsp echo '--- alpha.link' >> $testroot/stdout.expected
2437 c631b115 2020-07-23 stsp echo '+++ alpha.link' >> $testroot/stdout.expected
2438 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2439 c631b115 2020-07-23 stsp echo '-alpha' >> $testroot/stdout.expected
2440 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2441 c631b115 2020-07-23 stsp echo '+beta' >> $testroot/stdout.expected
2442 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2443 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2444 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2445 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotbar.link) | cut -d' ' -f 1 \
2446 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2447 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2448 c631b115 2020-07-23 stsp echo '+++ dotgotbar.link' >> $testroot/stdout.expected
2449 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2450 c631b115 2020-07-23 stsp echo '+.got/bar' >> $testroot/stdout.expected
2451 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2452 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2453 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2454 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotfoo.link) | cut -d' ' -f 1 \
2455 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2456 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2457 c631b115 2020-07-23 stsp echo '+++ dotgotfoo.link' >> $testroot/stdout.expected
2458 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2459 c631b115 2020-07-23 stsp echo '+this is regular file foo' >> $testroot/stdout.expected
2460 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2461 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i epsilon | grep 'beta.link@ -> ../beta$' | \
2462 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2463 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2464 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon/beta.link) | cut -d' ' -f 1 \
2465 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2466 c631b115 2020-07-23 stsp echo '--- epsilon/beta.link' >> $testroot/stdout.expected
2467 c631b115 2020-07-23 stsp echo '+++ epsilon/beta.link' >> $testroot/stdout.expected
2468 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2469 c631b115 2020-07-23 stsp echo '-../beta' >> $testroot/stdout.expected
2470 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2471 c631b115 2020-07-23 stsp echo '+../gamma/delta' >> $testroot/stdout.expected
2472 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2473 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2474 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'epsilon.link@ -> epsilon$' | \
2475 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2476 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2477 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon.link) | cut -d' ' -f 1 \
2478 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2479 c631b115 2020-07-23 stsp echo '--- epsilon.link' >> $testroot/stdout.expected
2480 c631b115 2020-07-23 stsp echo '+++ epsilon.link' >> $testroot/stdout.expected
2481 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2482 c631b115 2020-07-23 stsp echo '-epsilon' >> $testroot/stdout.expected
2483 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2484 c631b115 2020-07-23 stsp echo '+gamma' >> $testroot/stdout.expected
2485 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2486 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2487 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'nonexistent.link@ -> nonexistent$' | \
2488 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2489 c631b115 2020-07-23 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
2490 c631b115 2020-07-23 stsp echo '--- nonexistent.link' >> $testroot/stdout.expected
2491 c631b115 2020-07-23 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
2492 c631b115 2020-07-23 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
2493 c631b115 2020-07-23 stsp echo '-nonexistent' >> $testroot/stdout.expected
2494 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2495 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2496 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2497 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l zeta.link) | cut -d' ' -f 1 \
2498 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2499 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2500 c631b115 2020-07-23 stsp echo '+++ zeta.link' >> $testroot/stdout.expected
2501 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2502 c631b115 2020-07-23 stsp echo '+gamma/delta' >> $testroot/stdout.expected
2503 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2504 c631b115 2020-07-23 stsp
2505 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2506 c631b115 2020-07-23 stsp ret="$?"
2507 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2508 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2509 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2510 c631b115 2020-07-23 stsp return 1
2511 c631b115 2020-07-23 stsp fi
2512 c631b115 2020-07-23 stsp
2513 c631b115 2020-07-23 stsp (cd $testroot/wt && got commit -m "staged symlink" \
2514 c631b115 2020-07-23 stsp > $testroot/stdout)
2515 c631b115 2020-07-23 stsp ret="$?"
2516 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2517 c631b115 2020-07-23 stsp echo "got commit command failed unexpectedly" >&2
2518 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2519 c631b115 2020-07-23 stsp return 1
2520 c631b115 2020-07-23 stsp fi
2521 eba70f38 2019-08-08 stsp
2522 c631b115 2020-07-23 stsp local commit_id=`git_show_head $testroot/repo`
2523 c631b115 2020-07-23 stsp echo "A dotgotbar.link" > $testroot/stdout.expected
2524 c631b115 2020-07-23 stsp echo "A dotgotfoo.link" >> $testroot/stdout.expected
2525 c631b115 2020-07-23 stsp echo "A zeta.link" >> $testroot/stdout.expected
2526 c631b115 2020-07-23 stsp echo "M alpha.link" >> $testroot/stdout.expected
2527 c631b115 2020-07-23 stsp echo "M epsilon/beta.link" >> $testroot/stdout.expected
2528 c631b115 2020-07-23 stsp echo "M epsilon.link" >> $testroot/stdout.expected
2529 c631b115 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
2530 c631b115 2020-07-23 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
2531 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2532 c631b115 2020-07-23 stsp ret="$?"
2533 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2534 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2535 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2536 c631b115 2020-07-23 stsp return 1
2537 c631b115 2020-07-23 stsp fi
2538 c631b115 2020-07-23 stsp
2539 c631b115 2020-07-23 stsp got tree -r $testroot/repo -c $commit_id > $testroot/stdout
2540 c631b115 2020-07-23 stsp ret="$?"
2541 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2542 c631b115 2020-07-23 stsp echo "got tree command failed unexpectedly" >&2
2543 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2544 c631b115 2020-07-23 stsp return 1
2545 c631b115 2020-07-23 stsp fi
2546 c631b115 2020-07-23 stsp
2547 c631b115 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2548 c631b115 2020-07-23 stsp alpha
2549 c631b115 2020-07-23 stsp alpha.link@ -> beta
2550 c631b115 2020-07-23 stsp beta
2551 c631b115 2020-07-23 stsp dotgotbar.link@ -> .got/bar
2552 c631b115 2020-07-23 stsp dotgotfoo.link
2553 c631b115 2020-07-23 stsp epsilon/
2554 c631b115 2020-07-23 stsp epsilon.link@ -> gamma
2555 c631b115 2020-07-23 stsp gamma/
2556 c631b115 2020-07-23 stsp passwd.link@ -> /etc/passwd
2557 c631b115 2020-07-23 stsp zeta.link@ -> gamma/delta
2558 c631b115 2020-07-23 stsp EOF
2559 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2560 c631b115 2020-07-23 stsp ret="$?"
2561 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2562 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2563 c631b115 2020-07-23 stsp return 1
2564 c631b115 2020-07-23 stsp fi
2565 c631b115 2020-07-23 stsp
2566 0aeb8099 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
2567 0aeb8099 2020-07-23 stsp echo "alpha.link is a symlink"
2568 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2569 c631b115 2020-07-23 stsp return 1
2570 c631b115 2020-07-23 stsp fi
2571 c631b115 2020-07-23 stsp
2572 0aeb8099 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/content.expected
2573 0aeb8099 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
2574 0aeb8099 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2575 c631b115 2020-07-23 stsp ret="$?"
2576 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2577 0aeb8099 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2578 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2579 c631b115 2020-07-23 stsp return 1
2580 c631b115 2020-07-23 stsp fi
2581 c631b115 2020-07-23 stsp
2582 75f0a0fb 2020-07-23 stsp if [ ! -h $testroot/wt/dotgotbar.link ]; then
2583 75f0a0fb 2020-07-23 stsp echo "dotgotbar.link is not a symlink"
2584 75f0a0fb 2020-07-23 stsp test_done "$testroot" "1"
2585 75f0a0fb 2020-07-23 stsp return 1
2586 75f0a0fb 2020-07-23 stsp fi
2587 75f0a0fb 2020-07-23 stsp (cd $testroot/wt && got update > /dev/null)
2588 c631b115 2020-07-23 stsp if [ -h $testroot/wt/dotgotbar.link ]; then
2589 c631b115 2020-07-23 stsp echo "dotgotbar.link is a symlink"
2590 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2591 c631b115 2020-07-23 stsp return 1
2592 c631b115 2020-07-23 stsp fi
2593 0aeb8099 2020-07-23 stsp echo -n ".got/bar" > $testroot/content.expected
2594 c631b115 2020-07-23 stsp cp $testroot/wt/dotgotbar.link $testroot/content
2595 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2596 fa3cef63 2020-07-23 stsp ret="$?"
2597 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2598 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2599 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2600 fa3cef63 2020-07-23 stsp return 1
2601 fa3cef63 2020-07-23 stsp fi
2602 fa3cef63 2020-07-23 stsp
2603 fa3cef63 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
2604 fa3cef63 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
2605 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2606 fa3cef63 2020-07-23 stsp return 1
2607 fa3cef63 2020-07-23 stsp fi
2608 fa3cef63 2020-07-23 stsp echo "this is regular file foo" > $testroot/content.expected
2609 fa3cef63 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
2610 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2611 fa3cef63 2020-07-23 stsp ret="$?"
2612 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2613 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2614 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2615 fa3cef63 2020-07-23 stsp return 1
2616 fa3cef63 2020-07-23 stsp fi
2617 fa3cef63 2020-07-23 stsp
2618 fa3cef63 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
2619 fa3cef63 2020-07-23 stsp echo "epsilon.link is not a symlink"
2620 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2621 fa3cef63 2020-07-23 stsp return 1
2622 fa3cef63 2020-07-23 stsp fi
2623 fa3cef63 2020-07-23 stsp
2624 fa3cef63 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
2625 fa3cef63 2020-07-23 stsp echo "gamma" > $testroot/stdout.expected
2626 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2627 fa3cef63 2020-07-23 stsp ret="$?"
2628 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2629 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2630 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2631 fa3cef63 2020-07-23 stsp return 1
2632 fa3cef63 2020-07-23 stsp fi
2633 fa3cef63 2020-07-23 stsp
2634 fa3cef63 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
2635 fa3cef63 2020-07-23 stsp echo "passwd.link is a symlink"
2636 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2637 fa3cef63 2020-07-23 stsp return 1
2638 fa3cef63 2020-07-23 stsp fi
2639 fa3cef63 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
2640 fa3cef63 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
2641 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2642 fa3cef63 2020-07-23 stsp ret="$?"
2643 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2644 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2645 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2646 fa3cef63 2020-07-23 stsp return 1
2647 fa3cef63 2020-07-23 stsp fi
2648 fa3cef63 2020-07-23 stsp
2649 fa3cef63 2020-07-23 stsp if ! [ -h $testroot/wt/zeta.link ]; then
2650 fa3cef63 2020-07-23 stsp echo "zeta.link is not a symlink"
2651 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2652 fa3cef63 2020-07-23 stsp return 1
2653 fa3cef63 2020-07-23 stsp fi
2654 fa3cef63 2020-07-23 stsp
2655 fa3cef63 2020-07-23 stsp readlink $testroot/wt/zeta.link > $testroot/stdout
2656 fa3cef63 2020-07-23 stsp echo "gamma/delta" > $testroot/stdout.expected
2657 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2658 fa3cef63 2020-07-23 stsp ret="$?"
2659 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2660 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2661 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2662 fa3cef63 2020-07-23 stsp return 1
2663 fa3cef63 2020-07-23 stsp fi
2664 fa3cef63 2020-07-23 stsp
2665 fa3cef63 2020-07-23 stsp test_done "$testroot" "0"
2666 fa3cef63 2020-07-23 stsp }
2667 fa3cef63 2020-07-23 stsp
2668 f6cae3ed 2020-09-13 naddy test_stage_patch_symlink() {
2669 fa3cef63 2020-07-23 stsp local testroot=`test_init stage_patch_symlink`
2670 fa3cef63 2020-07-23 stsp
2671 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
2672 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
2673 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
2674 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
2675 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
2676 fa3cef63 2020-07-23 stsp (cd $testroot/repo && git add .)
2677 fa3cef63 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
2678 fa3cef63 2020-07-23 stsp local head_commit=`git_show_head $testroot/repo`
2679 fa3cef63 2020-07-23 stsp
2680 fa3cef63 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2681 fa3cef63 2020-07-23 stsp ret="$?"
2682 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2683 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2684 fa3cef63 2020-07-23 stsp return 1
2685 fa3cef63 2020-07-23 stsp fi
2686 fa3cef63 2020-07-23 stsp
2687 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
2688 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT gamma epsilon.link)
2689 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf ../gamma/delta epsilon/beta.link)
2690 fa3cef63 2020-07-23 stsp echo 'this is regular file foo' > $testroot/wt/dotgotfoo.link
2691 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
2692 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf .got/bar dotgotbar.link)
2693 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
2694 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
2695 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta zeta.link)
2696 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add zeta.link > /dev/null)
2697 fa3cef63 2020-07-23 stsp
2698 fa3cef63 2020-07-23 stsp printf "y\nn\ny\nn\ny\ny\ny" > $testroot/patchscript
2699 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2700 fa3cef63 2020-07-23 stsp > $testroot/stdout)
2701 fa3cef63 2020-07-23 stsp
2702 fa3cef63 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2703 fa3cef63 2020-07-23 stsp -----------------------------------------------
2704 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2705 fa3cef63 2020-07-23 stsp -alpha
2706 fa3cef63 2020-07-23 stsp \ No newline at end of file
2707 fa3cef63 2020-07-23 stsp +beta
2708 fa3cef63 2020-07-23 stsp \ No newline at end of file
2709 fa3cef63 2020-07-23 stsp -----------------------------------------------
2710 fa3cef63 2020-07-23 stsp M alpha.link (change 1 of 1)
2711 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] y
2712 fa3cef63 2020-07-23 stsp A dotgotbar.link
2713 fa3cef63 2020-07-23 stsp stage this addition? [y/n] n
2714 fa3cef63 2020-07-23 stsp A dotgotfoo.link
2715 fa3cef63 2020-07-23 stsp stage this addition? [y/n] y
2716 fa3cef63 2020-07-23 stsp -----------------------------------------------
2717 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2718 fa3cef63 2020-07-23 stsp -../beta
2719 fa3cef63 2020-07-23 stsp \ No newline at end of file
2720 fa3cef63 2020-07-23 stsp +../gamma/delta
2721 fa3cef63 2020-07-23 stsp \ No newline at end of file
2722 fa3cef63 2020-07-23 stsp -----------------------------------------------
2723 fa3cef63 2020-07-23 stsp M epsilon/beta.link (change 1 of 1)
2724 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] n
2725 fa3cef63 2020-07-23 stsp -----------------------------------------------
2726 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2727 fa3cef63 2020-07-23 stsp -epsilon
2728 fa3cef63 2020-07-23 stsp \ No newline at end of file
2729 fa3cef63 2020-07-23 stsp +gamma
2730 fa3cef63 2020-07-23 stsp \ No newline at end of file
2731 fa3cef63 2020-07-23 stsp -----------------------------------------------
2732 fa3cef63 2020-07-23 stsp M epsilon.link (change 1 of 1)
2733 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] y
2734 fa3cef63 2020-07-23 stsp D nonexistent.link
2735 fa3cef63 2020-07-23 stsp stage this deletion? [y/n] y
2736 fa3cef63 2020-07-23 stsp A zeta.link
2737 fa3cef63 2020-07-23 stsp stage this addition? [y/n] y
2738 fa3cef63 2020-07-23 stsp EOF
2739 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2740 fa3cef63 2020-07-23 stsp ret="$?"
2741 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2742 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2743 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2744 fa3cef63 2020-07-23 stsp return 1
2745 fa3cef63 2020-07-23 stsp fi
2746 fa3cef63 2020-07-23 stsp
2747 fa3cef63 2020-07-23 stsp rm $testroot/wt/alpha.link
2748 fa3cef63 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/wt/alpha.link
2749 fa3cef63 2020-07-23 stsp
2750 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2751 fa3cef63 2020-07-23 stsp
2752 fa3cef63 2020-07-23 stsp echo "diff $head_commit $testroot/wt (staged changes)" \
2753 fa3cef63 2020-07-23 stsp > $testroot/stdout.expected
2754 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2755 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'alpha.link@ -> alpha$' | \
2756 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2757 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2758 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l alpha.link) | cut -d' ' -f 1 \
2759 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2760 fa3cef63 2020-07-23 stsp echo '--- alpha.link' >> $testroot/stdout.expected
2761 fa3cef63 2020-07-23 stsp echo '+++ alpha.link' >> $testroot/stdout.expected
2762 fa3cef63 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2763 fa3cef63 2020-07-23 stsp echo '-alpha' >> $testroot/stdout.expected
2764 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2765 fa3cef63 2020-07-23 stsp echo '+beta' >> $testroot/stdout.expected
2766 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2767 fa3cef63 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2768 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2769 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotfoo.link) | cut -d' ' -f 1 \
2770 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2771 fa3cef63 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2772 fa3cef63 2020-07-23 stsp echo '+++ dotgotfoo.link' >> $testroot/stdout.expected
2773 fa3cef63 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2774 fa3cef63 2020-07-23 stsp echo '+this is regular file foo' >> $testroot/stdout.expected
2775 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2776 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'epsilon.link@ -> epsilon$' | \
2777 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2778 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2779 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon.link) | cut -d' ' -f 1 \
2780 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2781 fa3cef63 2020-07-23 stsp echo '--- epsilon.link' >> $testroot/stdout.expected
2782 fa3cef63 2020-07-23 stsp echo '+++ epsilon.link' >> $testroot/stdout.expected
2783 fa3cef63 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2784 fa3cef63 2020-07-23 stsp echo '-epsilon' >> $testroot/stdout.expected
2785 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2786 fa3cef63 2020-07-23 stsp echo '+gamma' >> $testroot/stdout.expected
2787 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2788 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2789 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'nonexistent.link@ -> nonexistent$' | \
2790 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2791 fa3cef63 2020-07-23 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
2792 fa3cef63 2020-07-23 stsp echo '--- nonexistent.link' >> $testroot/stdout.expected
2793 fa3cef63 2020-07-23 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
2794 fa3cef63 2020-07-23 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
2795 fa3cef63 2020-07-23 stsp echo '-nonexistent' >> $testroot/stdout.expected
2796 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2797 fa3cef63 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2798 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2799 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l zeta.link) | cut -d' ' -f 1 \
2800 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2801 fa3cef63 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2802 fa3cef63 2020-07-23 stsp echo '+++ zeta.link' >> $testroot/stdout.expected
2803 fa3cef63 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2804 fa3cef63 2020-07-23 stsp echo '+gamma/delta' >> $testroot/stdout.expected
2805 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2806 fa3cef63 2020-07-23 stsp
2807 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2808 fa3cef63 2020-07-23 stsp ret="$?"
2809 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2810 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2811 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2812 fa3cef63 2020-07-23 stsp return 1
2813 fa3cef63 2020-07-23 stsp fi
2814 fa3cef63 2020-07-23 stsp
2815 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got commit -m "staged symlink" \
2816 fa3cef63 2020-07-23 stsp > $testroot/stdout)
2817 fa3cef63 2020-07-23 stsp ret="$?"
2818 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2819 fa3cef63 2020-07-23 stsp echo "got commit command failed unexpectedly" >&2
2820 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2821 fa3cef63 2020-07-23 stsp return 1
2822 fa3cef63 2020-07-23 stsp fi
2823 fa3cef63 2020-07-23 stsp
2824 fa3cef63 2020-07-23 stsp local commit_id=`git_show_head $testroot/repo`
2825 fa3cef63 2020-07-23 stsp echo "A dotgotfoo.link" > $testroot/stdout.expected
2826 fa3cef63 2020-07-23 stsp echo "A zeta.link" >> $testroot/stdout.expected
2827 fa3cef63 2020-07-23 stsp echo "M alpha.link" >> $testroot/stdout.expected
2828 fa3cef63 2020-07-23 stsp echo "M epsilon.link" >> $testroot/stdout.expected
2829 fa3cef63 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
2830 fa3cef63 2020-07-23 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
2831 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2832 fa3cef63 2020-07-23 stsp ret="$?"
2833 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2834 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2835 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2836 fa3cef63 2020-07-23 stsp return 1
2837 fa3cef63 2020-07-23 stsp fi
2838 fa3cef63 2020-07-23 stsp
2839 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -c $commit_id > $testroot/stdout
2840 fa3cef63 2020-07-23 stsp ret="$?"
2841 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2842 fa3cef63 2020-07-23 stsp echo "got tree command failed unexpectedly" >&2
2843 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2844 fa3cef63 2020-07-23 stsp return 1
2845 fa3cef63 2020-07-23 stsp fi
2846 fa3cef63 2020-07-23 stsp
2847 fa3cef63 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2848 fa3cef63 2020-07-23 stsp alpha
2849 fa3cef63 2020-07-23 stsp alpha.link@ -> beta
2850 fa3cef63 2020-07-23 stsp beta
2851 fa3cef63 2020-07-23 stsp dotgotfoo.link
2852 fa3cef63 2020-07-23 stsp epsilon/
2853 fa3cef63 2020-07-23 stsp epsilon.link@ -> gamma
2854 fa3cef63 2020-07-23 stsp gamma/
2855 fa3cef63 2020-07-23 stsp passwd.link@ -> /etc/passwd
2856 fa3cef63 2020-07-23 stsp zeta.link@ -> gamma/delta
2857 fa3cef63 2020-07-23 stsp EOF
2858 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2859 fa3cef63 2020-07-23 stsp ret="$?"
2860 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2861 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2862 fa3cef63 2020-07-23 stsp return 1
2863 fa3cef63 2020-07-23 stsp fi
2864 fa3cef63 2020-07-23 stsp
2865 fa3cef63 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
2866 fa3cef63 2020-07-23 stsp echo "alpha.link is a symlink"
2867 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2868 fa3cef63 2020-07-23 stsp return 1
2869 fa3cef63 2020-07-23 stsp fi
2870 fa3cef63 2020-07-23 stsp
2871 fa3cef63 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/content.expected
2872 fa3cef63 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
2873 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2874 c631b115 2020-07-23 stsp ret="$?"
2875 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2876 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2877 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2878 c631b115 2020-07-23 stsp return 1
2879 c631b115 2020-07-23 stsp fi
2880 c631b115 2020-07-23 stsp
2881 fa3cef63 2020-07-23 stsp if [ ! -h $testroot/wt/dotgotbar.link ]; then
2882 fa3cef63 2020-07-23 stsp echo "dotgotbar.link is not a symlink"
2883 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2884 fa3cef63 2020-07-23 stsp return 1
2885 fa3cef63 2020-07-23 stsp fi
2886 fa3cef63 2020-07-23 stsp readlink $testroot/wt/dotgotbar.link > $testroot/stdout
2887 fa3cef63 2020-07-23 stsp echo ".got/bar" > $testroot/stdout.expected
2888 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2889 fa3cef63 2020-07-23 stsp ret="$?"
2890 fa3cef63 2020-07-23 stsp if [ "$ret" != "0" ]; then
2891 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2892 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2893 fa3cef63 2020-07-23 stsp return 1
2894 fa3cef63 2020-07-23 stsp fi
2895 fa3cef63 2020-07-23 stsp
2896 c631b115 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
2897 c631b115 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
2898 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2899 c631b115 2020-07-23 stsp return 1
2900 c631b115 2020-07-23 stsp fi
2901 c631b115 2020-07-23 stsp echo "this is regular file foo" > $testroot/content.expected
2902 c631b115 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
2903 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2904 c631b115 2020-07-23 stsp ret="$?"
2905 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2906 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2907 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2908 c631b115 2020-07-23 stsp return 1
2909 c631b115 2020-07-23 stsp fi
2910 c631b115 2020-07-23 stsp
2911 c631b115 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
2912 c631b115 2020-07-23 stsp echo "epsilon.link is not a symlink"
2913 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2914 c631b115 2020-07-23 stsp return 1
2915 c631b115 2020-07-23 stsp fi
2916 c631b115 2020-07-23 stsp
2917 c631b115 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
2918 c631b115 2020-07-23 stsp echo "gamma" > $testroot/stdout.expected
2919 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2920 c631b115 2020-07-23 stsp ret="$?"
2921 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2922 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2923 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2924 c631b115 2020-07-23 stsp return 1
2925 c631b115 2020-07-23 stsp fi
2926 c631b115 2020-07-23 stsp
2927 c631b115 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
2928 c631b115 2020-07-23 stsp echo "passwd.link is a symlink"
2929 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2930 c631b115 2020-07-23 stsp return 1
2931 c631b115 2020-07-23 stsp fi
2932 c631b115 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
2933 c631b115 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
2934 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2935 c631b115 2020-07-23 stsp ret="$?"
2936 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2937 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2938 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2939 c631b115 2020-07-23 stsp return 1
2940 c631b115 2020-07-23 stsp fi
2941 c631b115 2020-07-23 stsp
2942 c631b115 2020-07-23 stsp if ! [ -h $testroot/wt/zeta.link ]; then
2943 c631b115 2020-07-23 stsp echo "zeta.link is not a symlink"
2944 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2945 c631b115 2020-07-23 stsp return 1
2946 c631b115 2020-07-23 stsp fi
2947 c631b115 2020-07-23 stsp
2948 c631b115 2020-07-23 stsp readlink $testroot/wt/zeta.link > $testroot/stdout
2949 c631b115 2020-07-23 stsp echo "gamma/delta" > $testroot/stdout.expected
2950 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2951 c631b115 2020-07-23 stsp ret="$?"
2952 c631b115 2020-07-23 stsp if [ "$ret" != "0" ]; then
2953 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2954 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2955 c631b115 2020-07-23 stsp return 1
2956 c631b115 2020-07-23 stsp fi
2957 c631b115 2020-07-23 stsp
2958 c631b115 2020-07-23 stsp test_done "$testroot" "0"
2959 eba70f38 2019-08-08 stsp }
2960 eba70f38 2019-08-08 stsp
2961 7fb414ae 2020-08-08 stsp test_parseargs "$@"
2962 fccbfb98 2019-08-03 stsp run_test test_stage_basic
2963 31b20a6e 2019-08-06 stsp run_test test_stage_no_changes
2964 8b13ce36 2019-08-08 stsp run_test test_stage_unversioned
2965 8564cb21 2019-08-08 stsp run_test test_stage_nonexistent
2966 a4f692bb 2019-08-04 stsp run_test test_stage_list
2967 ebf48fd5 2019-08-03 stsp run_test test_stage_conflict
2968 735ef5ac 2019-08-03 stsp run_test test_stage_out_of_date
2969 d3e7c587 2019-08-03 stsp run_test test_double_stage
2970 c363b2c1 2019-08-03 stsp run_test test_stage_status
2971 1e1446d3 2019-08-03 stsp run_test test_stage_add_already_staged_file
2972 9acbc4fa 2019-08-03 stsp run_test test_stage_rm_already_staged_file
2973 24278f30 2019-08-03 stsp run_test test_stage_revert
2974 408b4ebc 2019-08-03 stsp run_test test_stage_diff
2975 b9622844 2019-08-03 stsp run_test test_stage_histedit
2976 243d7cf1 2019-08-03 stsp run_test test_stage_rebase
2977 a76c42e6 2019-08-03 stsp run_test test_stage_update
2978 f0b75401 2019-08-03 stsp run_test test_stage_commit_non_staged
2979 0f1cfa7f 2019-08-08 stsp run_test test_stage_commit_out_of_date
2980 5f8a88c6 2019-08-03 stsp run_test test_stage_commit
2981 dc424a06 2019-08-07 stsp run_test test_stage_patch
2982 af5a81b2 2019-08-08 stsp run_test test_stage_patch_twice
2983 dc424a06 2019-08-07 stsp run_test test_stage_patch_added
2984 e70a841e 2019-08-08 stsp run_test test_stage_patch_added_twice
2985 dc424a06 2019-08-07 stsp run_test test_stage_patch_removed
2986 e70a841e 2019-08-08 stsp run_test test_stage_patch_removed_twice
2987 b353a198 2019-08-07 stsp run_test test_stage_patch_quit
2988 eba70f38 2019-08-08 stsp run_test test_stage_patch_incomplete_script
2989 c631b115 2020-07-23 stsp run_test test_stage_symlink
2990 fa3cef63 2020-07-23 stsp run_test test_stage_patch_symlink