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 fc414659 2022-04-16 thomas ret=$?
24 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
41 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
52 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
60 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
70 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
79 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
90 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
103 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
111 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
120 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
131 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
140 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
152 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
163 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
174 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
201 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
213 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
226 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
239 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
261 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
270 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
282 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
289 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
301 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
315 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
327 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
334 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
346 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
360 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
369 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
377 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
387 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
397 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
405 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
415 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
429 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
442 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
453 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
478 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
497 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
509 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
521 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
533 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
553 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
560 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
574 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
585 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
600 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
608 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
616 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
627 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
634 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
648 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
659 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
675 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
684 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
694 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
706 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
714 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
723 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
733 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
742 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
751 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
760 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
768 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
777 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
787 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
799 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
807 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
816 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
826 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
838 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
850 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
860 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
869 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
881 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
893 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
907 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
922 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
957 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
997 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1010 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1035 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1046 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1053 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1083 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1094 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1105 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1112 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1123 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1137 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1148 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1155 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1166 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1181 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1192 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1199 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1210 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1227 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1240 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1247 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1260 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1267 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1276 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1288 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1301 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1314 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1327 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1354 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1368 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1411 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1426 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1442 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1456 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
1499 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1508 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1519 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1568 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1578 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1608 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1616 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1625 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1674 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1684 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1711 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1727 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1779 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1789 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1825 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1835 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1873 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1900 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1912 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1928 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1938 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1958 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1970 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1986 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
1996 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2005 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
2014 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2023 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2035 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2052 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2062 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2082 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2094 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2111 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2121 fc414659 2022-04-16 thomas if [ $ret -ne 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 fc414659 2022-04-16 thomas ret=$?
2130 fc414659 2022-04-16 thomas if [ $ret -eq 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 fc414659 2022-04-16 thomas ret=$?
2139 fc414659 2022-04-16 thomas if [ $ret -ne 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 f289c82c 2022-06-13 thomas cmp -s $testroot/stdout.expected $testroot/stdout
2147 f289c82c 2022-06-13 thomas ret=$?
2148 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2149 f289c82c 2022-06-13 thomas diff -u $testroot/stdout.expected $testroot/stdout
2150 f289c82c 2022-06-13 thomas fi
2151 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2152 f289c82c 2022-06-13 thomas }
2153 f289c82c 2022-06-13 thomas
2154 f289c82c 2022-06-13 thomas test_stage_patch_reversed() {
2155 f289c82c 2022-06-13 thomas local testroot=`test_init stage_patch_reversed`
2156 f289c82c 2022-06-13 thomas
2157 f289c82c 2022-06-13 thomas got checkout $testroot/repo $testroot/wt > /dev/null
2158 f289c82c 2022-06-13 thomas ret=$?
2159 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2160 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2161 f289c82c 2022-06-13 thomas return 1
2162 f289c82c 2022-06-13 thomas fi
2163 f289c82c 2022-06-13 thomas
2164 f289c82c 2022-06-13 thomas echo 'ALPHA' > $testroot/wt/alpha
2165 f289c82c 2022-06-13 thomas (cd $testroot/wt && got stage alpha > $testroot/stdout)
2166 f289c82c 2022-06-13 thomas ret=$?
2167 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2168 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2169 f289c82c 2022-06-13 thomas return 1
2170 f289c82c 2022-06-13 thomas fi
2171 f289c82c 2022-06-13 thomas
2172 f289c82c 2022-06-13 thomas echo ' M alpha' > $testroot/stdout.expected
2173 f289c82c 2022-06-13 thomas cmp -s $testroot/stdout.expected $testroot/stdout
2174 f289c82c 2022-06-13 thomas ret=$?
2175 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2176 f289c82c 2022-06-13 thomas diff -u $testroot/stdout.expected $testroot/stdout
2177 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2178 f289c82c 2022-06-13 thomas return 1
2179 f289c82c 2022-06-13 thomas fi
2180 f289c82c 2022-06-13 thomas
2181 f289c82c 2022-06-13 thomas echo 'alpha' > $testroot/wt/alpha
2182 f289c82c 2022-06-13 thomas (cd $testroot/wt && got stage alpha > $testroot/stdout)
2183 f289c82c 2022-06-13 thomas ret=$?
2184 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2185 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2186 f289c82c 2022-06-13 thomas return 1
2187 f289c82c 2022-06-13 thomas fi
2188 f289c82c 2022-06-13 thomas
2189 f289c82c 2022-06-13 thomas echo ' M alpha' > $testroot/stdout.expected
2190 e70a841e 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2191 fc414659 2022-04-16 thomas ret=$?
2192 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2193 e70a841e 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2194 f289c82c 2022-06-13 thomas test_done "$testroot" "$ret"
2195 f289c82c 2022-06-13 thomas return 1
2196 f289c82c 2022-06-13 thomas fi
2197 f289c82c 2022-06-13 thomas
2198 f289c82c 2022-06-13 thomas (cd $testroot/wt && got status > $testroot/stdout)
2199 f289c82c 2022-06-13 thomas cmp -s /dev/null $testroot/stdout
2200 f289c82c 2022-06-13 thomas ret=$?
2201 f289c82c 2022-06-13 thomas if [ $ret -ne 0 ]; then
2202 f289c82c 2022-06-13 thomas diff -u /dev/null $testroot/stdout
2203 e70a841e 2019-08-08 stsp fi
2204 e70a841e 2019-08-08 stsp test_done "$testroot" "$ret"
2205 e70a841e 2019-08-08 stsp }
2206 e70a841e 2019-08-08 stsp
2207 f6cae3ed 2020-09-13 naddy test_stage_patch_quit() {
2208 b353a198 2019-08-07 stsp local testroot=`test_init stage_patch_quit`
2209 b353a198 2019-08-07 stsp
2210 b353a198 2019-08-07 stsp jot 16 > $testroot/repo/numbers
2211 88f33a19 2019-08-08 stsp echo zzz > $testroot/repo/zzz
2212 88f33a19 2019-08-08 stsp (cd $testroot/repo && git add numbers zzz)
2213 88f33a19 2019-08-08 stsp git_commit $testroot/repo -m "added files"
2214 b353a198 2019-08-07 stsp local commit_id=`git_show_head $testroot/repo`
2215 b353a198 2019-08-07 stsp
2216 b353a198 2019-08-07 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2217 fc414659 2022-04-16 thomas ret=$?
2218 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2219 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2220 b353a198 2019-08-07 stsp return 1
2221 b353a198 2019-08-07 stsp fi
2222 dc424a06 2019-08-07 stsp
2223 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
2224 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
2225 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
2226 88f33a19 2019-08-08 stsp (cd $testroot/wt && got rm zzz > /dev/null)
2227 b353a198 2019-08-07 stsp
2228 88f33a19 2019-08-08 stsp # stage first hunk and quit; and don't pass a path argument to
2229 88f33a19 2019-08-08 stsp # ensure that we don't skip asking about the 'zzz' file after 'quit'
2230 88f33a19 2019-08-08 stsp printf "y\nq\nn\n" > $testroot/patchscript
2231 b353a198 2019-08-07 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2232 2db2652d 2019-08-07 stsp > $testroot/stdout)
2233 fc414659 2022-04-16 thomas ret=$?
2234 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2235 b353a198 2019-08-07 stsp echo "got stage command failed unexpectedly" >&2
2236 b353a198 2019-08-07 stsp test_done "$testroot" "1"
2237 b353a198 2019-08-07 stsp return 1
2238 b353a198 2019-08-07 stsp fi
2239 b353a198 2019-08-07 stsp cat > $testroot/stdout.expected <<EOF
2240 b353a198 2019-08-07 stsp -----------------------------------------------
2241 b353a198 2019-08-07 stsp @@ -1,5 +1,5 @@
2242 b353a198 2019-08-07 stsp 1
2243 b353a198 2019-08-07 stsp -2
2244 b353a198 2019-08-07 stsp +a
2245 b353a198 2019-08-07 stsp 3
2246 b353a198 2019-08-07 stsp 4
2247 b353a198 2019-08-07 stsp 5
2248 b353a198 2019-08-07 stsp -----------------------------------------------
2249 a7c9878d 2019-08-08 stsp M numbers (change 1 of 3)
2250 b353a198 2019-08-07 stsp stage this change? [y/n/q] y
2251 b353a198 2019-08-07 stsp -----------------------------------------------
2252 b353a198 2019-08-07 stsp @@ -4,7 +4,7 @@
2253 b353a198 2019-08-07 stsp 4
2254 b353a198 2019-08-07 stsp 5
2255 b353a198 2019-08-07 stsp 6
2256 b353a198 2019-08-07 stsp -7
2257 b353a198 2019-08-07 stsp +b
2258 b353a198 2019-08-07 stsp 8
2259 b353a198 2019-08-07 stsp 9
2260 b353a198 2019-08-07 stsp 10
2261 b353a198 2019-08-07 stsp -----------------------------------------------
2262 a7c9878d 2019-08-08 stsp M numbers (change 2 of 3)
2263 b353a198 2019-08-07 stsp stage this change? [y/n/q] q
2264 88f33a19 2019-08-08 stsp D zzz
2265 f5a17245 2019-08-08 stsp stage this deletion? [y/n] n
2266 b353a198 2019-08-07 stsp EOF
2267 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2268 fc414659 2022-04-16 thomas ret=$?
2269 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2270 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2271 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2272 b353a198 2019-08-07 stsp return 1
2273 b353a198 2019-08-07 stsp fi
2274 b353a198 2019-08-07 stsp
2275 b353a198 2019-08-07 stsp (cd $testroot/wt && got status > $testroot/stdout)
2276 b353a198 2019-08-07 stsp echo "MM numbers" > $testroot/stdout.expected
2277 88f33a19 2019-08-08 stsp echo "D zzz" >> $testroot/stdout.expected
2278 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2279 fc414659 2022-04-16 thomas ret=$?
2280 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2281 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2282 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2283 b353a198 2019-08-07 stsp return 1
2284 b353a198 2019-08-07 stsp fi
2285 b353a198 2019-08-07 stsp
2286 b353a198 2019-08-07 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2287 b353a198 2019-08-07 stsp
2288 b353a198 2019-08-07 stsp echo "diff $commit_id $testroot/wt (staged changes)" \
2289 b353a198 2019-08-07 stsp > $testroot/stdout.expected
2290 b353a198 2019-08-07 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2291 b353a198 2019-08-07 stsp got tree -r $testroot/repo -i -c $commit_id \
2292 b353a198 2019-08-07 stsp | grep 'numbers$' | cut -d' ' -f 1 \
2293 b353a198 2019-08-07 stsp >> $testroot/stdout.expected
2294 b353a198 2019-08-07 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2295 b353a198 2019-08-07 stsp (cd $testroot/wt && got stage -l numbers) | cut -d' ' -f 1 \
2296 b353a198 2019-08-07 stsp >> $testroot/stdout.expected
2297 b353a198 2019-08-07 stsp echo "--- numbers" >> $testroot/stdout.expected
2298 b353a198 2019-08-07 stsp echo "+++ numbers" >> $testroot/stdout.expected
2299 b353a198 2019-08-07 stsp echo "@@ -1,5 +1,5 @@" >> $testroot/stdout.expected
2300 b353a198 2019-08-07 stsp echo " 1" >> $testroot/stdout.expected
2301 b353a198 2019-08-07 stsp echo "-2" >> $testroot/stdout.expected
2302 b353a198 2019-08-07 stsp echo "+a" >> $testroot/stdout.expected
2303 b353a198 2019-08-07 stsp echo " 3" >> $testroot/stdout.expected
2304 b353a198 2019-08-07 stsp echo " 4" >> $testroot/stdout.expected
2305 b353a198 2019-08-07 stsp echo " 5" >> $testroot/stdout.expected
2306 b353a198 2019-08-07 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2307 fc414659 2022-04-16 thomas ret=$?
2308 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2309 b353a198 2019-08-07 stsp diff -u $testroot/stdout.expected $testroot/stdout
2310 b353a198 2019-08-07 stsp fi
2311 b353a198 2019-08-07 stsp test_done "$testroot" "$ret"
2312 b353a198 2019-08-07 stsp
2313 b353a198 2019-08-07 stsp }
2314 b353a198 2019-08-07 stsp
2315 f6cae3ed 2020-09-13 naddy test_stage_patch_incomplete_script() {
2316 eba70f38 2019-08-08 stsp local testroot=`test_init stage_incomplete_script`
2317 eba70f38 2019-08-08 stsp
2318 eba70f38 2019-08-08 stsp jot 16 > $testroot/repo/numbers
2319 eba70f38 2019-08-08 stsp echo zzz > $testroot/repo/zzz
2320 eba70f38 2019-08-08 stsp (cd $testroot/repo && git add numbers zzz)
2321 eba70f38 2019-08-08 stsp git_commit $testroot/repo -m "added files"
2322 eba70f38 2019-08-08 stsp local commit_id=`git_show_head $testroot/repo`
2323 eba70f38 2019-08-08 stsp
2324 eba70f38 2019-08-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2325 fc414659 2022-04-16 thomas ret=$?
2326 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2327 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2328 eba70f38 2019-08-08 stsp return 1
2329 eba70f38 2019-08-08 stsp fi
2330 eba70f38 2019-08-08 stsp
2331 c206b220 2021-10-09 thomas sed -i '' -e 's/^2$/a/' $testroot/wt/numbers
2332 c206b220 2021-10-09 thomas sed -i '' -e 's/^7$/b/' $testroot/wt/numbers
2333 c206b220 2021-10-09 thomas sed -i '' -e 's/^16$/c/' $testroot/wt/numbers
2334 eba70f38 2019-08-08 stsp
2335 eba70f38 2019-08-08 stsp # stage first hunk and then stop responding; got should error out
2336 eba70f38 2019-08-08 stsp printf "y\n" > $testroot/patchscript
2337 eba70f38 2019-08-08 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2338 eba70f38 2019-08-08 stsp > $testroot/stdout 2> $testroot/stderr)
2339 fc414659 2022-04-16 thomas ret=$?
2340 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
2341 eba70f38 2019-08-08 stsp echo "got stage command succeeded unexpectedly" >&2
2342 eba70f38 2019-08-08 stsp test_done "$testroot" "1"
2343 eba70f38 2019-08-08 stsp return 1
2344 eba70f38 2019-08-08 stsp fi
2345 eba70f38 2019-08-08 stsp cat > $testroot/stdout.expected <<EOF
2346 eba70f38 2019-08-08 stsp -----------------------------------------------
2347 eba70f38 2019-08-08 stsp @@ -1,5 +1,5 @@
2348 eba70f38 2019-08-08 stsp 1
2349 eba70f38 2019-08-08 stsp -2
2350 eba70f38 2019-08-08 stsp +a
2351 eba70f38 2019-08-08 stsp 3
2352 eba70f38 2019-08-08 stsp 4
2353 eba70f38 2019-08-08 stsp 5
2354 eba70f38 2019-08-08 stsp -----------------------------------------------
2355 eba70f38 2019-08-08 stsp M numbers (change 1 of 3)
2356 eba70f38 2019-08-08 stsp stage this change? [y/n/q] y
2357 eba70f38 2019-08-08 stsp -----------------------------------------------
2358 eba70f38 2019-08-08 stsp @@ -4,7 +4,7 @@
2359 eba70f38 2019-08-08 stsp 4
2360 eba70f38 2019-08-08 stsp 5
2361 eba70f38 2019-08-08 stsp 6
2362 eba70f38 2019-08-08 stsp -7
2363 eba70f38 2019-08-08 stsp +b
2364 eba70f38 2019-08-08 stsp 8
2365 eba70f38 2019-08-08 stsp 9
2366 eba70f38 2019-08-08 stsp 10
2367 eba70f38 2019-08-08 stsp -----------------------------------------------
2368 eba70f38 2019-08-08 stsp M numbers (change 2 of 3)
2369 eba70f38 2019-08-08 stsp EOF
2370 eba70f38 2019-08-08 stsp echo -n "stage this change? [y/n/q] " >> $testroot/stdout.expected
2371 eba70f38 2019-08-08 stsp echo "got: invalid patch choice" > $testroot/stderr.expected
2372 eba70f38 2019-08-08 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2373 fc414659 2022-04-16 thomas ret=$?
2374 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2375 eba70f38 2019-08-08 stsp diff -u $testroot/stderr.expected $testroot/stderr
2376 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2377 eba70f38 2019-08-08 stsp return 1
2378 eba70f38 2019-08-08 stsp fi
2379 eba70f38 2019-08-08 stsp
2380 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2381 fc414659 2022-04-16 thomas ret=$?
2382 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2383 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2384 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2385 eba70f38 2019-08-08 stsp return 1
2386 eba70f38 2019-08-08 stsp fi
2387 eba70f38 2019-08-08 stsp
2388 eba70f38 2019-08-08 stsp (cd $testroot/wt && got status > $testroot/stdout)
2389 eba70f38 2019-08-08 stsp echo "M numbers" > $testroot/stdout.expected
2390 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2391 fc414659 2022-04-16 thomas ret=$?
2392 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2393 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2394 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2395 eba70f38 2019-08-08 stsp return 1
2396 eba70f38 2019-08-08 stsp fi
2397 eba70f38 2019-08-08 stsp
2398 eba70f38 2019-08-08 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2399 eba70f38 2019-08-08 stsp echo -n > $testroot/stdout.expected
2400 eba70f38 2019-08-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2401 fc414659 2022-04-16 thomas ret=$?
2402 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2403 eba70f38 2019-08-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
2404 eba70f38 2019-08-08 stsp fi
2405 eba70f38 2019-08-08 stsp test_done "$testroot" "$ret"
2406 c631b115 2020-07-23 stsp
2407 c631b115 2020-07-23 stsp }
2408 c631b115 2020-07-23 stsp
2409 f6cae3ed 2020-09-13 naddy test_stage_symlink() {
2410 c631b115 2020-07-23 stsp local testroot=`test_init stage_symlink`
2411 c631b115 2020-07-23 stsp
2412 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
2413 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
2414 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
2415 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
2416 c631b115 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
2417 c631b115 2020-07-23 stsp (cd $testroot/repo && git add .)
2418 c631b115 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
2419 c631b115 2020-07-23 stsp local head_commit=`git_show_head $testroot/repo`
2420 c631b115 2020-07-23 stsp
2421 c631b115 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2422 fc414659 2022-04-16 thomas ret=$?
2423 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2424 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2425 c631b115 2020-07-23 stsp return 1
2426 c631b115 2020-07-23 stsp fi
2427 c631b115 2020-07-23 stsp
2428 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
2429 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT gamma epsilon.link)
2430 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf ../gamma/delta epsilon/beta.link)
2431 c631b115 2020-07-23 stsp echo 'this is regular file foo' > $testroot/wt/dotgotfoo.link
2432 c631b115 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
2433 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf .got/bar dotgotbar.link)
2434 c631b115 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
2435 c631b115 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
2436 c631b115 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta zeta.link)
2437 c631b115 2020-07-23 stsp (cd $testroot/wt && got add zeta.link > /dev/null)
2438 c631b115 2020-07-23 stsp
2439 35213c7c 2020-07-23 stsp (cd $testroot/wt && got stage > $testroot/stdout 2> $testroot/stderr)
2440 fc414659 2022-04-16 thomas ret=$?
2441 fc414659 2022-04-16 thomas if [ $ret -eq 0 ]; then
2442 35213c7c 2020-07-23 stsp echo "got stage succeeded unexpectedly" >&2
2443 4e2bdb0d 2022-06-13 thomas test_done "$testroot" 1
2444 35213c7c 2020-07-23 stsp return 1
2445 35213c7c 2020-07-23 stsp fi
2446 35213c7c 2020-07-23 stsp echo -n "got: $testroot/wt/dotgotbar.link: " > $testroot/stderr.expected
2447 35213c7c 2020-07-23 stsp echo "symbolic link points outside of paths under version control" \
2448 35213c7c 2020-07-23 stsp >> $testroot/stderr.expected
2449 35213c7c 2020-07-23 stsp cmp -s $testroot/stderr.expected $testroot/stderr
2450 fc414659 2022-04-16 thomas ret=$?
2451 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2452 35213c7c 2020-07-23 stsp diff -u $testroot/stderr.expected $testroot/stderr
2453 35213c7c 2020-07-23 stsp test_done "$testroot" "$ret"
2454 35213c7c 2020-07-23 stsp return 1
2455 35213c7c 2020-07-23 stsp fi
2456 35213c7c 2020-07-23 stsp
2457 35213c7c 2020-07-23 stsp (cd $testroot/wt && got stage -S > $testroot/stdout)
2458 c631b115 2020-07-23 stsp
2459 c631b115 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2460 c631b115 2020-07-23 stsp M alpha.link
2461 c631b115 2020-07-23 stsp A dotgotbar.link
2462 c631b115 2020-07-23 stsp A dotgotfoo.link
2463 c631b115 2020-07-23 stsp M epsilon/beta.link
2464 c631b115 2020-07-23 stsp M epsilon.link
2465 c631b115 2020-07-23 stsp D nonexistent.link
2466 c631b115 2020-07-23 stsp A zeta.link
2467 c631b115 2020-07-23 stsp EOF
2468 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2469 fc414659 2022-04-16 thomas ret=$?
2470 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2471 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2472 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2473 c631b115 2020-07-23 stsp return 1
2474 c631b115 2020-07-23 stsp fi
2475 0aeb8099 2020-07-23 stsp
2476 0aeb8099 2020-07-23 stsp rm $testroot/wt/alpha.link
2477 0aeb8099 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/wt/alpha.link
2478 c631b115 2020-07-23 stsp
2479 c631b115 2020-07-23 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2480 c631b115 2020-07-23 stsp
2481 c631b115 2020-07-23 stsp echo "diff $head_commit $testroot/wt (staged changes)" \
2482 c631b115 2020-07-23 stsp > $testroot/stdout.expected
2483 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2484 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'alpha.link@ -> alpha$' | \
2485 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2486 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2487 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l alpha.link) | cut -d' ' -f 1 \
2488 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2489 c631b115 2020-07-23 stsp echo '--- alpha.link' >> $testroot/stdout.expected
2490 c631b115 2020-07-23 stsp echo '+++ alpha.link' >> $testroot/stdout.expected
2491 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2492 c631b115 2020-07-23 stsp echo '-alpha' >> $testroot/stdout.expected
2493 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2494 c631b115 2020-07-23 stsp echo '+beta' >> $testroot/stdout.expected
2495 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2496 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2497 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2498 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotbar.link) | cut -d' ' -f 1 \
2499 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2500 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2501 c631b115 2020-07-23 stsp echo '+++ dotgotbar.link' >> $testroot/stdout.expected
2502 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2503 c631b115 2020-07-23 stsp echo '+.got/bar' >> $testroot/stdout.expected
2504 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2505 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2506 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2507 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotfoo.link) | cut -d' ' -f 1 \
2508 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2509 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2510 c631b115 2020-07-23 stsp echo '+++ dotgotfoo.link' >> $testroot/stdout.expected
2511 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2512 c631b115 2020-07-23 stsp echo '+this is regular file foo' >> $testroot/stdout.expected
2513 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2514 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i epsilon | grep 'beta.link@ -> ../beta$' | \
2515 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2516 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2517 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon/beta.link) | cut -d' ' -f 1 \
2518 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2519 c631b115 2020-07-23 stsp echo '--- epsilon/beta.link' >> $testroot/stdout.expected
2520 c631b115 2020-07-23 stsp echo '+++ epsilon/beta.link' >> $testroot/stdout.expected
2521 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2522 c631b115 2020-07-23 stsp echo '-../beta' >> $testroot/stdout.expected
2523 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2524 c631b115 2020-07-23 stsp echo '+../gamma/delta' >> $testroot/stdout.expected
2525 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2526 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2527 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'epsilon.link@ -> epsilon$' | \
2528 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2529 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2530 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon.link) | cut -d' ' -f 1 \
2531 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2532 c631b115 2020-07-23 stsp echo '--- epsilon.link' >> $testroot/stdout.expected
2533 c631b115 2020-07-23 stsp echo '+++ epsilon.link' >> $testroot/stdout.expected
2534 c631b115 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2535 c631b115 2020-07-23 stsp echo '-epsilon' >> $testroot/stdout.expected
2536 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2537 c631b115 2020-07-23 stsp echo '+gamma' >> $testroot/stdout.expected
2538 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2539 c631b115 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2540 c631b115 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'nonexistent.link@ -> nonexistent$' | \
2541 c631b115 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2542 c631b115 2020-07-23 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
2543 c631b115 2020-07-23 stsp echo '--- nonexistent.link' >> $testroot/stdout.expected
2544 c631b115 2020-07-23 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
2545 c631b115 2020-07-23 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
2546 c631b115 2020-07-23 stsp echo '-nonexistent' >> $testroot/stdout.expected
2547 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2548 c631b115 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2549 c631b115 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2550 c631b115 2020-07-23 stsp (cd $testroot/wt && got stage -l zeta.link) | cut -d' ' -f 1 \
2551 c631b115 2020-07-23 stsp >> $testroot/stdout.expected
2552 c631b115 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2553 c631b115 2020-07-23 stsp echo '+++ zeta.link' >> $testroot/stdout.expected
2554 c631b115 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2555 c631b115 2020-07-23 stsp echo '+gamma/delta' >> $testroot/stdout.expected
2556 c631b115 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2557 c631b115 2020-07-23 stsp
2558 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2559 fc414659 2022-04-16 thomas ret=$?
2560 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2561 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2562 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2563 c631b115 2020-07-23 stsp return 1
2564 c631b115 2020-07-23 stsp fi
2565 c631b115 2020-07-23 stsp
2566 c631b115 2020-07-23 stsp (cd $testroot/wt && got commit -m "staged symlink" \
2567 c631b115 2020-07-23 stsp > $testroot/stdout)
2568 fc414659 2022-04-16 thomas ret=$?
2569 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2570 c631b115 2020-07-23 stsp echo "got commit command failed unexpectedly" >&2
2571 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2572 c631b115 2020-07-23 stsp return 1
2573 c631b115 2020-07-23 stsp fi
2574 eba70f38 2019-08-08 stsp
2575 c631b115 2020-07-23 stsp local commit_id=`git_show_head $testroot/repo`
2576 c631b115 2020-07-23 stsp echo "A dotgotbar.link" > $testroot/stdout.expected
2577 c631b115 2020-07-23 stsp echo "A dotgotfoo.link" >> $testroot/stdout.expected
2578 c631b115 2020-07-23 stsp echo "A zeta.link" >> $testroot/stdout.expected
2579 c631b115 2020-07-23 stsp echo "M alpha.link" >> $testroot/stdout.expected
2580 c631b115 2020-07-23 stsp echo "M epsilon/beta.link" >> $testroot/stdout.expected
2581 c631b115 2020-07-23 stsp echo "M epsilon.link" >> $testroot/stdout.expected
2582 c631b115 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
2583 c631b115 2020-07-23 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
2584 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2585 fc414659 2022-04-16 thomas ret=$?
2586 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2587 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2588 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2589 c631b115 2020-07-23 stsp return 1
2590 c631b115 2020-07-23 stsp fi
2591 c631b115 2020-07-23 stsp
2592 c631b115 2020-07-23 stsp got tree -r $testroot/repo -c $commit_id > $testroot/stdout
2593 fc414659 2022-04-16 thomas ret=$?
2594 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2595 c631b115 2020-07-23 stsp echo "got tree command failed unexpectedly" >&2
2596 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2597 c631b115 2020-07-23 stsp return 1
2598 c631b115 2020-07-23 stsp fi
2599 c631b115 2020-07-23 stsp
2600 c631b115 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2601 c631b115 2020-07-23 stsp alpha
2602 c631b115 2020-07-23 stsp alpha.link@ -> beta
2603 c631b115 2020-07-23 stsp beta
2604 c631b115 2020-07-23 stsp dotgotbar.link@ -> .got/bar
2605 c631b115 2020-07-23 stsp dotgotfoo.link
2606 c631b115 2020-07-23 stsp epsilon/
2607 c631b115 2020-07-23 stsp epsilon.link@ -> gamma
2608 c631b115 2020-07-23 stsp gamma/
2609 c631b115 2020-07-23 stsp passwd.link@ -> /etc/passwd
2610 c631b115 2020-07-23 stsp zeta.link@ -> gamma/delta
2611 c631b115 2020-07-23 stsp EOF
2612 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2613 fc414659 2022-04-16 thomas ret=$?
2614 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2615 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2616 c631b115 2020-07-23 stsp return 1
2617 c631b115 2020-07-23 stsp fi
2618 c631b115 2020-07-23 stsp
2619 0aeb8099 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
2620 0aeb8099 2020-07-23 stsp echo "alpha.link is a symlink"
2621 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2622 c631b115 2020-07-23 stsp return 1
2623 c631b115 2020-07-23 stsp fi
2624 c631b115 2020-07-23 stsp
2625 0aeb8099 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/content.expected
2626 0aeb8099 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
2627 0aeb8099 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2628 fc414659 2022-04-16 thomas ret=$?
2629 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2630 0aeb8099 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2631 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2632 c631b115 2020-07-23 stsp return 1
2633 c631b115 2020-07-23 stsp fi
2634 c631b115 2020-07-23 stsp
2635 75f0a0fb 2020-07-23 stsp if [ ! -h $testroot/wt/dotgotbar.link ]; then
2636 75f0a0fb 2020-07-23 stsp echo "dotgotbar.link is not a symlink"
2637 75f0a0fb 2020-07-23 stsp test_done "$testroot" "1"
2638 75f0a0fb 2020-07-23 stsp return 1
2639 75f0a0fb 2020-07-23 stsp fi
2640 75f0a0fb 2020-07-23 stsp (cd $testroot/wt && got update > /dev/null)
2641 c631b115 2020-07-23 stsp if [ -h $testroot/wt/dotgotbar.link ]; then
2642 c631b115 2020-07-23 stsp echo "dotgotbar.link is a symlink"
2643 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2644 c631b115 2020-07-23 stsp return 1
2645 c631b115 2020-07-23 stsp fi
2646 0aeb8099 2020-07-23 stsp echo -n ".got/bar" > $testroot/content.expected
2647 c631b115 2020-07-23 stsp cp $testroot/wt/dotgotbar.link $testroot/content
2648 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2649 fc414659 2022-04-16 thomas ret=$?
2650 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2651 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2652 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2653 fa3cef63 2020-07-23 stsp return 1
2654 fa3cef63 2020-07-23 stsp fi
2655 fa3cef63 2020-07-23 stsp
2656 fa3cef63 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
2657 fa3cef63 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
2658 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2659 fa3cef63 2020-07-23 stsp return 1
2660 fa3cef63 2020-07-23 stsp fi
2661 fa3cef63 2020-07-23 stsp echo "this is regular file foo" > $testroot/content.expected
2662 fa3cef63 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
2663 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2664 fc414659 2022-04-16 thomas ret=$?
2665 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2666 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2667 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2668 fa3cef63 2020-07-23 stsp return 1
2669 fa3cef63 2020-07-23 stsp fi
2670 fa3cef63 2020-07-23 stsp
2671 fa3cef63 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
2672 fa3cef63 2020-07-23 stsp echo "epsilon.link is not a symlink"
2673 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2674 fa3cef63 2020-07-23 stsp return 1
2675 fa3cef63 2020-07-23 stsp fi
2676 fa3cef63 2020-07-23 stsp
2677 fa3cef63 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
2678 fa3cef63 2020-07-23 stsp echo "gamma" > $testroot/stdout.expected
2679 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2680 fc414659 2022-04-16 thomas ret=$?
2681 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2682 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
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 if [ -h $testroot/wt/passwd.link ]; then
2688 fa3cef63 2020-07-23 stsp echo "passwd.link is a symlink"
2689 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2690 fa3cef63 2020-07-23 stsp return 1
2691 fa3cef63 2020-07-23 stsp fi
2692 fa3cef63 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
2693 fa3cef63 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
2694 fa3cef63 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2695 fc414659 2022-04-16 thomas ret=$?
2696 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2697 fa3cef63 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2698 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2699 fa3cef63 2020-07-23 stsp return 1
2700 fa3cef63 2020-07-23 stsp fi
2701 fa3cef63 2020-07-23 stsp
2702 fa3cef63 2020-07-23 stsp if ! [ -h $testroot/wt/zeta.link ]; then
2703 fa3cef63 2020-07-23 stsp echo "zeta.link is not a symlink"
2704 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2705 fa3cef63 2020-07-23 stsp return 1
2706 fa3cef63 2020-07-23 stsp fi
2707 fa3cef63 2020-07-23 stsp
2708 fa3cef63 2020-07-23 stsp readlink $testroot/wt/zeta.link > $testroot/stdout
2709 fa3cef63 2020-07-23 stsp echo "gamma/delta" > $testroot/stdout.expected
2710 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2711 fc414659 2022-04-16 thomas ret=$?
2712 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2713 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2714 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2715 fa3cef63 2020-07-23 stsp return 1
2716 fa3cef63 2020-07-23 stsp fi
2717 fa3cef63 2020-07-23 stsp
2718 fa3cef63 2020-07-23 stsp test_done "$testroot" "0"
2719 fa3cef63 2020-07-23 stsp }
2720 fa3cef63 2020-07-23 stsp
2721 f6cae3ed 2020-09-13 naddy test_stage_patch_symlink() {
2722 fa3cef63 2020-07-23 stsp local testroot=`test_init stage_patch_symlink`
2723 fa3cef63 2020-07-23 stsp
2724 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s alpha alpha.link)
2725 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s epsilon epsilon.link)
2726 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s /etc/passwd passwd.link)
2727 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s ../beta epsilon/beta.link)
2728 fa3cef63 2020-07-23 stsp (cd $testroot/repo && ln -s nonexistent nonexistent.link)
2729 fa3cef63 2020-07-23 stsp (cd $testroot/repo && git add .)
2730 fa3cef63 2020-07-23 stsp git_commit $testroot/repo -m "add symlinks"
2731 fa3cef63 2020-07-23 stsp local head_commit=`git_show_head $testroot/repo`
2732 fa3cef63 2020-07-23 stsp
2733 fa3cef63 2020-07-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2734 fc414659 2022-04-16 thomas ret=$?
2735 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2736 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2737 fa3cef63 2020-07-23 stsp return 1
2738 fa3cef63 2020-07-23 stsp fi
2739 fa3cef63 2020-07-23 stsp
2740 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf beta alpha.link)
2741 dd6165e4 2021-09-21 thomas.ad (cd $testroot/wt && ln -sfT gamma epsilon.link)
2742 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf ../gamma/delta epsilon/beta.link)
2743 fa3cef63 2020-07-23 stsp echo 'this is regular file foo' > $testroot/wt/dotgotfoo.link
2744 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add dotgotfoo.link > /dev/null)
2745 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf .got/bar dotgotbar.link)
2746 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add dotgotbar.link > /dev/null)
2747 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got rm nonexistent.link > /dev/null)
2748 fa3cef63 2020-07-23 stsp (cd $testroot/wt && ln -sf gamma/delta zeta.link)
2749 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got add zeta.link > /dev/null)
2750 fa3cef63 2020-07-23 stsp
2751 fa3cef63 2020-07-23 stsp printf "y\nn\ny\nn\ny\ny\ny" > $testroot/patchscript
2752 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -F $testroot/patchscript -p \
2753 fa3cef63 2020-07-23 stsp > $testroot/stdout)
2754 fa3cef63 2020-07-23 stsp
2755 fa3cef63 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2756 fa3cef63 2020-07-23 stsp -----------------------------------------------
2757 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2758 fa3cef63 2020-07-23 stsp -alpha
2759 fa3cef63 2020-07-23 stsp \ No newline at end of file
2760 fa3cef63 2020-07-23 stsp +beta
2761 fa3cef63 2020-07-23 stsp \ No newline at end of file
2762 fa3cef63 2020-07-23 stsp -----------------------------------------------
2763 fa3cef63 2020-07-23 stsp M alpha.link (change 1 of 1)
2764 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] y
2765 fa3cef63 2020-07-23 stsp A dotgotbar.link
2766 fa3cef63 2020-07-23 stsp stage this addition? [y/n] n
2767 fa3cef63 2020-07-23 stsp A dotgotfoo.link
2768 fa3cef63 2020-07-23 stsp stage this addition? [y/n] y
2769 fa3cef63 2020-07-23 stsp -----------------------------------------------
2770 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2771 fa3cef63 2020-07-23 stsp -../beta
2772 fa3cef63 2020-07-23 stsp \ No newline at end of file
2773 fa3cef63 2020-07-23 stsp +../gamma/delta
2774 fa3cef63 2020-07-23 stsp \ No newline at end of file
2775 fa3cef63 2020-07-23 stsp -----------------------------------------------
2776 fa3cef63 2020-07-23 stsp M epsilon/beta.link (change 1 of 1)
2777 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] n
2778 fa3cef63 2020-07-23 stsp -----------------------------------------------
2779 fa3cef63 2020-07-23 stsp @@ -1 +1 @@
2780 fa3cef63 2020-07-23 stsp -epsilon
2781 fa3cef63 2020-07-23 stsp \ No newline at end of file
2782 fa3cef63 2020-07-23 stsp +gamma
2783 fa3cef63 2020-07-23 stsp \ No newline at end of file
2784 fa3cef63 2020-07-23 stsp -----------------------------------------------
2785 fa3cef63 2020-07-23 stsp M epsilon.link (change 1 of 1)
2786 fa3cef63 2020-07-23 stsp stage this change? [y/n/q] y
2787 fa3cef63 2020-07-23 stsp D nonexistent.link
2788 fa3cef63 2020-07-23 stsp stage this deletion? [y/n] y
2789 fa3cef63 2020-07-23 stsp A zeta.link
2790 fa3cef63 2020-07-23 stsp stage this addition? [y/n] y
2791 fa3cef63 2020-07-23 stsp EOF
2792 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2793 fc414659 2022-04-16 thomas ret=$?
2794 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2795 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2796 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2797 fa3cef63 2020-07-23 stsp return 1
2798 fa3cef63 2020-07-23 stsp fi
2799 fa3cef63 2020-07-23 stsp
2800 fa3cef63 2020-07-23 stsp rm $testroot/wt/alpha.link
2801 fa3cef63 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/wt/alpha.link
2802 fa3cef63 2020-07-23 stsp
2803 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got diff -s > $testroot/stdout)
2804 fa3cef63 2020-07-23 stsp
2805 fa3cef63 2020-07-23 stsp echo "diff $head_commit $testroot/wt (staged changes)" \
2806 fa3cef63 2020-07-23 stsp > $testroot/stdout.expected
2807 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2808 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'alpha.link@ -> alpha$' | \
2809 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2810 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2811 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l alpha.link) | cut -d' ' -f 1 \
2812 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2813 fa3cef63 2020-07-23 stsp echo '--- alpha.link' >> $testroot/stdout.expected
2814 fa3cef63 2020-07-23 stsp echo '+++ alpha.link' >> $testroot/stdout.expected
2815 fa3cef63 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2816 fa3cef63 2020-07-23 stsp echo '-alpha' >> $testroot/stdout.expected
2817 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2818 fa3cef63 2020-07-23 stsp echo '+beta' >> $testroot/stdout.expected
2819 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2820 fa3cef63 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2821 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2822 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l dotgotfoo.link) | cut -d' ' -f 1 \
2823 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2824 fa3cef63 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2825 fa3cef63 2020-07-23 stsp echo '+++ dotgotfoo.link' >> $testroot/stdout.expected
2826 fa3cef63 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2827 fa3cef63 2020-07-23 stsp echo '+this is regular file foo' >> $testroot/stdout.expected
2828 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2829 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'epsilon.link@ -> epsilon$' | \
2830 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2831 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2832 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l epsilon.link) | cut -d' ' -f 1 \
2833 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2834 fa3cef63 2020-07-23 stsp echo '--- epsilon.link' >> $testroot/stdout.expected
2835 fa3cef63 2020-07-23 stsp echo '+++ epsilon.link' >> $testroot/stdout.expected
2836 fa3cef63 2020-07-23 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
2837 fa3cef63 2020-07-23 stsp echo '-epsilon' >> $testroot/stdout.expected
2838 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2839 fa3cef63 2020-07-23 stsp echo '+gamma' >> $testroot/stdout.expected
2840 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2841 fa3cef63 2020-07-23 stsp echo -n 'blob - ' >> $testroot/stdout.expected
2842 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -i | grep 'nonexistent.link@ -> nonexistent$' | \
2843 fa3cef63 2020-07-23 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
2844 fa3cef63 2020-07-23 stsp echo 'blob + /dev/null' >> $testroot/stdout.expected
2845 fa3cef63 2020-07-23 stsp echo '--- nonexistent.link' >> $testroot/stdout.expected
2846 fa3cef63 2020-07-23 stsp echo '+++ /dev/null' >> $testroot/stdout.expected
2847 fa3cef63 2020-07-23 stsp echo '@@ -1 +0,0 @@' >> $testroot/stdout.expected
2848 fa3cef63 2020-07-23 stsp echo '-nonexistent' >> $testroot/stdout.expected
2849 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2850 fa3cef63 2020-07-23 stsp echo 'blob - /dev/null' >> $testroot/stdout.expected
2851 fa3cef63 2020-07-23 stsp echo -n 'blob + ' >> $testroot/stdout.expected
2852 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got stage -l zeta.link) | cut -d' ' -f 1 \
2853 fa3cef63 2020-07-23 stsp >> $testroot/stdout.expected
2854 fa3cef63 2020-07-23 stsp echo '--- /dev/null' >> $testroot/stdout.expected
2855 fa3cef63 2020-07-23 stsp echo '+++ zeta.link' >> $testroot/stdout.expected
2856 fa3cef63 2020-07-23 stsp echo '@@ -0,0 +1 @@' >> $testroot/stdout.expected
2857 fa3cef63 2020-07-23 stsp echo '+gamma/delta' >> $testroot/stdout.expected
2858 fa3cef63 2020-07-23 stsp echo '\ No newline at end of file' >> $testroot/stdout.expected
2859 fa3cef63 2020-07-23 stsp
2860 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2861 fc414659 2022-04-16 thomas ret=$?
2862 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2863 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2864 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2865 fa3cef63 2020-07-23 stsp return 1
2866 fa3cef63 2020-07-23 stsp fi
2867 fa3cef63 2020-07-23 stsp
2868 fa3cef63 2020-07-23 stsp (cd $testroot/wt && got commit -m "staged symlink" \
2869 fa3cef63 2020-07-23 stsp > $testroot/stdout)
2870 fc414659 2022-04-16 thomas ret=$?
2871 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2872 fa3cef63 2020-07-23 stsp echo "got commit command failed unexpectedly" >&2
2873 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2874 fa3cef63 2020-07-23 stsp return 1
2875 fa3cef63 2020-07-23 stsp fi
2876 fa3cef63 2020-07-23 stsp
2877 fa3cef63 2020-07-23 stsp local commit_id=`git_show_head $testroot/repo`
2878 fa3cef63 2020-07-23 stsp echo "A dotgotfoo.link" > $testroot/stdout.expected
2879 fa3cef63 2020-07-23 stsp echo "A zeta.link" >> $testroot/stdout.expected
2880 fa3cef63 2020-07-23 stsp echo "M alpha.link" >> $testroot/stdout.expected
2881 fa3cef63 2020-07-23 stsp echo "M epsilon.link" >> $testroot/stdout.expected
2882 fa3cef63 2020-07-23 stsp echo "D nonexistent.link" >> $testroot/stdout.expected
2883 fa3cef63 2020-07-23 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
2884 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2885 fc414659 2022-04-16 thomas ret=$?
2886 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2887 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2888 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2889 fa3cef63 2020-07-23 stsp return 1
2890 fa3cef63 2020-07-23 stsp fi
2891 fa3cef63 2020-07-23 stsp
2892 fa3cef63 2020-07-23 stsp got tree -r $testroot/repo -c $commit_id > $testroot/stdout
2893 fc414659 2022-04-16 thomas ret=$?
2894 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2895 fa3cef63 2020-07-23 stsp echo "got tree command failed unexpectedly" >&2
2896 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2897 fa3cef63 2020-07-23 stsp return 1
2898 fa3cef63 2020-07-23 stsp fi
2899 fa3cef63 2020-07-23 stsp
2900 fa3cef63 2020-07-23 stsp cat > $testroot/stdout.expected <<EOF
2901 fa3cef63 2020-07-23 stsp alpha
2902 fa3cef63 2020-07-23 stsp alpha.link@ -> beta
2903 fa3cef63 2020-07-23 stsp beta
2904 fa3cef63 2020-07-23 stsp dotgotfoo.link
2905 fa3cef63 2020-07-23 stsp epsilon/
2906 fa3cef63 2020-07-23 stsp epsilon.link@ -> gamma
2907 fa3cef63 2020-07-23 stsp gamma/
2908 fa3cef63 2020-07-23 stsp passwd.link@ -> /etc/passwd
2909 fa3cef63 2020-07-23 stsp zeta.link@ -> gamma/delta
2910 fa3cef63 2020-07-23 stsp EOF
2911 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2912 fc414659 2022-04-16 thomas ret=$?
2913 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2914 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2915 fa3cef63 2020-07-23 stsp return 1
2916 fa3cef63 2020-07-23 stsp fi
2917 fa3cef63 2020-07-23 stsp
2918 fa3cef63 2020-07-23 stsp if [ -h $testroot/wt/alpha.link ]; then
2919 fa3cef63 2020-07-23 stsp echo "alpha.link is a symlink"
2920 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2921 fa3cef63 2020-07-23 stsp return 1
2922 fa3cef63 2020-07-23 stsp fi
2923 fa3cef63 2020-07-23 stsp
2924 fa3cef63 2020-07-23 stsp echo 'this is regular file alpha.link' > $testroot/content.expected
2925 fa3cef63 2020-07-23 stsp cp $testroot/wt/alpha.link $testroot/content
2926 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2927 fc414659 2022-04-16 thomas ret=$?
2928 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2929 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2930 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2931 c631b115 2020-07-23 stsp return 1
2932 c631b115 2020-07-23 stsp fi
2933 c631b115 2020-07-23 stsp
2934 fa3cef63 2020-07-23 stsp if [ ! -h $testroot/wt/dotgotbar.link ]; then
2935 fa3cef63 2020-07-23 stsp echo "dotgotbar.link is not a symlink"
2936 fa3cef63 2020-07-23 stsp test_done "$testroot" "1"
2937 fa3cef63 2020-07-23 stsp return 1
2938 fa3cef63 2020-07-23 stsp fi
2939 fa3cef63 2020-07-23 stsp readlink $testroot/wt/dotgotbar.link > $testroot/stdout
2940 fa3cef63 2020-07-23 stsp echo ".got/bar" > $testroot/stdout.expected
2941 fa3cef63 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2942 fc414659 2022-04-16 thomas ret=$?
2943 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2944 fa3cef63 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2945 fa3cef63 2020-07-23 stsp test_done "$testroot" "$ret"
2946 fa3cef63 2020-07-23 stsp return 1
2947 fa3cef63 2020-07-23 stsp fi
2948 fa3cef63 2020-07-23 stsp
2949 c631b115 2020-07-23 stsp if [ -h $testroot/wt/dotgotfoo.link ]; then
2950 c631b115 2020-07-23 stsp echo "dotgotfoo.link is a symlink"
2951 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2952 c631b115 2020-07-23 stsp return 1
2953 c631b115 2020-07-23 stsp fi
2954 c631b115 2020-07-23 stsp echo "this is regular file foo" > $testroot/content.expected
2955 c631b115 2020-07-23 stsp cp $testroot/wt/dotgotfoo.link $testroot/content
2956 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2957 fc414659 2022-04-16 thomas ret=$?
2958 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2959 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2960 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2961 c631b115 2020-07-23 stsp return 1
2962 c631b115 2020-07-23 stsp fi
2963 c631b115 2020-07-23 stsp
2964 c631b115 2020-07-23 stsp if ! [ -h $testroot/wt/epsilon.link ]; then
2965 c631b115 2020-07-23 stsp echo "epsilon.link is not a symlink"
2966 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2967 c631b115 2020-07-23 stsp return 1
2968 c631b115 2020-07-23 stsp fi
2969 c631b115 2020-07-23 stsp
2970 c631b115 2020-07-23 stsp readlink $testroot/wt/epsilon.link > $testroot/stdout
2971 c631b115 2020-07-23 stsp echo "gamma" > $testroot/stdout.expected
2972 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2973 fc414659 2022-04-16 thomas ret=$?
2974 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2975 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
2976 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2977 c631b115 2020-07-23 stsp return 1
2978 c631b115 2020-07-23 stsp fi
2979 c631b115 2020-07-23 stsp
2980 c631b115 2020-07-23 stsp if [ -h $testroot/wt/passwd.link ]; then
2981 c631b115 2020-07-23 stsp echo "passwd.link is a symlink"
2982 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2983 c631b115 2020-07-23 stsp return 1
2984 c631b115 2020-07-23 stsp fi
2985 c631b115 2020-07-23 stsp echo -n "/etc/passwd" > $testroot/content.expected
2986 c631b115 2020-07-23 stsp cp $testroot/wt/passwd.link $testroot/content
2987 c631b115 2020-07-23 stsp cmp -s $testroot/content.expected $testroot/content
2988 fc414659 2022-04-16 thomas ret=$?
2989 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
2990 c631b115 2020-07-23 stsp diff -u $testroot/content.expected $testroot/content
2991 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
2992 c631b115 2020-07-23 stsp return 1
2993 c631b115 2020-07-23 stsp fi
2994 c631b115 2020-07-23 stsp
2995 c631b115 2020-07-23 stsp if ! [ -h $testroot/wt/zeta.link ]; then
2996 c631b115 2020-07-23 stsp echo "zeta.link is not a symlink"
2997 c631b115 2020-07-23 stsp test_done "$testroot" "1"
2998 c631b115 2020-07-23 stsp return 1
2999 c631b115 2020-07-23 stsp fi
3000 c631b115 2020-07-23 stsp
3001 c631b115 2020-07-23 stsp readlink $testroot/wt/zeta.link > $testroot/stdout
3002 c631b115 2020-07-23 stsp echo "gamma/delta" > $testroot/stdout.expected
3003 c631b115 2020-07-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
3004 fc414659 2022-04-16 thomas ret=$?
3005 fc414659 2022-04-16 thomas if [ $ret -ne 0 ]; then
3006 c631b115 2020-07-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
3007 c631b115 2020-07-23 stsp test_done "$testroot" "$ret"
3008 c631b115 2020-07-23 stsp return 1
3009 c631b115 2020-07-23 stsp fi
3010 c631b115 2020-07-23 stsp
3011 c631b115 2020-07-23 stsp test_done "$testroot" "0"
3012 eba70f38 2019-08-08 stsp }
3013 eba70f38 2019-08-08 stsp
3014 7fb414ae 2020-08-08 stsp test_parseargs "$@"
3015 fccbfb98 2019-08-03 stsp run_test test_stage_basic
3016 31b20a6e 2019-08-06 stsp run_test test_stage_no_changes
3017 8b13ce36 2019-08-08 stsp run_test test_stage_unversioned
3018 8564cb21 2019-08-08 stsp run_test test_stage_nonexistent
3019 a4f692bb 2019-08-04 stsp run_test test_stage_list
3020 ebf48fd5 2019-08-03 stsp run_test test_stage_conflict
3021 735ef5ac 2019-08-03 stsp run_test test_stage_out_of_date
3022 d3e7c587 2019-08-03 stsp run_test test_double_stage
3023 c363b2c1 2019-08-03 stsp run_test test_stage_status
3024 1e1446d3 2019-08-03 stsp run_test test_stage_add_already_staged_file
3025 9acbc4fa 2019-08-03 stsp run_test test_stage_rm_already_staged_file
3026 24278f30 2019-08-03 stsp run_test test_stage_revert
3027 408b4ebc 2019-08-03 stsp run_test test_stage_diff
3028 b9622844 2019-08-03 stsp run_test test_stage_histedit
3029 243d7cf1 2019-08-03 stsp run_test test_stage_rebase
3030 a76c42e6 2019-08-03 stsp run_test test_stage_update
3031 f0b75401 2019-08-03 stsp run_test test_stage_commit_non_staged
3032 0f1cfa7f 2019-08-08 stsp run_test test_stage_commit_out_of_date
3033 5f8a88c6 2019-08-03 stsp run_test test_stage_commit
3034 dc424a06 2019-08-07 stsp run_test test_stage_patch
3035 af5a81b2 2019-08-08 stsp run_test test_stage_patch_twice
3036 dc424a06 2019-08-07 stsp run_test test_stage_patch_added
3037 e70a841e 2019-08-08 stsp run_test test_stage_patch_added_twice
3038 dc424a06 2019-08-07 stsp run_test test_stage_patch_removed
3039 e70a841e 2019-08-08 stsp run_test test_stage_patch_removed_twice
3040 f289c82c 2022-06-13 thomas run_test test_stage_patch_reversed
3041 b353a198 2019-08-07 stsp run_test test_stage_patch_quit
3042 eba70f38 2019-08-08 stsp run_test test_stage_patch_incomplete_script
3043 c631b115 2020-07-23 stsp run_test test_stage_symlink
3044 fa3cef63 2020-07-23 stsp run_test test_stage_patch_symlink